-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.js
More file actions
18 lines (17 loc) · 744 Bytes
/
config.js
File metadata and controls
18 lines (17 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require("dotenv").config();
const config = {
ICON_WALLET_PK:
"573b555367d6734ea0fecd0653ba02659fa19f7dc6ee5b93ec781350bda27376",
EVM_WALLET_PK:
"0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80",
ICON_XCALL_ADDRESS: "cx0f3095fab016a8f643a47a9a9edbe75ac79174b4",
ICON_DAPP_ADDRESS: "cxfb2832d9d070f1dc4ed00e1dd65733d85653ad3a",
EVM_XCALL_ADDRESS: "0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82",
EVM_DAPP_ADDRESS: "0x959922bE3CAee4b8Cd9a407cc3ac1C251C2007B1",
EVM_CHAIN_LABEL: "0x539.hardhat",
ICON_CHAIN_LABEL: "0x3.icon",
ICON_RPC_URL: process.env.ICON_RPC || "http://localhost:9080/api/v3",
EVM_RPC_URL: process.env.EVM_RPC || "http://localhost:8545",
ICON_RPC_NID: 3
};
module.exports = config;