Skip to content

Commit

Permalink
Merge pull request #403 from kleros/feat/zk-sepolia
Browse files Browse the repository at this point in the history
feat(Networks): add zk Sepolia
  • Loading branch information
jaybuidl authored May 13, 2024
2 parents 4e7d6c3 + e744912 commit c0e7385
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@
REACT_APP_PINAKION_SEPOLIA_ADDRESS='0xA1eE4D32bdBcA69cdb445D66fAA3804aFFa24bFE'
REACT_APP_POLICY_REGISTRY_SEPOLIA_ADDRESS='0x88Fb25D399310c07d35cB9091b8346d8b1893aa5'
REACT_APP_KLEROS_LIQUID_SEPOLIA_BLOCK_NUMBER='3635742'
REACT_APP_WEB3_FALLBACK_SEPOLIA_URL='wss://sepolia.infura.io/ws/v3/f1c9535b961648f7bd18209b00e11163'
REACT_APP_WEB3_FALLBACK_SEPOLIA_HTTPS_URL='https://eth-sepolia.g.alchemy.com/v2/demo'

REACT_APP_KLEROS_XDAI_ADDRESS='0x0000000000000000000000000000000000000000'
REACT_APP_KLEROS_LIQUID_XDAI_ADDRESS='0x9C1dA9A04925bDfDedf0f6421bC7EEa8305F9002'
Expand All @@ -60,6 +58,8 @@
REACT_APP_WEB3_FALLBACK_POLYGON_HTTPS_URL='https://polygon-mainnet.g.alchemy.com/v2/Y2IRJuoY0G-LAkHTqyXdVetLFm4R2NZT'
REACT_APP_WEB3_FALLBACK_MUMBAI_HTTPS_URL='https://polygon-mumbai.g.alchemy.com/v2/demo'

REACT_APP_WEB3_FALLBACK_ZKSYNCSEPOLIA_HTTPS_URL='https://sepolia.era.zksync.dev'

[context.production.environment]
REACT_APP_CONTEXT='production'
REACT_APP_USER_SETTINGS_URL='https://hgyxlve79a.execute-api.us-east-2.amazonaws.com/production/user-settings'
Expand Down
1 change: 1 addition & 0 deletions src/bootstrap/web3.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const chainIdToRpcEndpoint = {
5: process.env.REACT_APP_WEB3_FALLBACK_GOERLI_HTTPS_URL,
100: process.env.REACT_APP_WEB3_FALLBACK_XDAI_HTTPS_URL,
137: process.env.REACT_APP_WEB3_FALLBACK_POLYGON_HTTPS_URL,
300: process.env.REACT_APP_WEB3_FALLBACK_ZKSYNCSEPOLIA_HTTPS_URL,
10200: process.env.REACT_APP_WEB3_FALLBACK_CHIADO_HTTPS_URL,
80001: process.env.REACT_APP_WEB3_FALLBACK_MUMBAI_HTTPS_URL,
11155111: process.env.REACT_APP_WEB3_FALLBACK_SEPOLIA_HTTPS_URL,
Expand Down
1 change: 1 addition & 0 deletions src/temp/arbitrable-whitelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const arbitrableWhitelist = {
"0xe04f5791d671d5c4e08ab49b39807087b591ea3e",
"0xf7de5537ecd69a94695fcf4bcdbdee6329b63322",
].map((address) => address.toLowerCase()),
11155111: ["0x73E4F71e5ecE8d1319807DC7cd2EAA9Fda8F5182"].map((address) => address.toLowerCase()),
};

export default arbitrableWhitelist;

0 comments on commit c0e7385

Please sign in to comment.