Skip to content

Commit 4001348

Browse files
chore: update Cronos fullname to Cronos POS
TICKET: COIN-4333
1 parent cb2670b commit 4001348

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ describe('Cronos', function () {
3131

3232
cronos.getChain().should.equal('cronos');
3333
cronos.getFamily().should.equal('cronos');
34-
cronos.getFullName().should.equal('Cronos');
34+
cronos.getFullName().should.equal('Cronos POS');
3535
cronos.getBaseFactor().should.equal(1e8);
3636

3737
tcronos.getChain().should.equal('tcronos');
3838
tcronos.getFamily().should.equal('cronos');
39-
tcronos.getFullName().should.equal('Testnet Cronos');
39+
tcronos.getFullName().should.equal('Testnet Cronos POS');
4040
tcronos.getBaseFactor().should.equal(1e8);
4141
});
4242

modules/statics/src/coins.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ export const coins = CoinMap.fromCoins([
851851
account(
852852
'507492ba-d127-4fd8-b07d-9461f5887a26',
853853
'cronos',
854-
'Cronos',
854+
'Cronos POS',
855855
Networks.main.cronos,
856856
8,
857857
UnderlyingAsset.CRONOS,
@@ -861,7 +861,7 @@ export const coins = CoinMap.fromCoins([
861861
account(
862862
'49d56512-bddb-41aa-ac7f-f4a4c494b412',
863863
'tcronos',
864-
'Testnet Cronos',
864+
'Testnet Cronos POS',
865865
Networks.test.cronos,
866866
8,
867867
UnderlyingAsset.CRONOS,

modules/statics/src/networks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -888,13 +888,13 @@ class MantraTestnet extends Testnet implements AccountNetwork {
888888
}
889889

890890
class Cronos extends Mainnet implements AccountNetwork {
891-
name = 'Cronos';
891+
name = 'Cronos POS';
892892
family = CoinFamily.CRONOS;
893893
explorerUrl = 'https://cronos-pos.org/explorer/';
894894
}
895895

896896
class CronosTestnet extends Testnet implements AccountNetwork {
897-
name = 'Testnet Cronos';
897+
name = 'Testnet Cronos POS';
898898
family = CoinFamily.CRONOS;
899899
explorerUrl = 'https://cronos-pos.org/explorer/croeseid4/';
900900
}

0 commit comments

Comments
 (0)