diff --git a/modules/sdk-coin-coredao/test/unit/coredao.ts b/modules/sdk-coin-coredao/test/unit/coredao.ts index faa0087b12..27061c6397 100644 --- a/modules/sdk-coin-coredao/test/unit/coredao.ts +++ b/modules/sdk-coin-coredao/test/unit/coredao.ts @@ -25,7 +25,7 @@ describe('Coredao', function () { coredao.should.be.an.instanceof(Coredao); coredao.getChain().should.equal('coredao'); coredao.getFamily().should.equal('coredao'); - coredao.getFullName().should.equal('coredaochain'); + coredao.getFullName().should.equal('Core'); coredao.getBaseFactor().should.equal(1e18); coredao.supportsTss().should.equal(true); coredao.allowsAccountConsolidations().should.equal(false); @@ -37,7 +37,7 @@ describe('Coredao', function () { tcoredao.should.be.an.instanceof(Tcoredao); tcoredao.getChain().should.equal('tcoredao'); tcoredao.getFamily().should.equal('coredao'); - tcoredao.getFullName().should.equal('Testnet coredao chain'); + tcoredao.getFullName().should.equal('Testnet Core'); tcoredao.getBaseFactor().should.equal(1e18); tcoredao.supportsTss().should.equal(true); tcoredao.allowsAccountConsolidations().should.equal(false); diff --git a/modules/sdk-coin-oas/test/unit/oas.ts b/modules/sdk-coin-oas/test/unit/oas.ts index a64f903484..879bcefb4b 100644 --- a/modules/sdk-coin-oas/test/unit/oas.ts +++ b/modules/sdk-coin-oas/test/unit/oas.ts @@ -21,7 +21,7 @@ describe('OASYS chain', function () { oas.should.be.an.instanceof(Oas); oas.getChain().should.equal('oas'); oas.getFamily().should.equal('oas'); - oas.getFullName().should.equal('oaschain'); + oas.getFullName().should.equal('Oasys'); oas.getBaseFactor().should.equal(1e18); oas.supportsTss().should.equal(true); oas.allowsAccountConsolidations().should.equal(false); @@ -33,7 +33,7 @@ describe('OASYS chain', function () { toas.should.be.an.instanceof(Toas); toas.getChain().should.equal('toas'); toas.getFamily().should.equal('oas'); - toas.getFullName().should.equal('Testnet oaschain'); + toas.getFullName().should.equal('Testnet Oasys'); toas.getBaseFactor().should.equal(1e18); toas.supportsTss().should.equal(true); toas.allowsAccountConsolidations().should.equal(false); diff --git a/modules/statics/src/coins.ts b/modules/statics/src/coins.ts index 2898717898..8a33415684 100644 --- a/modules/statics/src/coins.ts +++ b/modules/statics/src/coins.ts @@ -1080,7 +1080,7 @@ export const coins = CoinMap.fromCoins([ account( '7482e3f1-5bf8-45a6-9d98-69e0506602d2', 'oas', - 'oaschain', + 'Oasys', Networks.main.oas, 18, UnderlyingAsset.OAS, @@ -1090,7 +1090,7 @@ export const coins = CoinMap.fromCoins([ account( 'b5316b57-8aa3-4f0b-9736-96b7838dbde8', 'toas', - 'Testnet oaschain', + 'Testnet Oasys', Networks.test.oas, 18, UnderlyingAsset.OAS, @@ -1100,7 +1100,7 @@ export const coins = CoinMap.fromCoins([ account( 'bac24d8c-0f8f-4530-a63c-bc52458acf95', 'coredao', - 'coredaochain', + 'Core', Networks.main.coredao, 18, UnderlyingAsset.COREDAO, @@ -1110,7 +1110,7 @@ export const coins = CoinMap.fromCoins([ account( 'd1d5e492-be8c-4b60-b2ab-3ed26b7dd8c8', 'tcoredao', - 'Testnet coredao chain', + 'Testnet Core', Networks.test.coredao, 18, UnderlyingAsset.COREDAO, diff --git a/modules/statics/src/networks.ts b/modules/statics/src/networks.ts index 33435e6613..ce7522608b 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -1089,7 +1089,7 @@ class ZkSyncTestnet extends Testnet implements EthereumNetwork { } class Berachain extends Mainnet implements EthereumNetwork { - name = 'Berachain'; + name = 'Bera'; family = CoinFamily.BERA; explorerUrl = 'https://80094.routescan.io/tx/'; accountExplorerUrl = 'https://80094.routescan.io/address/';