Skip to content

Commit

Permalink
ALL-4358 Remove SGB currency (#1053)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hathoriel authored Jan 24, 2024
1 parent bf22830 commit 15f8f2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 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/tatum",
"version": "1.37.41",
"version": "1.37.42",
"description": "Tatum API client allows browsers and Node.js clients to interact with Tatum API.",
"main": "dist/src/index.js",
"repository": "https://github.com/tatumio/tatum-js",
Expand Down
16 changes: 3 additions & 13 deletions src/model/request/Currency.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ export enum Currency {
CHZ = 'CHZ',
ISLM = 'ISLM',
FLR = 'FLR',
SGB = 'SGB',
}

export const ERC20_CURRENCIES = [
Expand Down Expand Up @@ -155,17 +154,8 @@ export const MATIC20_CURRENCIES = [
Currency.USDT_MATIC.toString(),
]

export const ETH_BASED_CURRENCIES = [
Currency.ETH.toString(),
...ERC20_CURRENCIES,
]
export const ETH_BASED_CURRENCIES = [Currency.ETH.toString(), ...ERC20_CURRENCIES]

export const MATIC_BASED_CURRENCIES = [
Currency.MATIC.toString(),
...MATIC20_CURRENCIES,
]
export const MATIC_BASED_CURRENCIES = [Currency.MATIC.toString(), ...MATIC20_CURRENCIES]

export const BSC_BASED_CURRENCIES = [
Currency.BSC.toString(),
...BEP20_CURRENCIES,
]
export const BSC_BASED_CURRENCIES = [Currency.BSC.toString(), ...BEP20_CURRENCIES]

0 comments on commit 15f8f2f

Please sign in to comment.