Skip to content
Merged
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
8 changes: 4 additions & 4 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2748,8 +2748,8 @@ class TempoTestnet extends Testnet implements EthereumNetwork {
class Boba extends Mainnet implements EthereumNetwork {
name = 'Boba';
family = CoinFamily.BOBAETH;
explorerUrl = 'https://bobascan.com/blockchain/transactions';
accountExplorerUrl = 'https://bobascan.com/blockchain/accounts';
explorerUrl = 'https://bobascan.com/tx/';
accountExplorerUrl = 'https://bobascan.com/address/';
chainId = 288;
nativeCoinOperationHashPrefix = '288';
tokenOperationHashPrefix = '288-ERC20';
Expand All @@ -2758,8 +2758,8 @@ class Boba extends Mainnet implements EthereumNetwork {
class BobaTestnet extends Testnet implements EthereumNetwork {
name = 'Boba Testnet';
family = CoinFamily.BOBAETH;
explorerUrl = 'https://testnet.bobascan.com/blockchain/transactions';
accountExplorerUrl = 'https://testnet.bobascan.com/blockchain/accounts';
explorerUrl = 'https://testnet.bobascan.com/tx/';
accountExplorerUrl = 'https://testnet.bobascan.com/address/';
chainId = 28882;
nativeCoinOperationHashPrefix = '28882';
tokenOperationHashPrefix = '28882-ERC20';
Expand Down
Loading