1
1
// FlareNetwork interface for Flare-family chains
2
- export interface FlareNetwork {
2
+ export interface FlareNetwork extends BaseNetwork {
3
3
name : string ;
4
4
family : CoinFamily ;
5
5
explorerUrl : string ;
@@ -11,7 +11,6 @@ export interface FlareNetwork {
11
11
forwarderImplementationAddress ?: string ;
12
12
blockchainID ?: string ;
13
13
cChainBlockchainID ?: string ;
14
- avaxAssetID ?: string ;
15
14
networkID ?: number ;
16
15
hrp ?: string ;
17
16
alias ?: string ;
@@ -1718,9 +1717,9 @@ export class FlareP extends Mainnet implements FlareNetwork {
1718
1717
accountExplorerUrl = 'https://flarescan.com/blockchain/pvm/address/' ;
1719
1718
blockchainID = '11111111111111111111111111111111LpoYY' ;
1720
1719
cChainBlockchainID = '2q9e4r6Mu3U68nU1fYjgbR6JvwrRx36CohpAX5UQxse55x1Q5' ;
1721
- avaxAssetID = '' ; // This is not applicable to our chain, so just any string that passes validation will suffice
1720
+ avaxAssetID = '' ;
1722
1721
networkID = 14 ;
1723
- hrp = 'flare' ; //The Human-Readable Part for Bech32 addresses on the network (e.g., avax for Mainnet). It's the prefix before the 1 in an address.
1722
+ hrp = 'flare' ;
1724
1723
alias = 'P' ;
1725
1724
vm = 'platformvm' ;
1726
1725
txFee = '1000000' ; // defaults
@@ -1745,9 +1744,8 @@ export class FlarePTestnet extends Testnet implements FlareNetwork {
1745
1744
accountExplorerUrl = 'https://coston2.testnet.flarescan.com/blockchain/pvm/address/' ;
1746
1745
blockchainID = '11111111111111111111111111111111LpoYY' ;
1747
1746
cChainBlockchainID = 'vE8M98mEQH6wk56sStD1ML8HApTgSqfJZLk9gQ3Fsd4i6m3Bi' ;
1748
- avaxAssetID = '' ; // This is not applicable to our chain, so just any string that passes validation will suffice
1749
1747
networkID = 114 ;
1750
- hrp = 'costwo' ; //The Human-Readable Part for Bech32 addresses on the network (e.g., avax for Mainnet). It's the prefix before the 1 in an address.
1748
+ hrp = 'costwo' ;
1751
1749
alias = 'P' ;
1752
1750
vm = 'platformvm' ;
1753
1751
txFee = '1000000' ; // defaults
0 commit comments