Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/sdk-coin-flr/src/flr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* - Doc: https://docs.flare.network/user/wallets/
*
* @coinFullName Flare
* @coinWebsite https://flare-explorer.flare.network
* @coinWebsite https://flarescan.com
*/

import { BigNumber } from 'bignumber.js';
Expand Down
10 changes: 5 additions & 5 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2367,9 +2367,9 @@ export class FlarePTestnet extends Testnet implements FlareNetwork {
export class Flare extends Mainnet implements EthereumNetwork {
name = 'Flarechain';
family = CoinFamily.FLR;
explorerUrl = 'https://flare-explorer.flare.network/tx/';
accountExplorerUrl = 'https://flare-explorer.flare.network/address/';
flarePublicUrl = 'https://flare-explorer.flare.network';
explorerUrl = 'https://flarescan.com/tx/';
accountExplorerUrl = 'https://flarescan.com/blockchain/address/';
flarePublicUrl = 'https://flarescan.com';
chainId = 14;
nativeCoinOperationHashPrefix = '14';
walletFactoryAddress = '0x809ee567e413543af1caebcdb247f6a67eafc8dd';
Expand All @@ -2382,8 +2382,8 @@ export class Flare extends Mainnet implements EthereumNetwork {
export class FlareTestnet extends Testnet implements EthereumNetwork {
name = 'FlarechainTestnet';
family = CoinFamily.FLR;
explorerUrl = 'https://coston2-explorer.flare.network/tx/';
accountExplorerUrl = 'https://coston2-explorer.flare.network/address/';
explorerUrl = 'https://coston2.testnet.flarescan.com/tx/';
accountExplorerUrl = 'https://coston2.testnet.flarescan.com/blockchain/address/';
chainId = 114;
nativeCoinOperationHashPrefix = '114';
walletFactoryAddress = '0x809ee567e413543af1caebcdb247f6a67eafc8dd';
Expand Down
Loading