Added Arbitrum Goerli

This commit is contained in:
Aleksandr Kraiz
2023-05-09 13:08:12 +04:00
parent 3564159dfb
commit 55b9409bc5
6 changed files with 29 additions and 3 deletions

View File

@@ -44,6 +44,15 @@
"rpc": "https://testing.orionprotocol.io/eth-goerli/rpc",
"baseCurrencyName": "ETH"
},
"421613": {
"chainId": "421613",
"explorer": "https://goerli.arbiscan.io/",
"label": "Arbitrum Goerli",
"shortName": "Arbitrum Goerli",
"code": "arb",
"rpc": "https://goerli-rollup.arbitrum.io/rpc",
"baseCurrencyName": "AGOR"
},
"4002": {
"chainId": "4002",
"explorer": "https://testnet.ftmscan.com/",

View File

@@ -116,6 +116,21 @@
}
}
},
"421613": {
"api": "https://testing.orionprotocol.io/arbitrum-goerli",
"services": {
"aggregator": {
"http": "/backend",
"ws": "/v1"
},
"blockchain": {
"http": ""
},
"priceFeed": {
"all": "/price-feed"
}
}
},
"4002": {
"api": "https://testing.orionprotocol.io/ftm-testnet",
"services": {

View File

@@ -4,6 +4,7 @@ export const developmentChains = [
SupportedChainId.BSC_TESTNET,
SupportedChainId.ROPSTEN,
SupportedChainId.GOERLI,
SupportedChainId.ARBITRUM_GOERLI,
SupportedChainId.FANTOM_TESTNET,
SupportedChainId.POLYGON_TESTNET,
SupportedChainId.OKC_TESTNET,

View File

@@ -127,6 +127,7 @@ export enum SupportedChainId {
MAINNET = '1',
ROPSTEN = '3',
GOERLI = '5',
ARBITRUM_GOERLI = '421613',
FANTOM_OPERA = '250',
POLYGON = '137',
OKC = '66',