Skip to content

Commit

Permalink
ALL-5085 - Added Rostrum currency
Browse files Browse the repository at this point in the history
  • Loading branch information
Hathoriel committed Apr 3, 2024
1 parent fcabad7 commit 26555c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tatumio",
"version": "2.2.67",
"version": "2.2.68",
"license": "MIT",
"repository": "https://github.com/tatumio/tatum-js",
"scripts": {
Expand Down
5 changes: 3 additions & 2 deletions packages/api-client/src/lib/models/Currency.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ export enum Currency {
FLR = "FLR",
BASE = "BASE",
KADENA = "KADENA",
ROSTRUM = "ROSTRUM",
}

export const ERC20_CURRENCIES = [
Expand Down Expand Up @@ -207,5 +208,5 @@ export const NFT_SUPPORTED_CURRENCIES = [
Currency.KLAY,
];

export type NftSupportedCurrencies = (typeof NFT_SUPPORTED_CURRENCIES)[number];
export type NativeCurrency = (typeof NATIVE_CURRENCIES)[number];
export type NftSupportedCurrencies = typeof NFT_SUPPORTED_CURRENCIES[number];
export type NativeCurrency = typeof NATIVE_CURRENCIES[number];

0 comments on commit 26555c7

Please sign in to comment.