Skip to content

Commit 2a59dfd

Browse files
committed
fix(sdk-coin-hbar): remove tokenid from statics
TICKET: WIN-4533
1 parent c9a602a commit 2a59dfd

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

modules/statics/src/account.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ export interface HederaCoinConstructorOptions extends AccountConstructorOptions
8686

8787
export interface HederaTokenConstructorOptions extends AccountConstructorOptions {
8888
nodeAccountId: string;
89-
tokenId: string;
9089
contractAddress: string;
9190
}
9291

@@ -1369,7 +1368,6 @@ export function hederaToken(
13691368
network: AccountNetwork,
13701369
decimalPlaces: number,
13711370
asset: UnderlyingAsset,
1372-
tokenId: string,
13731371
contractAddress: string,
13741372
features: CoinFeature[] = AccountCoin.DEFAULT_FEATURES,
13751373
prefix = '',
@@ -1384,7 +1382,6 @@ export function hederaToken(
13841382
decimalPlaces,
13851383
asset,
13861384
nodeAccountId: HEDERA_NODE_ACCCOUNT_ID,
1387-
tokenId,
13881385
contractAddress,
13891386
features,
13901387
prefix,

modules/statics/src/coins.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1471,7 +1471,6 @@ export const coins = CoinMap.fromCoins([
14711471
6,
14721472
UnderlyingAsset.USDC,
14731473
'0.0.456858',
1474-
'0.0.456858',
14751474
AccountCoin.DEFAULT_FEATURES
14761475
),
14771476

@@ -1483,7 +1482,6 @@ export const coins = CoinMap.fromCoins([
14831482
6,
14841483
UnderlyingAsset.XSGD,
14851484
'0.0.1985922',
1486-
'0.0.1985922',
14871485
AccountCoin.DEFAULT_FEATURES
14881486
),
14891487
hederaToken(
@@ -1494,7 +1492,6 @@ export const coins = CoinMap.fromCoins([
14941492
2,
14951493
UnderlyingAsset.BCT,
14961494
'0.0.1958126',
1497-
'0.0.1958126',
14981495
AccountCoin.DEFAULT_FEATURES
14991496
),
15001497
hederaToken(
@@ -1505,7 +1502,6 @@ export const coins = CoinMap.fromCoins([
15051502
6,
15061503
UnderlyingAsset.CLXY,
15071504
'0.0.859814',
1508-
'0.0.859814',
15091505
AccountCoin.DEFAULT_FEATURES
15101506
),
15111507
hederaToken(
@@ -1516,7 +1512,6 @@ export const coins = CoinMap.fromCoins([
15161512
8,
15171513
UnderlyingAsset['hbar:karate'],
15181514
'0.0.2283230',
1519-
'0.0.2283230',
15201515
AccountCoin.DEFAULT_FEATURES
15211516
),
15221517
hederaToken(
@@ -1527,7 +1522,6 @@ export const coins = CoinMap.fromCoins([
15271522
6,
15281523
UnderlyingAsset['hbar:sauce'],
15291524
'0.0.731861',
1530-
'0.0.731861',
15311525
AccountCoin.DEFAULT_FEATURES
15321526
),
15331527
hederaToken(
@@ -1538,7 +1532,6 @@ export const coins = CoinMap.fromCoins([
15381532
8,
15391533
UnderlyingAsset['hbar:dovu'],
15401534
'0.0.3716059',
1541-
'0.0.3716059',
15421535
AccountCoin.DEFAULT_FEATURES
15431536
),
15441537
hederaToken(
@@ -1549,7 +1542,6 @@ export const coins = CoinMap.fromCoins([
15491542
6,
15501543
UnderlyingAsset['hbar:pack'],
15511544
'0.0.4794920',
1552-
'0.0.4794920',
15531545
AccountCoin.DEFAULT_FEATURES
15541546
),
15551547
hederaToken(
@@ -1560,7 +1552,6 @@ export const coins = CoinMap.fromCoins([
15601552
8,
15611553
UnderlyingAsset['hbar:jam'],
15621554
'0.0.127877',
1563-
'0.0.127877',
15641555
AccountCoin.DEFAULT_FEATURES
15651556
),
15661557
hederaToken(
@@ -1571,7 +1562,6 @@ export const coins = CoinMap.fromCoins([
15711562
6,
15721563
UnderlyingAsset['hbar:berry'],
15731564
'0.0.7496578',
1574-
'0.0.7496578',
15751565
AccountCoin.DEFAULT_FEATURES
15761566
),
15771567
hederaToken(
@@ -1582,7 +1572,6 @@ export const coins = CoinMap.fromCoins([
15821572
6,
15831573
UnderlyingAsset.USDC,
15841574
'0.0.13078',
1585-
'0.0.13078',
15861575
AccountCoin.DEFAULT_FEATURES
15871576
),
15881577
hederaToken(
@@ -1593,7 +1582,6 @@ export const coins = CoinMap.fromCoins([
15931582
6,
15941583
UnderlyingAsset.USDC,
15951584
'0.0.5894751',
1596-
'0.0.5894751',
15971585
AccountCoin.DEFAULT_FEATURES
15981586
),
15991587
// End FTX missing ERC20 tokens

0 commit comments

Comments
 (0)