Skip to content

Commit 34cc01c

Browse files
authored
Merge pull request #6682 from BitGo/WIN-6493
feat(statics): update asset names
2 parents ca9b741 + d92eb15 commit 34cc01c

File tree

4 files changed

+22
-15
lines changed

4 files changed

+22
-15
lines changed

modules/sdk-coin-soneium/test/unit/soneium.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('soneium', function () {
1818
soneium.should.be.an.instanceof(Soneium);
1919
soneium.getChain().should.equal('soneium');
2020
soneium.getFamily().should.equal('soneium');
21-
soneium.getFullName().should.equal('Soneium');
21+
soneium.getFullName().should.equal('Soneium Ethereum');
2222
soneium.getBaseFactor().should.equal(1e18);
2323
soneium.supportsTss().should.equal(true);
2424
soneium.allowsAccountConsolidations().should.equal(false);

modules/sdk-coin-world/test/unit/world.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe('world', function () {
1919
world.should.be.an.instanceof(World);
2020
world.getChain().should.equal('world');
2121
world.getFamily().should.equal('world');
22-
world.getFullName().should.equal('Worldchain');
22+
world.getFullName().should.equal('Worldchain Ethereum');
2323
world.getBaseFactor().should.equal(1e18);
2424
world.supportsTss().should.equal(true);
2525
world.allowsAccountConsolidations().should.equal(false);

modules/statics/src/coins.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1415,7 +1415,7 @@ export const coins = CoinMap.fromCoins([
14151415
account(
14161416
'd4f8e4f5-7060-44e3-aca1-e3ac11597ecb',
14171417
'world',
1418-
'Worldchain',
1418+
'Worldchain Ethereum',
14191419
Networks.main.world,
14201420
18,
14211421
UnderlyingAsset.WORLD,
@@ -1691,7 +1691,7 @@ export const coins = CoinMap.fromCoins([
16911691
account(
16921692
'251b78df-90c5-4ff5-b07a-8cc23f27c5ff',
16931693
'soneium',
1694-
'Soneium',
1694+
'Soneium Ethereum',
16951695
Networks.main.soneium,
16961696
18,
16971697
UnderlyingAsset.SONEIUM,
@@ -1935,7 +1935,7 @@ export const coins = CoinMap.fromCoins([
19351935
hederaCoin(
19361936
'98aad956-27ee-45dd-aa43-6a23c9a1d1d0',
19371937
'hbar',
1938-
'Mainnet Hedera HBAR',
1938+
'Hedera',
19391939
Networks.main.hedera,
19401940
8,
19411941
UnderlyingAsset.HBAR,

modules/statics/src/coins/ofcCoins.ts

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,7 @@ export const ofcCoins = [
7676
ofc('f1ed2667-fed1-4db8-87f5-061282d6147b', 'ofceos', 'Eos', 4, UnderlyingAsset.EOS, CoinKind.CRYPTO),
7777
ofc('6c0714f3-fb74-4bb7-b17d-e34e48821890', 'ofcetc', 'Ethereum Classic', 18, UnderlyingAsset.ETC, CoinKind.CRYPTO),
7878
ofc('49bc92d3-3085-4124-bdb3-df86385dd9b5', 'ofcstx', 'Stacks', 6, UnderlyingAsset.STX, CoinKind.CRYPTO),
79-
ofc(
80-
'181974a6-b042-460e-acec-46733f8af941',
81-
'ofchbar',
82-
'Mainnet Hedera HBAR',
83-
8,
84-
UnderlyingAsset.HBAR,
85-
CoinKind.CRYPTO
86-
),
79+
ofc('181974a6-b042-460e-acec-46733f8af941', 'ofchbar', 'Hedera', 8, UnderlyingAsset.HBAR, CoinKind.CRYPTO),
8780
ofc('140ac16e-e39a-49d0-ae69-60019ff35727', 'ofcbld', 'Agoric', 6, UnderlyingAsset.BLD, CoinKind.CRYPTO),
8881
ofc('8b4f4051-b447-479b-bc3e-88e30a496599', 'ofcbaby', 'Babylon', 6, UnderlyingAsset.BABY, CoinKind.CRYPTO),
8982
ofc('74cc3b48-25be-4477-8782-cbb1ea070eab', 'ofccronos', 'Cronos POS', 8, UnderlyingAsset.CRONOS, CoinKind.CRYPTO),
@@ -169,7 +162,14 @@ export const ofcCoins = [
169162
tofc('30e8f8d8-17e7-4af0-91cf-069724e05e65', 'ofctsgb', 'Testnet songbird', 18, UnderlyingAsset.SGB, CoinKind.CRYPTO),
170163
ofc('4bc9d629-cff8-4f1b-bb43-5424f7ed9a19', 'ofcmon', 'Monad', 18, UnderlyingAsset.MON, CoinKind.CRYPTO),
171164
tofc('24f7dd79-7d03-4ce5-ac90-0572153f28f2', 'ofctmon', 'Testnet Monad', 18, UnderlyingAsset.MON, CoinKind.CRYPTO),
172-
ofc('bf513cc9-7b75-42d2-a585-1a7c91801605', 'ofcworld', 'World', 18, UnderlyingAsset.WORLD, CoinKind.CRYPTO),
165+
ofc(
166+
'bf513cc9-7b75-42d2-a585-1a7c91801605',
167+
'ofcworld',
168+
'Worldchain Ethereum',
169+
18,
170+
UnderlyingAsset.WORLD,
171+
CoinKind.CRYPTO
172+
),
173173
tofc(
174174
'ca1f3c70-8f80-4feb-9be7-f2b716409027',
175175
'ofctworld',
@@ -180,7 +180,14 @@ export const ofcCoins = [
180180
),
181181
ofc('0ea1175d-63a2-4dd3-b963-24020a02eab3', 'ofcstt', 'Somnia', 18, UnderlyingAsset.STT, CoinKind.CRYPTO),
182182
tofc('06eee147-1299-435d-843f-9eea958e2b2f', 'ofctstt', 'Testnet somnia', 18, UnderlyingAsset.STT, CoinKind.CRYPTO),
183-
ofc('cdc62abc-4748-48f4-8926-6ed42f6c86c9', 'ofcsoneium', 'Soneium', 18, UnderlyingAsset.SONEIUM, CoinKind.CRYPTO),
183+
ofc(
184+
'cdc62abc-4748-48f4-8926-6ed42f6c86c9',
185+
'ofcsoneium',
186+
'Soneium Ethereum',
187+
18,
188+
UnderlyingAsset.SONEIUM,
189+
CoinKind.CRYPTO
190+
),
184191
tofc(
185192
'3df259c9-3b18-4611-a359-cf977c535a5f',
186193
'ofctsoneium',

0 commit comments

Comments
 (0)