-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconfig.js
17 lines (16 loc) · 1.45 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export class Config {
/**
* Network OP <Swap from OP to ARB sepolia
* Network ARB <Swap from ARB to OP sepolia
*/
static network = "OP"; //OP or ARB
static BRIDGEAMOUNT = "0.1";
static OPRPCURL = "https://optimism-sepolia.blockpi.network/v1/rpc/private";
static ARBRPCURL = "https://sepolia-rollup.arbitrum.io/rpc";
static OPTOARBBRIDGECONTRACT = "0xf221750e52aa080835d2957f2eed0d5d7ddd8c38";
static ARBTOOPBRIDGECONTRACT = "0x8D86c3573928CE125f9b2df59918c383aa2B514D";
static ARBTOOPRAWDATA =
"0x56591d596f7073700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f0ea6e0b3590e1ab6c12ea0a24d3d0d9bf7707d00000000000000000000000000000000000000000000000001617e8c684de3dc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016345785d8a0000";
static OPTOARBRAWDATA =
"0x56591d59617262740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f0ea6e0b3590e1ab6c12ea0a24d3d0d9bf7707d00000000000000000000000000000000000000000000000001600596f8502b2500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016345785d8a0000";
}