11// FlareNetwork interface for Flare-family chains
2- export interface FlareNetwork {
2+ export interface FlareNetwork extends BaseNetwork {
33 name : string ;
44 family : CoinFamily ;
55 explorerUrl : string ;
@@ -11,7 +11,6 @@ export interface FlareNetwork {
1111 forwarderImplementationAddress ?: string ;
1212 blockchainID ?: string ;
1313 cChainBlockchainID ?: string ;
14- avaxAssetID ?: string ;
1514 networkID ?: number ;
1615 hrp ?: string ;
1716 alias ?: string ;
@@ -1718,9 +1717,8 @@ export class FlareP extends Mainnet implements FlareNetwork {
17181717 accountExplorerUrl = 'https://flarescan.com/blockchain/pvm/address/' ;
17191718 blockchainID = '11111111111111111111111111111111LpoYY' ;
17201719 cChainBlockchainID = '2q9e4r6Mu3U68nU1fYjgbR6JvwrRx36CohpAX5UQxse55x1Q5' ;
1721- avaxAssetID = '' ; // This is not applicable to our chain, so just any string that passes validation will suffice
17221720 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.
1721+ hrp = 'flare' ;
17241722 alias = 'P' ;
17251723 vm = 'platformvm' ;
17261724 txFee = '1000000' ; // defaults
@@ -1745,9 +1743,8 @@ export class FlarePTestnet extends Testnet implements FlareNetwork {
17451743 accountExplorerUrl = 'https://coston2.testnet.flarescan.com/blockchain/pvm/address/' ;
17461744 blockchainID = '11111111111111111111111111111111LpoYY' ;
17471745 cChainBlockchainID = 'vE8M98mEQH6wk56sStD1ML8HApTgSqfJZLk9gQ3Fsd4i6m3Bi' ;
1748- avaxAssetID = '' ; // This is not applicable to our chain, so just any string that passes validation will suffice
17491746 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.
1747+ hrp = 'costwo' ;
17511748 alias = 'P' ;
17521749 vm = 'platformvm' ;
17531750 txFee = '1000000' ; // defaults
0 commit comments