@venusprotocol/venus-periphery 1.2.0-slim-dev.7 → 1.2.0-slim-dev.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/contracts/DeviationSentinel/Oracles/AerodromeSlipstreamOracle.sol/AerodromeSlipstreamOracle.json +308 -0
- package/artifacts/contracts/DeviationSentinel/Oracles/CurveOracle.sol/CurveOracle.json +382 -0
- package/artifacts/contracts/Interfaces/IAerodromeSlipstreamPool.sol/IAerodromeSlipstreamPool.json +75 -0
- package/artifacts/contracts/Interfaces/ICurveStableSwapNG.sol/ICurveStableSwapNG.json +59 -0
- package/deployments/arbitrumone_addresses.json +18 -1
- package/deployments/basemainnet_addresses.json +21 -1
- package/deployments/ethereum_addresses.json +21 -1
- package/deployments/sepolia_addresses.json +12 -1
- package/package.json +1 -1
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "AerodromeSlipstreamOracle",
|
|
4
|
+
"sourceName": "contracts/DeviationSentinel/Oracles/AerodromeSlipstreamOracle.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "contract ResilientOracleInterface",
|
|
10
|
+
"name": "resilientOracle_",
|
|
11
|
+
"type": "address"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"stateMutability": "nonpayable",
|
|
15
|
+
"type": "constructor"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"inputs": [],
|
|
19
|
+
"name": "InvalidPool",
|
|
20
|
+
"type": "error"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"inputs": [],
|
|
24
|
+
"name": "TokenNotConfigured",
|
|
25
|
+
"type": "error"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"inputs": [
|
|
29
|
+
{
|
|
30
|
+
"internalType": "address",
|
|
31
|
+
"name": "sender",
|
|
32
|
+
"type": "address"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"internalType": "address",
|
|
36
|
+
"name": "calledContract",
|
|
37
|
+
"type": "address"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"internalType": "string",
|
|
41
|
+
"name": "methodSignature",
|
|
42
|
+
"type": "string"
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"name": "Unauthorized",
|
|
46
|
+
"type": "error"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"inputs": [],
|
|
50
|
+
"name": "ZeroAddress",
|
|
51
|
+
"type": "error"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"anonymous": false,
|
|
55
|
+
"inputs": [
|
|
56
|
+
{
|
|
57
|
+
"indexed": false,
|
|
58
|
+
"internalType": "uint8",
|
|
59
|
+
"name": "version",
|
|
60
|
+
"type": "uint8"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"name": "Initialized",
|
|
64
|
+
"type": "event"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"anonymous": false,
|
|
68
|
+
"inputs": [
|
|
69
|
+
{
|
|
70
|
+
"indexed": false,
|
|
71
|
+
"internalType": "address",
|
|
72
|
+
"name": "oldAccessControlManager",
|
|
73
|
+
"type": "address"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"indexed": false,
|
|
77
|
+
"internalType": "address",
|
|
78
|
+
"name": "newAccessControlManager",
|
|
79
|
+
"type": "address"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"name": "NewAccessControlManager",
|
|
83
|
+
"type": "event"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"anonymous": false,
|
|
87
|
+
"inputs": [
|
|
88
|
+
{
|
|
89
|
+
"indexed": true,
|
|
90
|
+
"internalType": "address",
|
|
91
|
+
"name": "previousOwner",
|
|
92
|
+
"type": "address"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"indexed": true,
|
|
96
|
+
"internalType": "address",
|
|
97
|
+
"name": "newOwner",
|
|
98
|
+
"type": "address"
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"name": "OwnershipTransferStarted",
|
|
102
|
+
"type": "event"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"anonymous": false,
|
|
106
|
+
"inputs": [
|
|
107
|
+
{
|
|
108
|
+
"indexed": true,
|
|
109
|
+
"internalType": "address",
|
|
110
|
+
"name": "previousOwner",
|
|
111
|
+
"type": "address"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"indexed": true,
|
|
115
|
+
"internalType": "address",
|
|
116
|
+
"name": "newOwner",
|
|
117
|
+
"type": "address"
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
"name": "OwnershipTransferred",
|
|
121
|
+
"type": "event"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"anonymous": false,
|
|
125
|
+
"inputs": [
|
|
126
|
+
{
|
|
127
|
+
"indexed": true,
|
|
128
|
+
"internalType": "address",
|
|
129
|
+
"name": "token",
|
|
130
|
+
"type": "address"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"indexed": true,
|
|
134
|
+
"internalType": "address",
|
|
135
|
+
"name": "pool",
|
|
136
|
+
"type": "address"
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"name": "PoolConfigUpdated",
|
|
140
|
+
"type": "event"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"inputs": [],
|
|
144
|
+
"name": "RESILIENT_ORACLE",
|
|
145
|
+
"outputs": [
|
|
146
|
+
{
|
|
147
|
+
"internalType": "contract ResilientOracleInterface",
|
|
148
|
+
"name": "",
|
|
149
|
+
"type": "address"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"stateMutability": "view",
|
|
153
|
+
"type": "function"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"inputs": [],
|
|
157
|
+
"name": "acceptOwnership",
|
|
158
|
+
"outputs": [],
|
|
159
|
+
"stateMutability": "nonpayable",
|
|
160
|
+
"type": "function"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"inputs": [],
|
|
164
|
+
"name": "accessControlManager",
|
|
165
|
+
"outputs": [
|
|
166
|
+
{
|
|
167
|
+
"internalType": "contract IAccessControlManagerV8",
|
|
168
|
+
"name": "",
|
|
169
|
+
"type": "address"
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
"stateMutability": "view",
|
|
173
|
+
"type": "function"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"inputs": [
|
|
177
|
+
{
|
|
178
|
+
"internalType": "address",
|
|
179
|
+
"name": "asset",
|
|
180
|
+
"type": "address"
|
|
181
|
+
}
|
|
182
|
+
],
|
|
183
|
+
"name": "getPrice",
|
|
184
|
+
"outputs": [
|
|
185
|
+
{
|
|
186
|
+
"internalType": "uint256",
|
|
187
|
+
"name": "price",
|
|
188
|
+
"type": "uint256"
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
"stateMutability": "view",
|
|
192
|
+
"type": "function"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"inputs": [
|
|
196
|
+
{
|
|
197
|
+
"internalType": "address",
|
|
198
|
+
"name": "accessControlManager_",
|
|
199
|
+
"type": "address"
|
|
200
|
+
}
|
|
201
|
+
],
|
|
202
|
+
"name": "initialize",
|
|
203
|
+
"outputs": [],
|
|
204
|
+
"stateMutability": "nonpayable",
|
|
205
|
+
"type": "function"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"inputs": [],
|
|
209
|
+
"name": "owner",
|
|
210
|
+
"outputs": [
|
|
211
|
+
{
|
|
212
|
+
"internalType": "address",
|
|
213
|
+
"name": "",
|
|
214
|
+
"type": "address"
|
|
215
|
+
}
|
|
216
|
+
],
|
|
217
|
+
"stateMutability": "view",
|
|
218
|
+
"type": "function"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"inputs": [],
|
|
222
|
+
"name": "pendingOwner",
|
|
223
|
+
"outputs": [
|
|
224
|
+
{
|
|
225
|
+
"internalType": "address",
|
|
226
|
+
"name": "",
|
|
227
|
+
"type": "address"
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
"stateMutability": "view",
|
|
231
|
+
"type": "function"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"inputs": [],
|
|
235
|
+
"name": "renounceOwnership",
|
|
236
|
+
"outputs": [],
|
|
237
|
+
"stateMutability": "nonpayable",
|
|
238
|
+
"type": "function"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"inputs": [
|
|
242
|
+
{
|
|
243
|
+
"internalType": "address",
|
|
244
|
+
"name": "accessControlManager_",
|
|
245
|
+
"type": "address"
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
"name": "setAccessControlManager",
|
|
249
|
+
"outputs": [],
|
|
250
|
+
"stateMutability": "nonpayable",
|
|
251
|
+
"type": "function"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"inputs": [
|
|
255
|
+
{
|
|
256
|
+
"internalType": "address",
|
|
257
|
+
"name": "token",
|
|
258
|
+
"type": "address"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"internalType": "address",
|
|
262
|
+
"name": "pool",
|
|
263
|
+
"type": "address"
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"name": "setPoolConfig",
|
|
267
|
+
"outputs": [],
|
|
268
|
+
"stateMutability": "nonpayable",
|
|
269
|
+
"type": "function"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"inputs": [
|
|
273
|
+
{
|
|
274
|
+
"internalType": "address",
|
|
275
|
+
"name": "",
|
|
276
|
+
"type": "address"
|
|
277
|
+
}
|
|
278
|
+
],
|
|
279
|
+
"name": "tokenPools",
|
|
280
|
+
"outputs": [
|
|
281
|
+
{
|
|
282
|
+
"internalType": "address",
|
|
283
|
+
"name": "",
|
|
284
|
+
"type": "address"
|
|
285
|
+
}
|
|
286
|
+
],
|
|
287
|
+
"stateMutability": "view",
|
|
288
|
+
"type": "function"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"inputs": [
|
|
292
|
+
{
|
|
293
|
+
"internalType": "address",
|
|
294
|
+
"name": "newOwner",
|
|
295
|
+
"type": "address"
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
"name": "transferOwnership",
|
|
299
|
+
"outputs": [],
|
|
300
|
+
"stateMutability": "nonpayable",
|
|
301
|
+
"type": "function"
|
|
302
|
+
}
|
|
303
|
+
],
|
|
304
|
+
"bytecode": "0x60a03461011857601f610e9638819003918201601f19168301916001600160401b0383118484101761011c5780849260209460405283398101031261011857516001600160a01b0381168103610118576080525f5460ff8160081c166100c35760ff80821603610089575b604051610d65908161013182396080518181816103b701526105fe0152f35b60ff90811916175f557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160ff8152a15f61006a565b60405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b6064820152608490fd5b5f80fd5b634e487b7160e01b5f52604160045260245ffdfe60806040526004361015610011575f80fd5b5f3560e01c80630e32cb86146109615780631936b278146107a757806341976e09146104f9578063715018a61461049457806379ba50971461040e5780638da5cb5b146103e6578063a4edcd4c146103a2578063b4a0bdf31461037a578063c3d2c3c11461033a578063c4d66de814610135578063e30c39781461010d5763f2fde38b1461009d575f80fd5b34610109576020366003190112610109576100b66109e5565b6100be610a1d565b606580546001600160a01b0319166001600160a01b039283169081179091556033549091167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227005f80a3005b5f80fd5b34610109575f366003190112610109576065546040516001600160a01b039091168152602090f35b346101095760203660031901126101095761014e6109e5565b5f5460ff8160081c16159081809261032d575b8015610316575b156102ba5760ff1981166001175f55816102a9575b506101a060ff5f5460081c1661019281610b27565b61019b81610b27565b610b27565b6101a933610ad4565b5f54916101bb60ff8460081c16610b27565b6001600160a01b031680156102565760407f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa09160975490806bffffffffffffffffffffffff60a01b83161760975582519160018060a01b031682526020820152a161022257005b61ff0019165f557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160018152a1005b60405162461bcd60e51b815260206004820152602560248201527f696e76616c696420616365737320636f6e74726f6c206d616e61676572206164604482015264647265737360d81b6064820152608490fd5b61ffff1916610101175f558261017d565b60405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b50303b1580156101685750600160ff821614610168565b50600160ff821610610161565b34610109576020366003190112610109576001600160a01b0361035b6109e5565b165f5260c9602052602060018060a01b0360405f205416604051908152f35b34610109575f366003190112610109576097546040516001600160a01b039091168152602090f35b34610109575f366003190112610109576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b34610109575f366003190112610109576033546040516001600160a01b039091168152602090f35b34610109575f36600319011261010957606554336001600160a01b039091160361043d5761043b33610ad4565b005b60405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608490fd5b34610109575f366003190112610109576104ac610a1d565b606580546001600160a01b03199081169091556033805491821690555f906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b34610109576020366003190112610109576001600160a01b0361051a6109e5565b165f81815260c960205260409020546001600160a01b0316801561079857604051630dfe168160e01b8152602081600481855afa90811561068b575f91610779575b5060405163d21220a760e01b815291602083600481845afa92831561068b575f93610742575b5060c060049160405192838092633850c7bd60e01b82525afa801561068b575f906106bc575b6105bc91506001600160a01b031680610b87565b926001600160a01b0382168103610696575050600190915b6040516341976e0960e01b81526001600160a01b03938416600482015292602090849060249082907f0000000000000000000000000000000000000000000000000000000000000000165afa91821561068b575f92610656575b60209350156106485761064091610b87565b604051908152f35b61065191610c3e565b610640565b91506020833d602011610683575b81610671602093836109fb565b8101031261010957602092519161062e565b3d9150610664565b6040513d5f823e3d90fd5b90916001600160a01b0316036106ae575f90916105d4565b62820f3560e61b5f5260045ffd5b5060c0813d60c01161073a575b816106d660c093836109fb565b810103126101095780516001600160a01b03811681036101095760208201518060020b036101095761073460a08361071360406105bc9601610ac5565b5061072060608201610ac5565b5061072d60808201610ac5565b5001610a75565b506105a8565b3d91506106c9565b600491935061076a60c09160203d602011610772575b61076281836109fb565b810190610aa6565b939150610582565b503d610758565b610792915060203d6020116107725761076281836109fb565b8361055c565b631d8730d160e31b5f5260045ffd5b34610109576040366003190112610109576107c06109e5565b6024356001600160a01b0381169190829003610109576040516040810181811067ffffffffffffffff82111761094d57604052601e81527f736574506f6f6c436f6e66696728616464726573732c61646472657373290000602082015260018060a01b0360975416602060405180926318c5e8ab60e01b82523360048301526040602483015281806108556044820188610a82565b03915afa90811561068b575f91610913575b50156108de57506001600160a01b0316801580156108d6575b6108c7575f81815260c96020526040812080546001600160a01b031916841790557fed7692d7eac8e25ca74b0bcb7b52fe51d01a8910e8e320c6f3223365708d76de9080a3005b63d92e233d60e01b5f5260045ffd5b508115610880565b604051634a3fa29360e01b81523360048201523060248201526060604482015290819061090f906064830190610a82565b0390fd5b90506020813d602011610945575b8161092e602093836109fb565b810103126101095761093f90610a75565b84610867565b3d9150610921565b634e487b7160e01b5f52604160045260245ffd5b346101095760203660031901126101095761097a6109e5565b610982610a1d565b6001600160a01b031680156102565760407f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa09160975490806bffffffffffffffffffffffff60a01b83161760975582519160018060a01b031682526020820152a1005b600435906001600160a01b038216820361010957565b90601f8019910116810190811067ffffffffffffffff82111761094d57604052565b6033546001600160a01b03163303610a3157565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b5190811515820361010957565b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b9081602091031261010957516001600160a01b03811681036101095790565b519061ffff8216820361010957565b606580546001600160a01b0319908116909155603380549182166001600160a01b0393841690811790915591167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3565b15610b2e57565b60405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fd5b905f905f198184099080840293848084109303928084039314610c3457600160601b831015610be4578391600160601b910992610bd05750828211900360a01b910360601c1790565b634e487b7160e01b81526011600452602490fd5b60405162461bcd60e51b815260206004820152602260248201527f46756c6c4d6174683a20726573756c74206f766572666c6f77732075696e74326044820152611a9b60f11b6064820152608490fd5b5050505060601c90565b5f19600160601b8209918160601b91828085109403938085039414610cdd5783821115610be4578190600160601b9009811960018101809111610cc95782168092046002816003021880820260020302808202600203028082026002030280820260020302808202600203028091026002030293600183805f03040190848311900302920304170290565b634e487b7160e01b5f52601160045260245ffd5b5080925015610cea570490565b60405162461bcd60e51b815260206004820152601d60248201527f46756c6c4d6174683a2064656e6f6d696e61746f72206973207a65726f0000006044820152606490fdfea2646970667358221220bd04459e6f7df21b6a5f895da593d89a1b056e577bbb25682ab922d0618ceb9064736f6c634300081c0033",
|
|
305
|
+
"deployedBytecode": "0x60806040526004361015610011575f80fd5b5f3560e01c80630e32cb86146109615780631936b278146107a757806341976e09146104f9578063715018a61461049457806379ba50971461040e5780638da5cb5b146103e6578063a4edcd4c146103a2578063b4a0bdf31461037a578063c3d2c3c11461033a578063c4d66de814610135578063e30c39781461010d5763f2fde38b1461009d575f80fd5b34610109576020366003190112610109576100b66109e5565b6100be610a1d565b606580546001600160a01b0319166001600160a01b039283169081179091556033549091167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227005f80a3005b5f80fd5b34610109575f366003190112610109576065546040516001600160a01b039091168152602090f35b346101095760203660031901126101095761014e6109e5565b5f5460ff8160081c16159081809261032d575b8015610316575b156102ba5760ff1981166001175f55816102a9575b506101a060ff5f5460081c1661019281610b27565b61019b81610b27565b610b27565b6101a933610ad4565b5f54916101bb60ff8460081c16610b27565b6001600160a01b031680156102565760407f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa09160975490806bffffffffffffffffffffffff60a01b83161760975582519160018060a01b031682526020820152a161022257005b61ff0019165f557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160018152a1005b60405162461bcd60e51b815260206004820152602560248201527f696e76616c696420616365737320636f6e74726f6c206d616e61676572206164604482015264647265737360d81b6064820152608490fd5b61ffff1916610101175f558261017d565b60405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b50303b1580156101685750600160ff821614610168565b50600160ff821610610161565b34610109576020366003190112610109576001600160a01b0361035b6109e5565b165f5260c9602052602060018060a01b0360405f205416604051908152f35b34610109575f366003190112610109576097546040516001600160a01b039091168152602090f35b34610109575f366003190112610109576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b34610109575f366003190112610109576033546040516001600160a01b039091168152602090f35b34610109575f36600319011261010957606554336001600160a01b039091160361043d5761043b33610ad4565b005b60405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608490fd5b34610109575f366003190112610109576104ac610a1d565b606580546001600160a01b03199081169091556033805491821690555f906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b34610109576020366003190112610109576001600160a01b0361051a6109e5565b165f81815260c960205260409020546001600160a01b0316801561079857604051630dfe168160e01b8152602081600481855afa90811561068b575f91610779575b5060405163d21220a760e01b815291602083600481845afa92831561068b575f93610742575b5060c060049160405192838092633850c7bd60e01b82525afa801561068b575f906106bc575b6105bc91506001600160a01b031680610b87565b926001600160a01b0382168103610696575050600190915b6040516341976e0960e01b81526001600160a01b03938416600482015292602090849060249082907f0000000000000000000000000000000000000000000000000000000000000000165afa91821561068b575f92610656575b60209350156106485761064091610b87565b604051908152f35b61065191610c3e565b610640565b91506020833d602011610683575b81610671602093836109fb565b8101031261010957602092519161062e565b3d9150610664565b6040513d5f823e3d90fd5b90916001600160a01b0316036106ae575f90916105d4565b62820f3560e61b5f5260045ffd5b5060c0813d60c01161073a575b816106d660c093836109fb565b810103126101095780516001600160a01b03811681036101095760208201518060020b036101095761073460a08361071360406105bc9601610ac5565b5061072060608201610ac5565b5061072d60808201610ac5565b5001610a75565b506105a8565b3d91506106c9565b600491935061076a60c09160203d602011610772575b61076281836109fb565b810190610aa6565b939150610582565b503d610758565b610792915060203d6020116107725761076281836109fb565b8361055c565b631d8730d160e31b5f5260045ffd5b34610109576040366003190112610109576107c06109e5565b6024356001600160a01b0381169190829003610109576040516040810181811067ffffffffffffffff82111761094d57604052601e81527f736574506f6f6c436f6e66696728616464726573732c61646472657373290000602082015260018060a01b0360975416602060405180926318c5e8ab60e01b82523360048301526040602483015281806108556044820188610a82565b03915afa90811561068b575f91610913575b50156108de57506001600160a01b0316801580156108d6575b6108c7575f81815260c96020526040812080546001600160a01b031916841790557fed7692d7eac8e25ca74b0bcb7b52fe51d01a8910e8e320c6f3223365708d76de9080a3005b63d92e233d60e01b5f5260045ffd5b508115610880565b604051634a3fa29360e01b81523360048201523060248201526060604482015290819061090f906064830190610a82565b0390fd5b90506020813d602011610945575b8161092e602093836109fb565b810103126101095761093f90610a75565b84610867565b3d9150610921565b634e487b7160e01b5f52604160045260245ffd5b346101095760203660031901126101095761097a6109e5565b610982610a1d565b6001600160a01b031680156102565760407f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa09160975490806bffffffffffffffffffffffff60a01b83161760975582519160018060a01b031682526020820152a1005b600435906001600160a01b038216820361010957565b90601f8019910116810190811067ffffffffffffffff82111761094d57604052565b6033546001600160a01b03163303610a3157565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b5190811515820361010957565b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b9081602091031261010957516001600160a01b03811681036101095790565b519061ffff8216820361010957565b606580546001600160a01b0319908116909155603380549182166001600160a01b0393841690811790915591167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3565b15610b2e57565b60405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fd5b905f905f198184099080840293848084109303928084039314610c3457600160601b831015610be4578391600160601b910992610bd05750828211900360a01b910360601c1790565b634e487b7160e01b81526011600452602490fd5b60405162461bcd60e51b815260206004820152602260248201527f46756c6c4d6174683a20726573756c74206f766572666c6f77732075696e74326044820152611a9b60f11b6064820152608490fd5b5050505060601c90565b5f19600160601b8209918160601b91828085109403938085039414610cdd5783821115610be4578190600160601b9009811960018101809111610cc95782168092046002816003021880820260020302808202600203028082026002030280820260020302808202600203028091026002030293600183805f03040190848311900302920304170290565b634e487b7160e01b5f52601160045260245ffd5b5080925015610cea570490565b60405162461bcd60e51b815260206004820152601d60248201527f46756c6c4d6174683a2064656e6f6d696e61746f72206973207a65726f0000006044820152606490fdfea2646970667358221220bd04459e6f7df21b6a5f895da593d89a1b056e577bbb25682ab922d0618ceb9064736f6c634300081c0033",
|
|
306
|
+
"linkReferences": {},
|
|
307
|
+
"deployedLinkReferences": {}
|
|
308
|
+
}
|
|
@@ -0,0 +1,382 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "CurveOracle",
|
|
4
|
+
"sourceName": "contracts/DeviationSentinel/Oracles/CurveOracle.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "contract ResilientOracleInterface",
|
|
10
|
+
"name": "resilientOracle_",
|
|
11
|
+
"type": "address"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"stateMutability": "nonpayable",
|
|
15
|
+
"type": "constructor"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"inputs": [],
|
|
19
|
+
"name": "AssetMismatch",
|
|
20
|
+
"type": "error"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"inputs": [],
|
|
24
|
+
"name": "ReferenceMismatch",
|
|
25
|
+
"type": "error"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"inputs": [],
|
|
29
|
+
"name": "TokenNotConfigured",
|
|
30
|
+
"type": "error"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"inputs": [
|
|
34
|
+
{
|
|
35
|
+
"internalType": "address",
|
|
36
|
+
"name": "sender",
|
|
37
|
+
"type": "address"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"internalType": "address",
|
|
41
|
+
"name": "calledContract",
|
|
42
|
+
"type": "address"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"internalType": "string",
|
|
46
|
+
"name": "methodSignature",
|
|
47
|
+
"type": "string"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"name": "Unauthorized",
|
|
51
|
+
"type": "error"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"inputs": [],
|
|
55
|
+
"name": "ZeroAddress",
|
|
56
|
+
"type": "error"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"inputs": [],
|
|
60
|
+
"name": "ZeroPrice",
|
|
61
|
+
"type": "error"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"anonymous": false,
|
|
65
|
+
"inputs": [
|
|
66
|
+
{
|
|
67
|
+
"indexed": false,
|
|
68
|
+
"internalType": "uint8",
|
|
69
|
+
"name": "version",
|
|
70
|
+
"type": "uint8"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"name": "Initialized",
|
|
74
|
+
"type": "event"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"anonymous": false,
|
|
78
|
+
"inputs": [
|
|
79
|
+
{
|
|
80
|
+
"indexed": false,
|
|
81
|
+
"internalType": "address",
|
|
82
|
+
"name": "oldAccessControlManager",
|
|
83
|
+
"type": "address"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"indexed": false,
|
|
87
|
+
"internalType": "address",
|
|
88
|
+
"name": "newAccessControlManager",
|
|
89
|
+
"type": "address"
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
"name": "NewAccessControlManager",
|
|
93
|
+
"type": "event"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"anonymous": false,
|
|
97
|
+
"inputs": [
|
|
98
|
+
{
|
|
99
|
+
"indexed": true,
|
|
100
|
+
"internalType": "address",
|
|
101
|
+
"name": "previousOwner",
|
|
102
|
+
"type": "address"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"indexed": true,
|
|
106
|
+
"internalType": "address",
|
|
107
|
+
"name": "newOwner",
|
|
108
|
+
"type": "address"
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"name": "OwnershipTransferStarted",
|
|
112
|
+
"type": "event"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"anonymous": false,
|
|
116
|
+
"inputs": [
|
|
117
|
+
{
|
|
118
|
+
"indexed": true,
|
|
119
|
+
"internalType": "address",
|
|
120
|
+
"name": "previousOwner",
|
|
121
|
+
"type": "address"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"indexed": true,
|
|
125
|
+
"internalType": "address",
|
|
126
|
+
"name": "newOwner",
|
|
127
|
+
"type": "address"
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"name": "OwnershipTransferred",
|
|
131
|
+
"type": "event"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"anonymous": false,
|
|
135
|
+
"inputs": [
|
|
136
|
+
{
|
|
137
|
+
"indexed": true,
|
|
138
|
+
"internalType": "address",
|
|
139
|
+
"name": "token",
|
|
140
|
+
"type": "address"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"indexed": true,
|
|
144
|
+
"internalType": "address",
|
|
145
|
+
"name": "pool",
|
|
146
|
+
"type": "address"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"indexed": false,
|
|
150
|
+
"internalType": "uint8",
|
|
151
|
+
"name": "coinIndex",
|
|
152
|
+
"type": "uint8"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"indexed": false,
|
|
156
|
+
"internalType": "uint8",
|
|
157
|
+
"name": "refCoinIndex",
|
|
158
|
+
"type": "uint8"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"indexed": false,
|
|
162
|
+
"internalType": "address",
|
|
163
|
+
"name": "referenceToken",
|
|
164
|
+
"type": "address"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"indexed": false,
|
|
168
|
+
"internalType": "uint8",
|
|
169
|
+
"name": "assetDecimals",
|
|
170
|
+
"type": "uint8"
|
|
171
|
+
}
|
|
172
|
+
],
|
|
173
|
+
"name": "PoolConfigUpdated",
|
|
174
|
+
"type": "event"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"inputs": [],
|
|
178
|
+
"name": "RESILIENT_ORACLE",
|
|
179
|
+
"outputs": [
|
|
180
|
+
{
|
|
181
|
+
"internalType": "contract ResilientOracleInterface",
|
|
182
|
+
"name": "",
|
|
183
|
+
"type": "address"
|
|
184
|
+
}
|
|
185
|
+
],
|
|
186
|
+
"stateMutability": "view",
|
|
187
|
+
"type": "function"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"inputs": [],
|
|
191
|
+
"name": "acceptOwnership",
|
|
192
|
+
"outputs": [],
|
|
193
|
+
"stateMutability": "nonpayable",
|
|
194
|
+
"type": "function"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"inputs": [],
|
|
198
|
+
"name": "accessControlManager",
|
|
199
|
+
"outputs": [
|
|
200
|
+
{
|
|
201
|
+
"internalType": "contract IAccessControlManagerV8",
|
|
202
|
+
"name": "",
|
|
203
|
+
"type": "address"
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"stateMutability": "view",
|
|
207
|
+
"type": "function"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"inputs": [
|
|
211
|
+
{
|
|
212
|
+
"internalType": "address",
|
|
213
|
+
"name": "asset",
|
|
214
|
+
"type": "address"
|
|
215
|
+
}
|
|
216
|
+
],
|
|
217
|
+
"name": "getPrice",
|
|
218
|
+
"outputs": [
|
|
219
|
+
{
|
|
220
|
+
"internalType": "uint256",
|
|
221
|
+
"name": "price",
|
|
222
|
+
"type": "uint256"
|
|
223
|
+
}
|
|
224
|
+
],
|
|
225
|
+
"stateMutability": "view",
|
|
226
|
+
"type": "function"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"inputs": [
|
|
230
|
+
{
|
|
231
|
+
"internalType": "address",
|
|
232
|
+
"name": "accessControlManager_",
|
|
233
|
+
"type": "address"
|
|
234
|
+
}
|
|
235
|
+
],
|
|
236
|
+
"name": "initialize",
|
|
237
|
+
"outputs": [],
|
|
238
|
+
"stateMutability": "nonpayable",
|
|
239
|
+
"type": "function"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"inputs": [],
|
|
243
|
+
"name": "owner",
|
|
244
|
+
"outputs": [
|
|
245
|
+
{
|
|
246
|
+
"internalType": "address",
|
|
247
|
+
"name": "",
|
|
248
|
+
"type": "address"
|
|
249
|
+
}
|
|
250
|
+
],
|
|
251
|
+
"stateMutability": "view",
|
|
252
|
+
"type": "function"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"inputs": [],
|
|
256
|
+
"name": "pendingOwner",
|
|
257
|
+
"outputs": [
|
|
258
|
+
{
|
|
259
|
+
"internalType": "address",
|
|
260
|
+
"name": "",
|
|
261
|
+
"type": "address"
|
|
262
|
+
}
|
|
263
|
+
],
|
|
264
|
+
"stateMutability": "view",
|
|
265
|
+
"type": "function"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"inputs": [
|
|
269
|
+
{
|
|
270
|
+
"internalType": "address",
|
|
271
|
+
"name": "",
|
|
272
|
+
"type": "address"
|
|
273
|
+
}
|
|
274
|
+
],
|
|
275
|
+
"name": "poolConfigs",
|
|
276
|
+
"outputs": [
|
|
277
|
+
{
|
|
278
|
+
"internalType": "address",
|
|
279
|
+
"name": "pool",
|
|
280
|
+
"type": "address"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"internalType": "uint8",
|
|
284
|
+
"name": "coinIndex",
|
|
285
|
+
"type": "uint8"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"internalType": "uint8",
|
|
289
|
+
"name": "refCoinIndex",
|
|
290
|
+
"type": "uint8"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"internalType": "address",
|
|
294
|
+
"name": "referenceToken",
|
|
295
|
+
"type": "address"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"internalType": "uint8",
|
|
299
|
+
"name": "assetDecimals",
|
|
300
|
+
"type": "uint8"
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"stateMutability": "view",
|
|
304
|
+
"type": "function"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"inputs": [],
|
|
308
|
+
"name": "renounceOwnership",
|
|
309
|
+
"outputs": [],
|
|
310
|
+
"stateMutability": "nonpayable",
|
|
311
|
+
"type": "function"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"inputs": [
|
|
315
|
+
{
|
|
316
|
+
"internalType": "address",
|
|
317
|
+
"name": "accessControlManager_",
|
|
318
|
+
"type": "address"
|
|
319
|
+
}
|
|
320
|
+
],
|
|
321
|
+
"name": "setAccessControlManager",
|
|
322
|
+
"outputs": [],
|
|
323
|
+
"stateMutability": "nonpayable",
|
|
324
|
+
"type": "function"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"inputs": [
|
|
328
|
+
{
|
|
329
|
+
"internalType": "address",
|
|
330
|
+
"name": "token",
|
|
331
|
+
"type": "address"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"internalType": "address",
|
|
335
|
+
"name": "pool",
|
|
336
|
+
"type": "address"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"internalType": "uint8",
|
|
340
|
+
"name": "coinIndex",
|
|
341
|
+
"type": "uint8"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"internalType": "uint8",
|
|
345
|
+
"name": "refCoinIndex",
|
|
346
|
+
"type": "uint8"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"internalType": "address",
|
|
350
|
+
"name": "referenceToken",
|
|
351
|
+
"type": "address"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"internalType": "uint8",
|
|
355
|
+
"name": "assetDecimals",
|
|
356
|
+
"type": "uint8"
|
|
357
|
+
}
|
|
358
|
+
],
|
|
359
|
+
"name": "setPoolConfig",
|
|
360
|
+
"outputs": [],
|
|
361
|
+
"stateMutability": "nonpayable",
|
|
362
|
+
"type": "function"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"inputs": [
|
|
366
|
+
{
|
|
367
|
+
"internalType": "address",
|
|
368
|
+
"name": "newOwner",
|
|
369
|
+
"type": "address"
|
|
370
|
+
}
|
|
371
|
+
],
|
|
372
|
+
"name": "transferOwnership",
|
|
373
|
+
"outputs": [],
|
|
374
|
+
"stateMutability": "nonpayable",
|
|
375
|
+
"type": "function"
|
|
376
|
+
}
|
|
377
|
+
],
|
|
378
|
+
"bytecode": "0x60a03461012d57601f610ec338819003918201601f19168301916001600160401b038311848410176101315780849260209460405283398101031261012d57516001600160a01b03811680820361012d571561011e576080525f5460ff8160081c166100c95760ff8082160361008f575b604051610d7d9081610146823960805181818161037a01526109990152f35b60ff90811916175f557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160ff8152a15f610070565b60405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b6064820152608490fd5b63d92e233d60e01b5f5260045ffd5b5f80fd5b634e487b7160e01b5f52604160045260245ffdfe6080806040526004361015610012575f80fd5b5f3560e01c9081630792d51314610b25575080630e32cb8614610aa157806341976e091461087e578063715018a61461081957806379ba5097146107935780638da5cb5b1461076b57806392d8e433146103a9578063a4edcd4c14610365578063b4a0bdf31461033d578063c4d66de814610138578063e30c3978146101105763f2fde38b146100a0575f80fd5b3461010c57602036600319011261010c576100b9610b94565b6100c1610c07565b606580546001600160a01b0319166001600160a01b039283169081179091556033549091167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227005f80a3005b5f80fd5b3461010c575f36600319011261010c576065546040516001600160a01b039091168152602090f35b3461010c57602036600319011261010c57610151610b94565b5f5460ff8160081c161590818092610330575b8015610319575b156102bd5760ff1981166001175f55816102ac575b506101a360ff5f5460081c1661019581610ce7565b61019e81610ce7565b610ce7565b6101ac33610c70565b5f54916101be60ff8460081c16610ce7565b6001600160a01b031680156102595760407f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa09160975490806bffffffffffffffffffffffff60a01b83161760975582519160018060a01b031682526020820152a161022557005b61ff0019165f557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160018152a1005b60405162461bcd60e51b815260206004820152602560248201527f696e76616c696420616365737320636f6e74726f6c206d616e61676572206164604482015264647265737360d81b6064820152608490fd5b61ffff1916610101175f5582610180565b60405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b50303b15801561016b5750600160ff82161461016b565b50600160ff821610610164565b3461010c575f36600319011261010c576097546040516001600160a01b039091168152602090f35b3461010c575f36600319011261010c576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b3461010c5760c036600319011261010c576103c2610b94565b6024356001600160a01b038116919082900361010c5760443560ff811680910361010c5760643560ff811680910361010c576084356001600160a01b038116929083900361010c5760a4359360ff851680950361010c576040516060810181811067ffffffffffffffff82111761075757604052603881527f736574506f6f6c436f6e66696728616464726573732c616464726573732c756960208201527f6e74382c75696e74382c616464726573732c75696e7438290000000000000000604082015260018060a01b0360975416602060405180926318c5e8ab60e01b82523360048301526040602483015281806104be6044820188610cc3565b03915afa90811561068f575f9161071c575b50156106e757506001600160a01b031693841580156106df575b80156106d7575b6106c85760405163c661065760e01b8152600481018390526020816024818a5afa801561068f5786915f916106a9575b506001600160a01b03160361069a5760405163c661065760e01b8152600481018490526020816024818a5afa801561068f5785915f91610660575b506001600160a01b031603610651577fd6b51749928cb856613544155fa85db053a0fa4ade4e680610a7f966155eb4219360809361063960405161059f81610baa565b89815260208082018781526040808401868152606085018881528b86018a81525f8f815260c990965292909420945185549351915160a81b60ff60a81b166001600160b01b03199094166001600160a01b039182161760ff60a01b60a093841b811691909117949094178655935160019095018054925190911b909216939092166001600160a81b03199290921691909117919091179055565b604051938452602084015260408301526060820152a3005b633b98c10560e11b5f5260045ffd5b610682915060203d602011610688575b61067a8183610bc6565b810190610be8565b8861055c565b503d610670565b6040513d5f823e3d90fd5b6341e0808560e11b5f5260045ffd5b6106c2915060203d6020116106885761067a8183610bc6565b88610521565b63d92e233d60e01b5f5260045ffd5b5083156104f1565b5085156104ea565b604051634a3fa29360e01b815233600482015230602482015260606044820152908190610718906064830190610cc3565b0390fd5b90506020813d60201161074f575b8161073760209383610bc6565b8101031261010c5751801515810361010c57886104d0565b3d915061072a565b634e487b7160e01b5f52604160045260245ffd5b3461010c575f36600319011261010c576033546040516001600160a01b039091168152602090f35b3461010c575f36600319011261010c57606554336001600160a01b03909116036107c2576107c033610c70565b005b60405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608490fd5b3461010c575f36600319011261010c57610831610c07565b606580546001600160a01b03199081169091556033805491821690555f906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b3461010c57602036600319011261010c576001600160a01b0361089f610b94565b165f5260c960205260405f206040516108b781610baa565b81549060018060a01b038216908181526001602082019460ff8560a01c16865260ff604084019560a81c168552015492606082019260018060a01b038516845260ff608084019560a01c16855215610a9257606460ff8060209460018060a01b03905116975116600f0b925116600f0b9161093560ff875116610c5f565b966040519788948593635e0d443f60e01b85526004850152602484015260448301525afa92831561068f575f93610a5e575b508215610a4f57516040516341976e0960e01b81526001600160a01b03918216600482015290602090829060249082907f0000000000000000000000000000000000000000000000000000000000000000165afa90811561068f575f91610a1d575b5080830292830403610a095760ff6109e2915116610c5f565b9081156109f55760209160405191048152f35b634e487b7160e01b5f52601260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b90506020813d602011610a47575b81610a3860209383610bc6565b8101031261010c5751836109c9565b3d9150610a2b565b634dfba02360e01b5f5260045ffd5b9092506020813d602011610a8a575b81610a7a60209383610bc6565b8101031261010c57519183610967565b3d9150610a6d565b631d8730d160e31b5f5260045ffd5b3461010c57602036600319011261010c57610aba610b94565b610ac2610c07565b6001600160a01b031680156102595760407f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa09160975490806bffffffffffffffffffffffff60a01b83161760975582519160018060a01b031682526020820152a1005b3461010c57602036600319011261010c5760a0906001600160a01b03610b49610b94565b165f5260c960205260ff60405f20816001825492015491600180871b03811685528181871c16602086015260a81c166040840152600180851b0381166060840152831c166080820152f35b600435906001600160a01b038216820361010c57565b60a0810190811067ffffffffffffffff82111761075757604052565b90601f8019910116810190811067ffffffffffffffff82111761075757604052565b9081602091031261010c57516001600160a01b038116810361010c5790565b6033546001600160a01b03163303610c1b57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b60ff16604d8111610a0957600a0a90565b606580546001600160a01b0319908116909155603380549182166001600160a01b0393841690811790915591167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3565b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b15610cee57565b60405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fdfea264697066735822122032fcbd20a52eac52908054700f23346185b6823e8c81f440ab6f5f4ea8208a4464736f6c634300081c0033",
|
|
379
|
+
"deployedBytecode": "0x6080806040526004361015610012575f80fd5b5f3560e01c9081630792d51314610b25575080630e32cb8614610aa157806341976e091461087e578063715018a61461081957806379ba5097146107935780638da5cb5b1461076b57806392d8e433146103a9578063a4edcd4c14610365578063b4a0bdf31461033d578063c4d66de814610138578063e30c3978146101105763f2fde38b146100a0575f80fd5b3461010c57602036600319011261010c576100b9610b94565b6100c1610c07565b606580546001600160a01b0319166001600160a01b039283169081179091556033549091167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227005f80a3005b5f80fd5b3461010c575f36600319011261010c576065546040516001600160a01b039091168152602090f35b3461010c57602036600319011261010c57610151610b94565b5f5460ff8160081c161590818092610330575b8015610319575b156102bd5760ff1981166001175f55816102ac575b506101a360ff5f5460081c1661019581610ce7565b61019e81610ce7565b610ce7565b6101ac33610c70565b5f54916101be60ff8460081c16610ce7565b6001600160a01b031680156102595760407f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa09160975490806bffffffffffffffffffffffff60a01b83161760975582519160018060a01b031682526020820152a161022557005b61ff0019165f557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160018152a1005b60405162461bcd60e51b815260206004820152602560248201527f696e76616c696420616365737320636f6e74726f6c206d616e61676572206164604482015264647265737360d81b6064820152608490fd5b61ffff1916610101175f5582610180565b60405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b50303b15801561016b5750600160ff82161461016b565b50600160ff821610610164565b3461010c575f36600319011261010c576097546040516001600160a01b039091168152602090f35b3461010c575f36600319011261010c576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b3461010c5760c036600319011261010c576103c2610b94565b6024356001600160a01b038116919082900361010c5760443560ff811680910361010c5760643560ff811680910361010c576084356001600160a01b038116929083900361010c5760a4359360ff851680950361010c576040516060810181811067ffffffffffffffff82111761075757604052603881527f736574506f6f6c436f6e66696728616464726573732c616464726573732c756960208201527f6e74382c75696e74382c616464726573732c75696e7438290000000000000000604082015260018060a01b0360975416602060405180926318c5e8ab60e01b82523360048301526040602483015281806104be6044820188610cc3565b03915afa90811561068f575f9161071c575b50156106e757506001600160a01b031693841580156106df575b80156106d7575b6106c85760405163c661065760e01b8152600481018390526020816024818a5afa801561068f5786915f916106a9575b506001600160a01b03160361069a5760405163c661065760e01b8152600481018490526020816024818a5afa801561068f5785915f91610660575b506001600160a01b031603610651577fd6b51749928cb856613544155fa85db053a0fa4ade4e680610a7f966155eb4219360809361063960405161059f81610baa565b89815260208082018781526040808401868152606085018881528b86018a81525f8f815260c990965292909420945185549351915160a81b60ff60a81b166001600160b01b03199094166001600160a01b039182161760ff60a01b60a093841b811691909117949094178655935160019095018054925190911b909216939092166001600160a81b03199290921691909117919091179055565b604051938452602084015260408301526060820152a3005b633b98c10560e11b5f5260045ffd5b610682915060203d602011610688575b61067a8183610bc6565b810190610be8565b8861055c565b503d610670565b6040513d5f823e3d90fd5b6341e0808560e11b5f5260045ffd5b6106c2915060203d6020116106885761067a8183610bc6565b88610521565b63d92e233d60e01b5f5260045ffd5b5083156104f1565b5085156104ea565b604051634a3fa29360e01b815233600482015230602482015260606044820152908190610718906064830190610cc3565b0390fd5b90506020813d60201161074f575b8161073760209383610bc6565b8101031261010c5751801515810361010c57886104d0565b3d915061072a565b634e487b7160e01b5f52604160045260245ffd5b3461010c575f36600319011261010c576033546040516001600160a01b039091168152602090f35b3461010c575f36600319011261010c57606554336001600160a01b03909116036107c2576107c033610c70565b005b60405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608490fd5b3461010c575f36600319011261010c57610831610c07565b606580546001600160a01b03199081169091556033805491821690555f906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b3461010c57602036600319011261010c576001600160a01b0361089f610b94565b165f5260c960205260405f206040516108b781610baa565b81549060018060a01b038216908181526001602082019460ff8560a01c16865260ff604084019560a81c168552015492606082019260018060a01b038516845260ff608084019560a01c16855215610a9257606460ff8060209460018060a01b03905116975116600f0b925116600f0b9161093560ff875116610c5f565b966040519788948593635e0d443f60e01b85526004850152602484015260448301525afa92831561068f575f93610a5e575b508215610a4f57516040516341976e0960e01b81526001600160a01b03918216600482015290602090829060249082907f0000000000000000000000000000000000000000000000000000000000000000165afa90811561068f575f91610a1d575b5080830292830403610a095760ff6109e2915116610c5f565b9081156109f55760209160405191048152f35b634e487b7160e01b5f52601260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b90506020813d602011610a47575b81610a3860209383610bc6565b8101031261010c5751836109c9565b3d9150610a2b565b634dfba02360e01b5f5260045ffd5b9092506020813d602011610a8a575b81610a7a60209383610bc6565b8101031261010c57519183610967565b3d9150610a6d565b631d8730d160e31b5f5260045ffd5b3461010c57602036600319011261010c57610aba610b94565b610ac2610c07565b6001600160a01b031680156102595760407f66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa09160975490806bffffffffffffffffffffffff60a01b83161760975582519160018060a01b031682526020820152a1005b3461010c57602036600319011261010c5760a0906001600160a01b03610b49610b94565b165f5260c960205260ff60405f20816001825492015491600180871b03811685528181871c16602086015260a81c166040840152600180851b0381166060840152831c166080820152f35b600435906001600160a01b038216820361010c57565b60a0810190811067ffffffffffffffff82111761075757604052565b90601f8019910116810190811067ffffffffffffffff82111761075757604052565b9081602091031261010c57516001600160a01b038116810361010c5790565b6033546001600160a01b03163303610c1b57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b60ff16604d8111610a0957600a0a90565b606580546001600160a01b0319908116909155603380549182166001600160a01b0393841690811790915591167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3565b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b15610cee57565b60405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fdfea264697066735822122032fcbd20a52eac52908054700f23346185b6823e8c81f440ab6f5f4ea8208a4464736f6c634300081c0033",
|
|
380
|
+
"linkReferences": {},
|
|
381
|
+
"deployedLinkReferences": {}
|
|
382
|
+
}
|
package/artifacts/contracts/Interfaces/IAerodromeSlipstreamPool.sol/IAerodromeSlipstreamPool.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "IAerodromeSlipstreamPool",
|
|
4
|
+
"sourceName": "contracts/Interfaces/IAerodromeSlipstreamPool.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"name": "slot0",
|
|
9
|
+
"outputs": [
|
|
10
|
+
{
|
|
11
|
+
"internalType": "uint160",
|
|
12
|
+
"name": "sqrtPriceX96",
|
|
13
|
+
"type": "uint160"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"internalType": "int24",
|
|
17
|
+
"name": "tick",
|
|
18
|
+
"type": "int24"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"internalType": "uint16",
|
|
22
|
+
"name": "observationIndex",
|
|
23
|
+
"type": "uint16"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"internalType": "uint16",
|
|
27
|
+
"name": "observationCardinality",
|
|
28
|
+
"type": "uint16"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"internalType": "uint16",
|
|
32
|
+
"name": "observationCardinalityNext",
|
|
33
|
+
"type": "uint16"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"internalType": "bool",
|
|
37
|
+
"name": "unlocked",
|
|
38
|
+
"type": "bool"
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"stateMutability": "view",
|
|
42
|
+
"type": "function"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"inputs": [],
|
|
46
|
+
"name": "token0",
|
|
47
|
+
"outputs": [
|
|
48
|
+
{
|
|
49
|
+
"internalType": "address",
|
|
50
|
+
"name": "",
|
|
51
|
+
"type": "address"
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"stateMutability": "view",
|
|
55
|
+
"type": "function"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"inputs": [],
|
|
59
|
+
"name": "token1",
|
|
60
|
+
"outputs": [
|
|
61
|
+
{
|
|
62
|
+
"internalType": "address",
|
|
63
|
+
"name": "",
|
|
64
|
+
"type": "address"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"stateMutability": "view",
|
|
68
|
+
"type": "function"
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"bytecode": "0x",
|
|
72
|
+
"deployedBytecode": "0x",
|
|
73
|
+
"linkReferences": {},
|
|
74
|
+
"deployedLinkReferences": {}
|
|
75
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "ICurveStableSwapNG",
|
|
4
|
+
"sourceName": "contracts/Interfaces/ICurveStableSwapNG.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "uint256",
|
|
10
|
+
"name": "k",
|
|
11
|
+
"type": "uint256"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"name": "coins",
|
|
15
|
+
"outputs": [
|
|
16
|
+
{
|
|
17
|
+
"internalType": "address",
|
|
18
|
+
"name": "",
|
|
19
|
+
"type": "address"
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"stateMutability": "view",
|
|
23
|
+
"type": "function"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"inputs": [
|
|
27
|
+
{
|
|
28
|
+
"internalType": "int128",
|
|
29
|
+
"name": "i",
|
|
30
|
+
"type": "int128"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"internalType": "int128",
|
|
34
|
+
"name": "j",
|
|
35
|
+
"type": "int128"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"internalType": "uint256",
|
|
39
|
+
"name": "dx",
|
|
40
|
+
"type": "uint256"
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"name": "get_dy",
|
|
44
|
+
"outputs": [
|
|
45
|
+
{
|
|
46
|
+
"internalType": "uint256",
|
|
47
|
+
"name": "",
|
|
48
|
+
"type": "uint256"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"stateMutability": "view",
|
|
52
|
+
"type": "function"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"bytecode": "0x",
|
|
56
|
+
"deployedBytecode": "0x",
|
|
57
|
+
"linkReferences": {},
|
|
58
|
+
"deployedLinkReferences": {}
|
|
59
|
+
}
|
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arbitrumone",
|
|
3
3
|
"chainId": "42161",
|
|
4
|
-
"addresses": {
|
|
4
|
+
"addresses": {
|
|
5
|
+
"DefaultProxyAdmin": "0x9fa1031e7f9578e9D4A260CF0dF79D4540CD1836",
|
|
6
|
+
"DeviationSentinel": "0xb4CC54B33d34fD809E8fBD83A066158591ED7Fba",
|
|
7
|
+
"DeviationSentinel_Implementation": "0xfbF5D98185d0B02f136CD523B3596CcC713CD19a",
|
|
8
|
+
"DeviationSentinel_Proxy": "0xb4CC54B33d34fD809E8fBD83A066158591ED7Fba",
|
|
9
|
+
"EBrake": "0xFc4CE7Ca9BB5119705Cfb84d6e4476e8a4032b26",
|
|
10
|
+
"EBrake_Implementation": "0x99d41774E679588D82C7045324Bde8DfF97773b9",
|
|
11
|
+
"EBrake_Proxy": "0xFc4CE7Ca9BB5119705Cfb84d6e4476e8a4032b26",
|
|
12
|
+
"PancakeSwapOracle": "0x3Fd56a3Ad5aC85D1502988323386C68B2ed9366B",
|
|
13
|
+
"PancakeSwapOracle_Implementation": "0xfF7cc5E5D9EAC50636b080F4ef964f1b07319D7b",
|
|
14
|
+
"PancakeSwapOracle_Proxy": "0x3Fd56a3Ad5aC85D1502988323386C68B2ed9366B",
|
|
15
|
+
"SentinelOracle": "0x3563CAbc541a0432C66A64942ffB4070a9726226",
|
|
16
|
+
"SentinelOracle_Implementation": "0x105bE25abd5D3d940690F7c4524Dd88e876294aa",
|
|
17
|
+
"SentinelOracle_Proxy": "0x3563CAbc541a0432C66A64942ffB4070a9726226",
|
|
18
|
+
"UniswapOracle": "0xB6CFbfe6834EF519f002DBc1a8B81Ea437Ca647D",
|
|
19
|
+
"UniswapOracle_Implementation": "0x59f7a0F122B94a4282f2E374B6D4e15d5123E9dB",
|
|
20
|
+
"UniswapOracle_Proxy": "0xB6CFbfe6834EF519f002DBc1a8B81Ea437Ca647D"
|
|
21
|
+
}
|
|
5
22
|
}
|
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "basemainnet",
|
|
3
3
|
"chainId": "8453",
|
|
4
|
-
"addresses": {
|
|
4
|
+
"addresses": {
|
|
5
|
+
"AerodromeSlipstreamOracle": "0x5DE0B322A74088fD64CDD01042BE2fBc47FE82EC",
|
|
6
|
+
"AerodromeSlipstreamOracle_Implementation": "0xA90D81ef3C13C98E1fAAC32dc75C3ec5bFe223C5",
|
|
7
|
+
"AerodromeSlipstreamOracle_Proxy": "0x5DE0B322A74088fD64CDD01042BE2fBc47FE82EC",
|
|
8
|
+
"DefaultProxyAdmin": "0x70d73Ee950F2436483b6E410915CB53D473f6EB1",
|
|
9
|
+
"DeviationSentinel": "0x12D09d5b13A673269cdB624D17A42f45a5233076",
|
|
10
|
+
"DeviationSentinel_Implementation": "0xC782fE421CD24F1D6067b0EBe291725E4806dcCA",
|
|
11
|
+
"DeviationSentinel_Proxy": "0x12D09d5b13A673269cdB624D17A42f45a5233076",
|
|
12
|
+
"EBrake": "0x062C68Af7B9Fb059DCB7FA4B6b92E633350fb7c2",
|
|
13
|
+
"EBrake_Implementation": "0x2013F372eb0d0D047cDb66b298999FDDa78a50FA",
|
|
14
|
+
"EBrake_Proxy": "0x062C68Af7B9Fb059DCB7FA4B6b92E633350fb7c2",
|
|
15
|
+
"PancakeSwapOracle": "0x0512FD9052b601436478c086D36e62E3F0EB29C1",
|
|
16
|
+
"PancakeSwapOracle_Implementation": "0xFE884bda4b1062cE4C86DDBDf967cCBcb8FCFF5a",
|
|
17
|
+
"PancakeSwapOracle_Proxy": "0x0512FD9052b601436478c086D36e62E3F0EB29C1",
|
|
18
|
+
"SentinelOracle": "0xCdD6D79Fd313C21967CED04C1b8bE70BDc27574D",
|
|
19
|
+
"SentinelOracle_Implementation": "0xD64BFfc053c8de9b2f63A209a9DbfF446691F945",
|
|
20
|
+
"SentinelOracle_Proxy": "0xCdD6D79Fd313C21967CED04C1b8bE70BDc27574D",
|
|
21
|
+
"UniswapOracle": "0xc3b5169a7d5f6341403c74187Db3C4Fe6d447762",
|
|
22
|
+
"UniswapOracle_Implementation": "0x06055f21DB20aCFE018A7a5F0a529A2Bb8b26AE8",
|
|
23
|
+
"UniswapOracle_Proxy": "0xc3b5169a7d5f6341403c74187Db3C4Fe6d447762"
|
|
24
|
+
}
|
|
5
25
|
}
|
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ethereum",
|
|
3
3
|
"chainId": "1",
|
|
4
|
-
"addresses": {
|
|
4
|
+
"addresses": {
|
|
5
|
+
"CurveOracle": "0x9F508F3146cb03276282f9237c6eE64f76E3261D",
|
|
6
|
+
"CurveOracle_Implementation": "0x8c30d8d659E7dF0F39f0f0AdF7589dB79449F404",
|
|
7
|
+
"CurveOracle_Proxy": "0x9F508F3146cb03276282f9237c6eE64f76E3261D",
|
|
8
|
+
"DefaultProxyAdmin": "0xA6a4E5196Fa108008b68fE6D6629D508C902D61c",
|
|
9
|
+
"DeviationSentinel": "0x7D0EFA41eBF1aF242A37174E1E047bD6ea1b1B9c",
|
|
10
|
+
"DeviationSentinel_Implementation": "0x98a0b21Ac3544F968fF212CC381B0311376278b3",
|
|
11
|
+
"DeviationSentinel_Proxy": "0x7D0EFA41eBF1aF242A37174E1E047bD6ea1b1B9c",
|
|
12
|
+
"EBrake": "0xCD09042c5DFFed762998Df9a058ec5944e39949B",
|
|
13
|
+
"EBrake_Implementation": "0x511a559a699cBd665546a1F75908f7E9454Bfc67",
|
|
14
|
+
"EBrake_Proxy": "0xCD09042c5DFFed762998Df9a058ec5944e39949B",
|
|
15
|
+
"PancakeSwapOracle": "0xCCB08e5107b406E67Ad8356023dd489CEbc79B40",
|
|
16
|
+
"PancakeSwapOracle_Implementation": "0xCFcC918275c35b21227405ec41fcD2D2643DF534",
|
|
17
|
+
"PancakeSwapOracle_Proxy": "0xCCB08e5107b406E67Ad8356023dd489CEbc79B40",
|
|
18
|
+
"SentinelOracle": "0x444C53E194B40c272fAd683210e2cB1c16Ab132e",
|
|
19
|
+
"SentinelOracle_Implementation": "0x5822Ba5f3f71C590c8e6CB131fB779CE5B8A3653",
|
|
20
|
+
"SentinelOracle_Proxy": "0x444C53E194B40c272fAd683210e2cB1c16Ab132e",
|
|
21
|
+
"UniswapOracle": "0x873993F8f5f5Ddbae0952e939ab3005Af363Af00",
|
|
22
|
+
"UniswapOracle_Implementation": "0xC6642B61293ffe794C2376f50bE521361E36cdd6",
|
|
23
|
+
"UniswapOracle_Proxy": "0x873993F8f5f5Ddbae0952e939ab3005Af363Af00"
|
|
24
|
+
}
|
|
5
25
|
}
|
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sepolia",
|
|
3
3
|
"chainId": "11155111",
|
|
4
|
-
"addresses": {
|
|
4
|
+
"addresses": {
|
|
5
|
+
"DefaultProxyAdmin": "0x267D57825B19eDB6343970656f9D19445eDebF67",
|
|
6
|
+
"DeviationSentinel": "0x3a22AA95998a6c5f57e86E24fEA1503452Bdfa39",
|
|
7
|
+
"DeviationSentinel_Implementation": "0xd549FE682310B47b8FA879c1cE5fb7FB85D42606",
|
|
8
|
+
"DeviationSentinel_Proxy": "0x3a22AA95998a6c5f57e86E24fEA1503452Bdfa39",
|
|
9
|
+
"EBrake": "0x44784FBa07b5199a7a21C8A8E4a50c45137227BC",
|
|
10
|
+
"EBrake_Implementation": "0xcFf74896eA14cA3bf308A6A7243fd5BA48dd886d",
|
|
11
|
+
"EBrake_Proxy": "0x44784FBa07b5199a7a21C8A8E4a50c45137227BC",
|
|
12
|
+
"SentinelOracle": "0xb5A87b6738C1cB2f1a1Acae8c49DbE32f8034CA5",
|
|
13
|
+
"SentinelOracle_Implementation": "0xC99f5544fe6452E0c635EA2F80E09F9484e05114",
|
|
14
|
+
"SentinelOracle_Proxy": "0xb5A87b6738C1cB2f1a1Acae8c49DbE32f8034CA5"
|
|
15
|
+
}
|
|
5
16
|
}
|