diff --git a/package.json b/package.json index da7f2a1b6e..d0189480e9 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/model/request/Currency.ts b/src/model/request/Currency.ts index 218ed853ad..648b11fa6f 100644 --- a/src/model/request/Currency.ts +++ b/src/model/request/Currency.ts @@ -98,7 +98,6 @@ export enum Currency { CHZ = 'CHZ', ISLM = 'ISLM', FLR = 'FLR', - SGB = 'SGB', } export const ERC20_CURRENCIES = [ @@ -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]