Skip to content

Commit 719dde5

Browse files
committed
fix: name for bera, coredao, oas
BREAKING CHANGE: changing the name for bera, coredao and oas Ticket: WIN-4509
1 parent 9a80203 commit 719dde5

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ describe('Coredao', function () {
2525
coredao.should.be.an.instanceof(Coredao);
2626
coredao.getChain().should.equal('coredao');
2727
coredao.getFamily().should.equal('coredao');
28-
coredao.getFullName().should.equal('coredaochain');
28+
coredao.getFullName().should.equal('Core');
2929
coredao.getBaseFactor().should.equal(1e18);
3030
coredao.supportsTss().should.equal(true);
3131
coredao.allowsAccountConsolidations().should.equal(false);
@@ -37,7 +37,7 @@ describe('Coredao', function () {
3737
tcoredao.should.be.an.instanceof(Tcoredao);
3838
tcoredao.getChain().should.equal('tcoredao');
3939
tcoredao.getFamily().should.equal('coredao');
40-
tcoredao.getFullName().should.equal('Testnet coredao chain');
40+
tcoredao.getFullName().should.equal('Testnet Core');
4141
tcoredao.getBaseFactor().should.equal(1e18);
4242
tcoredao.supportsTss().should.equal(true);
4343
tcoredao.allowsAccountConsolidations().should.equal(false);

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ describe('OASYS chain', function () {
2121
oas.should.be.an.instanceof(Oas);
2222
oas.getChain().should.equal('oas');
2323
oas.getFamily().should.equal('oas');
24-
oas.getFullName().should.equal('oaschain');
24+
oas.getFullName().should.equal('Oasys');
2525
oas.getBaseFactor().should.equal(1e18);
2626
oas.supportsTss().should.equal(true);
2727
oas.allowsAccountConsolidations().should.equal(false);
@@ -33,7 +33,7 @@ describe('OASYS chain', function () {
3333
toas.should.be.an.instanceof(Toas);
3434
toas.getChain().should.equal('toas');
3535
toas.getFamily().should.equal('oas');
36-
toas.getFullName().should.equal('Testnet oaschain');
36+
toas.getFullName().should.equal('Testnet Oasys');
3737
toas.getBaseFactor().should.equal(1e18);
3838
toas.supportsTss().should.equal(true);
3939
toas.allowsAccountConsolidations().should.equal(false);

modules/statics/src/coins.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1416,7 +1416,7 @@ export const coins = CoinMap.fromCoins([
14161416
account(
14171417
'7482e3f1-5bf8-45a6-9d98-69e0506602d2',
14181418
'oas',
1419-
'oaschain',
1419+
'Oasys',
14201420
Networks.main.oas,
14211421
18,
14221422
UnderlyingAsset.OAS,
@@ -1426,7 +1426,7 @@ export const coins = CoinMap.fromCoins([
14261426
account(
14271427
'b5316b57-8aa3-4f0b-9736-96b7838dbde8',
14281428
'toas',
1429-
'Testnet oaschain',
1429+
'Testnet Oasys',
14301430
Networks.test.oas,
14311431
18,
14321432
UnderlyingAsset.OAS,
@@ -1436,7 +1436,7 @@ export const coins = CoinMap.fromCoins([
14361436
account(
14371437
'bac24d8c-0f8f-4530-a63c-bc52458acf95',
14381438
'coredao',
1439-
'coredaochain',
1439+
'Core',
14401440
Networks.main.coredao,
14411441
18,
14421442
UnderlyingAsset.COREDAO,
@@ -1446,7 +1446,7 @@ export const coins = CoinMap.fromCoins([
14461446
account(
14471447
'd1d5e492-be8c-4b60-b2ab-3ed26b7dd8c8',
14481448
'tcoredao',
1449-
'Testnet coredao chain',
1449+
'Testnet Core',
14501450
Networks.test.coredao,
14511451
18,
14521452
UnderlyingAsset.COREDAO,

modules/statics/src/networks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1082,7 +1082,7 @@ class ZkSyncTestnet extends Testnet implements EthereumNetwork {
10821082
}
10831083

10841084
class Berachain extends Mainnet implements EthereumNetwork {
1085-
name = 'Berachain';
1085+
name = 'Bera';
10861086
family = CoinFamily.BERA;
10871087
explorerUrl = 'https://80094.routescan.io/tx/';
10881088
accountExplorerUrl = 'https://80094.routescan.io/address/';

0 commit comments

Comments
 (0)