Skip to content

Commit 1de565b

Browse files
chore: flare-p base network
TICKET: WIN-6328
1 parent 507673b commit 1de565b

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

modules/statics/src/networks.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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,9 @@ 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
1720+
avaxAssetID = '';
17221721
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';
17241723
alias = 'P';
17251724
vm = 'platformvm';
17261725
txFee = '1000000'; // defaults
@@ -1745,9 +1744,8 @@ export class FlarePTestnet extends Testnet implements FlareNetwork {
17451744
accountExplorerUrl = 'https://coston2.testnet.flarescan.com/blockchain/pvm/address/';
17461745
blockchainID = '11111111111111111111111111111111LpoYY';
17471746
cChainBlockchainID = 'vE8M98mEQH6wk56sStD1ML8HApTgSqfJZLk9gQ3Fsd4i6m3Bi';
1748-
avaxAssetID = ''; // This is not applicable to our chain, so just any string that passes validation will suffice
17491747
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';
17511749
alias = 'P';
17521750
vm = 'platformvm';
17531751
txFee = '1000000'; // defaults

0 commit comments

Comments
 (0)