File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed
sdk-coin-coredao/test/unit Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff 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 ) ;
Original file line number Diff line number Diff 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 ) ;
Original file line number Diff line number Diff line change @@ -1080,7 +1080,7 @@ export const coins = CoinMap.fromCoins([
10801080 account (
10811081 '7482e3f1-5bf8-45a6-9d98-69e0506602d2' ,
10821082 'oas' ,
1083- 'oaschain ' ,
1083+ 'Oasys ' ,
10841084 Networks . main . oas ,
10851085 18 ,
10861086 UnderlyingAsset . OAS ,
@@ -1090,7 +1090,7 @@ export const coins = CoinMap.fromCoins([
10901090 account (
10911091 'b5316b57-8aa3-4f0b-9736-96b7838dbde8' ,
10921092 'toas' ,
1093- 'Testnet oaschain ' ,
1093+ 'Testnet Oasys ' ,
10941094 Networks . test . oas ,
10951095 18 ,
10961096 UnderlyingAsset . OAS ,
@@ -1100,7 +1100,7 @@ export const coins = CoinMap.fromCoins([
11001100 account (
11011101 'bac24d8c-0f8f-4530-a63c-bc52458acf95' ,
11021102 'coredao' ,
1103- 'coredaochain ' ,
1103+ 'Core ' ,
11041104 Networks . main . coredao ,
11051105 18 ,
11061106 UnderlyingAsset . COREDAO ,
@@ -1110,7 +1110,7 @@ export const coins = CoinMap.fromCoins([
11101110 account (
11111111 'd1d5e492-be8c-4b60-b2ab-3ed26b7dd8c8' ,
11121112 'tcoredao' ,
1113- 'Testnet coredao chain ' ,
1113+ 'Testnet Core ' ,
11141114 Networks . test . coredao ,
11151115 18 ,
11161116 UnderlyingAsset . COREDAO ,
Original file line number Diff line number Diff line change @@ -1089,7 +1089,7 @@ class ZkSyncTestnet extends Testnet implements EthereumNetwork {
10891089}
10901090
10911091class Berachain extends Mainnet implements EthereumNetwork {
1092- name = 'Berachain ' ;
1092+ name = 'Bera ' ;
10931093 family = CoinFamily . BERA ;
10941094 explorerUrl = 'https://80094.routescan.io/tx/' ;
10951095 accountExplorerUrl = 'https://80094.routescan.io/address/' ;
You can’t perform that action at this time.
0 commit comments