File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,13 @@ const CHAIN_PARAMS = {
19
19
protocolFeeBeneficiary : "0xa65d67513328445b4a4d2f498624483c2601dda4" ,
20
20
wethAddress : "0x263d8f36bb8d0d9526255e205868c26690b04b88" ,
21
21
} ,
22
+ // Abstract Testnet
23
+ 11124 : {
24
+ lpFee : DEFAULT_LP_FEE ,
25
+ protocolFee : DEFAULT_PROTOCOL_FEE ,
26
+ protocolFeeBeneficiary : "0x5a25839b49eec2d4c173b42668a84f5988599929" ,
27
+ wethAddress : "0xe642f7d1f07af75ed8198f0b4d68f14244baaab5" ,
28
+ } ,
22
29
// Abstract
23
30
2741 : {
24
31
lpFee : DEFAULT_LP_FEE ,
Original file line number Diff line number Diff line change @@ -35,11 +35,20 @@ const config: HardhatUserConfig = {
35
35
"https://rpc-explorer-verify.treasure.lol/contract_verification" ,
36
36
kmsKeyId : prodKmsKey ,
37
37
} ,
38
+ abstractTestnet : {
39
+ url : "https://api.testnet.abs.xyz" ,
40
+ ethNetwork : "sepolia" ,
41
+ chainId : 0x2B74 ,
42
+ zksync : true ,
43
+ kmsKeyId : devKmsKey ,
44
+ } ,
38
45
abstract : {
39
46
url : "https://api.mainnet.abs.xyz" ,
40
47
ethNetwork : "mainnet" ,
41
48
chainId : 0xAB5 ,
42
49
zksync : true ,
50
+ live : true ,
51
+ saveDeployments : true ,
43
52
kmsKeyId : prodKmsKey ,
44
53
} ,
45
54
arbitrumSepolia : {
@@ -71,9 +80,18 @@ const config: HardhatUserConfig = {
71
80
apiKey : {
72
81
arbitrumSepolia : process . env . ARBISCAN_API_KEY ?? "" ,
73
82
arbitrumOne : process . env . ARBISCAN_API_KEY ?? "" ,
83
+ abstractTestnet : process . env . ABSCAN_API_KEY ?? "" ,
74
84
abstract : process . env . ABSCAN_API_KEY ?? "" ,
75
85
} ,
76
86
customChains : [
87
+ {
88
+ network : "abstractTestnet" ,
89
+ chainId : 0x2B74 ,
90
+ urls : {
91
+ apiURL : "https://api-sepolia.abscan.org/api" ,
92
+ browserURL : "https://sepolia.abscan.org"
93
+ }
94
+ } ,
77
95
{
78
96
network : "abstract" ,
79
97
chainId : 0xAB5 ,
Original file line number Diff line number Diff line change 6
6
"scripts" : {
7
7
"deploy:treasure-topaz" : " hardhat deploy-zksync --network treasureTopaz" ,
8
8
"deploy:treasure-mainnet" : " hardhat deploy-zksync --network treasureMainnet" ,
9
+ "deploy:abstract-testnet" : " hardhat deploy-zksync --network abstractTestnet" ,
9
10
"deploy:abstract" : " hardhat deploy-zksync --network abstract" ,
10
11
"deploy:arbitrum-sepolia" : " hardhat deploy --network arbitrumSepolia" ,
11
12
"deploy:arbitrum-one" : " hardhat deploy --network arbitrumOne" ,
You can’t perform that action at this time.
0 commit comments