Skip to content
Open
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
4 changes: 2 additions & 2 deletions modules/sdk-core/src/bitgo/environments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ const mainnetBase: EnvironmentTemplate = {
baseUrl: 'https://api.verify.mintscan.io/evm/api/0x8ae',
},
irys: {
baseUrl: 'https://testnet-rpc.irys.xyz/v1/execution-rpc', //TODO: WIN-6191 add mainnet url when available
baseUrl: 'https://evm-explorer.irys.xyz/api',
},
mon: {
baseUrl: 'https://api.etherscan.io/v2',
Expand Down Expand Up @@ -397,7 +397,7 @@ const testnetBase: EnvironmentTemplate = {
baseUrl: 'https://api.verify.mintscan.io/evm/api/0x8ad',
},
irys: {
baseUrl: 'https://inst-1.cloud.blockscout.com',
baseUrl: 'https://inst-1.cloud.blockscout.com/api',
},
mon: {
baseUrl: 'https://api.etherscan.io/v2',
Expand Down
8 changes: 4 additions & 4 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1608,10 +1608,10 @@ class KaiaTestnet extends Testnet implements EthereumNetwork {
class Irys extends Mainnet implements EthereumNetwork {
name = 'Irys';
family = CoinFamily.IRYS;
explorerUrl = ''; //WIN-6191 add mainnet url when available
accountExplorerUrl = ''; //WIN-6191 add mainnet url when available
chainId = 1270; //WIN-6191 add mainnet id when available
nativeCoinOperationHashPrefix = '1270';
explorerUrl = 'https://evm-explorer.irys.xyz/tx/';
accountExplorerUrl = 'https://evm-explorer.irys.xyz/address/';
chainId = 3282;
nativeCoinOperationHashPrefix = '3282';
}

class IrysTestnet extends Testnet implements EthereumNetwork {
Expand Down
Loading