Skip to content

Commit

Permalink
Merge pull request #5525 from BitGo/WIN-4509_name_change
Browse files Browse the repository at this point in the history
fix: name for bera, coredao, oas
  • Loading branch information
adarsh312 authored Feb 12, 2025
2 parents d052b0c + 719dde5 commit 5fbf436
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions modules/sdk-coin-coredao/test/unit/coredao.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions modules/sdk-coin-oas/test/unit/oas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down
8 changes: 4 additions & 4 deletions modules/statics/src/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ export const coins = CoinMap.fromCoins([
account(
'7482e3f1-5bf8-45a6-9d98-69e0506602d2',
'oas',
'oaschain',
'Oasys',
Networks.main.oas,
18,
UnderlyingAsset.OAS,
Expand All @@ -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,
Expand All @@ -1100,7 +1100,7 @@ export const coins = CoinMap.fromCoins([
account(
'bac24d8c-0f8f-4530-a63c-bc52458acf95',
'coredao',
'coredaochain',
'Core',
Networks.main.coredao,
18,
UnderlyingAsset.COREDAO,
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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/';
Expand Down

0 comments on commit 5fbf436

Please sign in to comment.