From 15f8f2fe0e5a166098deca39d8eb30f840d6d1c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kotol?= Date: Wed, 24 Jan 2024 13:13:07 +0100 Subject: [PATCH] ALL-4358 Remove SGB currency (#1053) --- package.json | 2 +- src/model/request/Currency.ts | 16 +++------------- 2 files changed, 4 insertions(+), 14 deletions(-) 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]