@augustdigital/sdk 4.15.5-alpha.0 → 4.17.0-alpha.0
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/lib/abis/AddressResolver.d.ts +28 -40
- package/lib/abis/ChainlinkV3.d.ts +83 -109
- package/lib/abis/ERC20.d.ts +137 -191
- package/lib/abis/ERC20_Bytes32.d.ts +125 -178
- package/lib/abis/ERC4626.d.ts +341 -480
- package/lib/abis/ERC721.d.ts +213 -299
- package/lib/abis/FeeOracle.d.ts +112 -149
- package/lib/abis/LendingPool.d.ts +1293 -1702
- package/lib/abis/LendingPoolV2.d.ts +37 -42
- package/lib/abis/LendingPoolV3.d.ts +25 -29
- package/lib/abis/Loan.d.ts +768 -1007
- package/lib/abis/Multicall3.d.ts +30 -43
- package/lib/abis/PoolAdapter.d.ts +35 -46
- package/lib/abis/RewardDistributor.d.ts +33 -38
- package/lib/abis/SmartAccount.d.ts +16 -23
- package/lib/abis/TextResolver.d.ts +16 -23
- package/lib/abis/TokenizedVaultV2.d.ts +1292 -1684
- package/lib/abis/TokenizedVaultV2DepositWithPermit.d.ts +55 -62
- package/lib/abis/TokenizedVaultV2Receipt.d.ts +1463 -1934
- package/lib/abis/TokenizedVaultV2WhitelistedAssets.d.ts +250 -333
- package/lib/abis/UniversalResolverResolve.d.ts +69 -97
- package/lib/abis/UniversalSignatureValidator.d.ts +17 -23
- package/lib/abis/WrapperAdapter.d.ts +67 -89
- package/lib/adapters/evm/getters.d.ts +2 -8
- package/lib/adapters/evm/index.d.ts +15 -19
- package/lib/adapters/evm/utils.d.ts +2 -12
- package/lib/adapters/solana/constants.d.ts +17 -23
- package/lib/adapters/solana/getters.d.ts +1 -4
- package/lib/adapters/solana/idl/vault-idl.d.ts +279 -340
- package/lib/adapters/solana/index.d.ts +116 -212
- package/lib/adapters/solana/types.d.ts +50 -50
- package/lib/adapters/solana/utils.d.ts +78 -139
- package/lib/adapters/solana/vault.actions.d.ts +12 -37
- package/lib/adapters/sui/constants.d.ts +9 -9
- package/lib/adapters/sui/constants.js +8 -1
- package/lib/adapters/sui/constants.js.map +1 -1
- package/lib/adapters/sui/getters.d.ts +1 -3
- package/lib/adapters/sui/index.d.ts +21 -29
- package/lib/adapters/sui/transformer.d.ts +2 -6
- package/lib/adapters/sui/types.d.ts +56 -56
- package/lib/adapters/sui/utils.d.ts +1 -4
- package/lib/core/analytics/constants.d.ts +12 -0
- package/lib/core/analytics/constants.js +49 -0
- package/lib/core/analytics/constants.js.map +1 -0
- package/lib/core/analytics/index.d.ts +6 -0
- package/lib/core/analytics/index.js +31 -0
- package/lib/core/analytics/index.js.map +1 -0
- package/lib/core/analytics/instrumentation.d.ts +2 -0
- package/lib/core/analytics/instrumentation.js +150 -0
- package/lib/core/analytics/instrumentation.js.map +1 -0
- package/lib/core/analytics/metrics.d.ts +12 -0
- package/lib/core/analytics/metrics.js +133 -0
- package/lib/core/analytics/metrics.js.map +1 -0
- package/lib/core/analytics/sentry.d.ts +9 -0
- package/lib/core/analytics/sentry.js +166 -0
- package/lib/core/analytics/sentry.js.map +1 -0
- package/lib/core/analytics/types.d.ts +21 -0
- package/lib/core/analytics/types.js +3 -0
- package/lib/core/analytics/types.js.map +1 -0
- package/lib/core/analytics/user-identity.d.ts +8 -0
- package/lib/core/analytics/user-identity.js +82 -0
- package/lib/core/analytics/user-identity.js.map +1 -0
- package/lib/core/analytics/version.d.ts +1 -0
- package/lib/core/analytics/version.js +5 -0
- package/lib/core/analytics/version.js.map +1 -0
- package/lib/core/base.class.d.ts +25 -30
- package/lib/core/base.class.js +5 -1
- package/lib/core/base.class.js.map +1 -1
- package/lib/core/constants/adapters.d.ts +83 -111
- package/lib/core/constants/core.d.ts +69 -76
- package/lib/core/constants/vaults.d.ts +5 -63
- package/lib/core/constants/vaults.js +3 -3
- package/lib/core/constants/vaults.js.map +1 -1
- package/lib/core/constants/web3.d.ts +18 -19
- package/lib/core/fetcher.d.ts +17 -71
- package/lib/core/fetcher.js +20 -2
- package/lib/core/fetcher.js.map +1 -1
- package/lib/core/helpers/adapters.d.ts +2 -7
- package/lib/core/helpers/core.d.ts +8 -33
- package/lib/core/helpers/signer.d.ts +2 -6
- package/lib/core/helpers/vaults.d.ts +15 -38
- package/lib/core/helpers/web3.d.ts +19 -87
- package/lib/core/index.d.ts +1 -0
- package/lib/core/index.js +1 -0
- package/lib/core/index.js.map +1 -1
- package/lib/core/logger/index.d.ts +11 -11
- package/lib/core/logger/slack.d.ts +8 -9
- package/lib/index.d.ts +1 -61
- package/lib/main.d.ts +141 -158
- package/lib/main.js +3 -0
- package/lib/main.js.map +1 -1
- package/lib/modules/vaults/adapter.helpers.d.ts +38 -72
- package/lib/modules/vaults/fetcher.d.ts +69 -85
- package/lib/modules/vaults/getters.d.ts +100 -205
- package/lib/modules/vaults/index.d.ts +1 -6
- package/lib/modules/vaults/main.d.ts +131 -224
- package/lib/modules/vaults/main.js +8 -1
- package/lib/modules/vaults/main.js.map +1 -1
- package/lib/modules/vaults/read.actions.d.ts +2 -8
- package/lib/modules/vaults/utils.d.ts +19 -55
- package/lib/modules/vaults/write.actions.d.ts +14 -26
- package/lib/services/coingecko/fetcher.d.ts +1 -4
- package/lib/services/debank/fetcher.d.ts +1 -4
- package/lib/services/debank/utils.d.ts +27 -38
- package/lib/services/octavfi/fetcher.d.ts +1 -3
- package/lib/services/octavfi/types.d.ts +24 -24
- package/lib/services/octavfi/utils.d.ts +2 -6
- package/lib/services/subgraph/fetcher.d.ts +2 -12
- package/lib/services/subgraph/vaults.d.ts +9 -42
- package/lib/types/points.d.ts +26 -35
- package/lib/types/pools.d.ts +112 -149
- package/lib/types/staking.d.ts +25 -25
- package/lib/types/subgraph.d.ts +33 -33
- package/lib/types/vaults.d.ts +219 -232
- package/lib/types/web3.d.ts +9 -9
- package/lib/types/webserver.d.ts +448 -466
- package/package.json +16 -13
|
@@ -1,357 +1,274 @@
|
|
|
1
|
-
export declare const ABI_TOKENIZED_VAULT_V2_WHITELISTED_ASSETS: readonly [
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
readonly
|
|
6
|
-
|
|
7
|
-
readonly
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
];
|
|
15
|
-
readonly stateMutability: 'nonpayable';
|
|
16
|
-
readonly type: 'constructor';
|
|
17
|
-
},
|
|
18
|
-
{
|
|
1
|
+
export declare const ABI_TOKENIZED_VAULT_V2_WHITELISTED_ASSETS: readonly [{
|
|
2
|
+
readonly inputs: readonly [{
|
|
3
|
+
readonly internalType: "address";
|
|
4
|
+
readonly name: "ownerAddr";
|
|
5
|
+
readonly type: "address";
|
|
6
|
+
}, {
|
|
7
|
+
readonly internalType: "address";
|
|
8
|
+
readonly name: "referenceAssetAddr";
|
|
9
|
+
readonly type: "address";
|
|
10
|
+
}];
|
|
11
|
+
readonly stateMutability: "nonpayable";
|
|
12
|
+
readonly type: "constructor";
|
|
13
|
+
}, {
|
|
19
14
|
readonly inputs: readonly [];
|
|
20
|
-
readonly name:
|
|
21
|
-
readonly type:
|
|
22
|
-
|
|
23
|
-
{
|
|
15
|
+
readonly name: "AssetAlreadyEnabled";
|
|
16
|
+
readonly type: "error";
|
|
17
|
+
}, {
|
|
24
18
|
readonly inputs: readonly [];
|
|
25
|
-
readonly name:
|
|
26
|
-
readonly type:
|
|
27
|
-
|
|
28
|
-
{
|
|
19
|
+
readonly name: "InvalidAddress";
|
|
20
|
+
readonly type: "error";
|
|
21
|
+
}, {
|
|
29
22
|
readonly inputs: readonly [];
|
|
30
|
-
readonly name:
|
|
31
|
-
readonly type:
|
|
32
|
-
|
|
33
|
-
{
|
|
23
|
+
readonly name: "InvalidDecimalPlaces";
|
|
24
|
+
readonly type: "error";
|
|
25
|
+
}, {
|
|
34
26
|
readonly inputs: readonly [];
|
|
35
|
-
readonly name:
|
|
36
|
-
readonly type:
|
|
37
|
-
|
|
38
|
-
{
|
|
27
|
+
readonly name: "InvalidOraclePrice";
|
|
28
|
+
readonly type: "error";
|
|
29
|
+
}, {
|
|
39
30
|
readonly inputs: readonly [];
|
|
40
|
-
readonly name:
|
|
41
|
-
readonly type:
|
|
42
|
-
|
|
43
|
-
{
|
|
31
|
+
readonly name: "InvalidOracleTimestamp";
|
|
32
|
+
readonly type: "error";
|
|
33
|
+
}, {
|
|
44
34
|
readonly inputs: readonly [];
|
|
45
|
-
readonly name:
|
|
46
|
-
readonly type:
|
|
47
|
-
|
|
48
|
-
{
|
|
35
|
+
readonly name: "InvalidTimePeriod";
|
|
36
|
+
readonly type: "error";
|
|
37
|
+
}, {
|
|
49
38
|
readonly inputs: readonly [];
|
|
50
|
-
readonly name:
|
|
51
|
-
readonly type:
|
|
52
|
-
|
|
53
|
-
{
|
|
39
|
+
readonly name: "OwnerAddressRequired";
|
|
40
|
+
readonly type: "error";
|
|
41
|
+
}, {
|
|
54
42
|
readonly inputs: readonly [];
|
|
55
|
-
readonly name:
|
|
56
|
-
readonly type:
|
|
57
|
-
|
|
58
|
-
{
|
|
43
|
+
readonly name: "OwnerOnly";
|
|
44
|
+
readonly type: "error";
|
|
45
|
+
}, {
|
|
59
46
|
readonly inputs: readonly [];
|
|
60
|
-
readonly name:
|
|
61
|
-
readonly type:
|
|
62
|
-
|
|
63
|
-
{
|
|
47
|
+
readonly name: "ReentrancyGuardReentrantCall";
|
|
48
|
+
readonly type: "error";
|
|
49
|
+
}, {
|
|
64
50
|
readonly inputs: readonly [];
|
|
65
|
-
readonly name:
|
|
66
|
-
readonly type:
|
|
67
|
-
|
|
68
|
-
{
|
|
51
|
+
readonly name: "ReferenceAssetNotPermitted";
|
|
52
|
+
readonly type: "error";
|
|
53
|
+
}, {
|
|
69
54
|
readonly inputs: readonly [];
|
|
70
|
-
readonly name:
|
|
71
|
-
readonly type:
|
|
72
|
-
|
|
73
|
-
{
|
|
55
|
+
readonly name: "RoundNotComplete";
|
|
56
|
+
readonly type: "error";
|
|
57
|
+
}, {
|
|
74
58
|
readonly inputs: readonly [];
|
|
75
|
-
readonly name:
|
|
76
|
-
readonly type:
|
|
77
|
-
|
|
78
|
-
{
|
|
59
|
+
readonly name: "StalePrice";
|
|
60
|
+
readonly type: "error";
|
|
61
|
+
}, {
|
|
79
62
|
readonly inputs: readonly [];
|
|
80
|
-
readonly name:
|
|
81
|
-
readonly type:
|
|
82
|
-
|
|
83
|
-
{
|
|
63
|
+
readonly name: "WhitelistLimitReached";
|
|
64
|
+
readonly type: "error";
|
|
65
|
+
}, {
|
|
84
66
|
readonly inputs: readonly [];
|
|
85
|
-
readonly name:
|
|
86
|
-
readonly type:
|
|
87
|
-
|
|
88
|
-
{
|
|
67
|
+
readonly name: "ZeroAddressError";
|
|
68
|
+
readonly type: "error";
|
|
69
|
+
}, {
|
|
89
70
|
readonly anonymous: false;
|
|
90
|
-
readonly inputs: readonly [
|
|
91
|
-
{
|
|
71
|
+
readonly inputs: readonly [{
|
|
92
72
|
readonly indexed: true;
|
|
93
|
-
readonly internalType:
|
|
94
|
-
readonly name:
|
|
95
|
-
readonly type:
|
|
96
|
-
|
|
97
|
-
{
|
|
73
|
+
readonly internalType: "address";
|
|
74
|
+
readonly name: "previousOwner";
|
|
75
|
+
readonly type: "address";
|
|
76
|
+
}, {
|
|
98
77
|
readonly indexed: true;
|
|
99
|
-
readonly internalType:
|
|
100
|
-
readonly name:
|
|
101
|
-
readonly type:
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
readonly
|
|
105
|
-
|
|
106
|
-
},
|
|
107
|
-
{
|
|
78
|
+
readonly internalType: "address";
|
|
79
|
+
readonly name: "newOwner";
|
|
80
|
+
readonly type: "address";
|
|
81
|
+
}];
|
|
82
|
+
readonly name: "OwnershipTransferred";
|
|
83
|
+
readonly type: "event";
|
|
84
|
+
}, {
|
|
108
85
|
readonly inputs: readonly [];
|
|
109
|
-
readonly name:
|
|
110
|
-
readonly outputs: readonly [
|
|
111
|
-
|
|
112
|
-
readonly
|
|
113
|
-
readonly
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
readonly type: 'function';
|
|
119
|
-
},
|
|
120
|
-
{
|
|
86
|
+
readonly name: "REFERENCE_ASSET";
|
|
87
|
+
readonly outputs: readonly [{
|
|
88
|
+
readonly internalType: "address";
|
|
89
|
+
readonly name: "";
|
|
90
|
+
readonly type: "address";
|
|
91
|
+
}];
|
|
92
|
+
readonly stateMutability: "view";
|
|
93
|
+
readonly type: "function";
|
|
94
|
+
}, {
|
|
121
95
|
readonly inputs: readonly [];
|
|
122
|
-
readonly name:
|
|
123
|
-
readonly outputs: readonly [
|
|
124
|
-
|
|
125
|
-
readonly
|
|
126
|
-
readonly
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
readonly
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
readonly internalType:
|
|
137
|
-
readonly name:
|
|
138
|
-
readonly type:
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
readonly
|
|
142
|
-
readonly
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
readonly
|
|
147
|
-
|
|
148
|
-
readonly
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
readonly
|
|
157
|
-
|
|
158
|
-
readonly
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
readonly
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
readonly
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
readonly
|
|
171
|
-
readonly
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
readonly
|
|
179
|
-
{
|
|
180
|
-
readonly internalType: 'address';
|
|
181
|
-
readonly name: 'assetAddr';
|
|
182
|
-
readonly type: 'address';
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
readonly internalType: 'address';
|
|
186
|
-
readonly name: 'oracleAddr';
|
|
187
|
-
readonly type: 'address';
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
readonly internalType: 'uint256';
|
|
191
|
-
readonly name: 'newOracleDuration';
|
|
192
|
-
readonly type: 'uint256';
|
|
193
|
-
},
|
|
194
|
-
];
|
|
195
|
-
readonly name: 'enableAsset';
|
|
96
|
+
readonly name: "REFERENCE_ASSET_DECIMALS";
|
|
97
|
+
readonly outputs: readonly [{
|
|
98
|
+
readonly internalType: "uint8";
|
|
99
|
+
readonly name: "";
|
|
100
|
+
readonly type: "uint8";
|
|
101
|
+
}];
|
|
102
|
+
readonly stateMutability: "view";
|
|
103
|
+
readonly type: "function";
|
|
104
|
+
}, {
|
|
105
|
+
readonly inputs: readonly [{
|
|
106
|
+
readonly internalType: "address";
|
|
107
|
+
readonly name: "lpTokenAddress";
|
|
108
|
+
readonly type: "address";
|
|
109
|
+
}, {
|
|
110
|
+
readonly internalType: "address";
|
|
111
|
+
readonly name: "assetInAddr";
|
|
112
|
+
readonly type: "address";
|
|
113
|
+
}, {
|
|
114
|
+
readonly internalType: "address";
|
|
115
|
+
readonly name: "vaultAddr";
|
|
116
|
+
readonly type: "address";
|
|
117
|
+
}, {
|
|
118
|
+
readonly internalType: "uint256";
|
|
119
|
+
readonly name: "assetInAmount";
|
|
120
|
+
readonly type: "uint256";
|
|
121
|
+
}, {
|
|
122
|
+
readonly internalType: "uint256";
|
|
123
|
+
readonly name: "externalAssets";
|
|
124
|
+
readonly type: "uint256";
|
|
125
|
+
}];
|
|
126
|
+
readonly name: "convertToShares";
|
|
127
|
+
readonly outputs: readonly [{
|
|
128
|
+
readonly internalType: "uint256";
|
|
129
|
+
readonly name: "shares";
|
|
130
|
+
readonly type: "uint256";
|
|
131
|
+
}, {
|
|
132
|
+
readonly internalType: "uint256";
|
|
133
|
+
readonly name: "amountInReferenceTokens";
|
|
134
|
+
readonly type: "uint256";
|
|
135
|
+
}];
|
|
136
|
+
readonly stateMutability: "view";
|
|
137
|
+
readonly type: "function";
|
|
138
|
+
}, {
|
|
139
|
+
readonly inputs: readonly [{
|
|
140
|
+
readonly internalType: "address";
|
|
141
|
+
readonly name: "assetAddr";
|
|
142
|
+
readonly type: "address";
|
|
143
|
+
}, {
|
|
144
|
+
readonly internalType: "address";
|
|
145
|
+
readonly name: "oracleAddr";
|
|
146
|
+
readonly type: "address";
|
|
147
|
+
}, {
|
|
148
|
+
readonly internalType: "uint256";
|
|
149
|
+
readonly name: "newOracleDuration";
|
|
150
|
+
readonly type: "uint256";
|
|
151
|
+
}];
|
|
152
|
+
readonly name: "enableAsset";
|
|
196
153
|
readonly outputs: readonly [];
|
|
197
|
-
readonly stateMutability:
|
|
198
|
-
readonly type:
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
readonly
|
|
204
|
-
|
|
205
|
-
readonly
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
readonly
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
readonly
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
readonly
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
readonly
|
|
245
|
-
|
|
246
|
-
readonly internalType: 'uint256';
|
|
247
|
-
readonly name: 'externalAssets';
|
|
248
|
-
readonly type: 'uint256';
|
|
249
|
-
},
|
|
250
|
-
];
|
|
251
|
-
readonly name: 'getTotalAssetsValuation';
|
|
252
|
-
readonly outputs: readonly [
|
|
253
|
-
{
|
|
254
|
-
readonly internalType: 'uint256';
|
|
255
|
-
readonly name: '';
|
|
256
|
-
readonly type: 'uint256';
|
|
257
|
-
},
|
|
258
|
-
];
|
|
259
|
-
readonly stateMutability: 'view';
|
|
260
|
-
readonly type: 'function';
|
|
261
|
-
},
|
|
262
|
-
{
|
|
154
|
+
readonly stateMutability: "nonpayable";
|
|
155
|
+
readonly type: "function";
|
|
156
|
+
}, {
|
|
157
|
+
readonly inputs: readonly [{
|
|
158
|
+
readonly internalType: "address";
|
|
159
|
+
readonly name: "assetAddr";
|
|
160
|
+
readonly type: "address";
|
|
161
|
+
}, {
|
|
162
|
+
readonly internalType: "uint256";
|
|
163
|
+
readonly name: "amount";
|
|
164
|
+
readonly type: "uint256";
|
|
165
|
+
}];
|
|
166
|
+
readonly name: "fromInputAssetToReferenceAsset";
|
|
167
|
+
readonly outputs: readonly [{
|
|
168
|
+
readonly internalType: "uint256";
|
|
169
|
+
readonly name: "";
|
|
170
|
+
readonly type: "uint256";
|
|
171
|
+
}];
|
|
172
|
+
readonly stateMutability: "view";
|
|
173
|
+
readonly type: "function";
|
|
174
|
+
}, {
|
|
175
|
+
readonly inputs: readonly [{
|
|
176
|
+
readonly internalType: "address";
|
|
177
|
+
readonly name: "assetAddr";
|
|
178
|
+
readonly type: "address";
|
|
179
|
+
}];
|
|
180
|
+
readonly name: "getOracleAddress";
|
|
181
|
+
readonly outputs: readonly [{
|
|
182
|
+
readonly internalType: "address";
|
|
183
|
+
readonly name: "";
|
|
184
|
+
readonly type: "address";
|
|
185
|
+
}];
|
|
186
|
+
readonly stateMutability: "view";
|
|
187
|
+
readonly type: "function";
|
|
188
|
+
}, {
|
|
189
|
+
readonly inputs: readonly [{
|
|
190
|
+
readonly internalType: "uint256";
|
|
191
|
+
readonly name: "externalAssets";
|
|
192
|
+
readonly type: "uint256";
|
|
193
|
+
}];
|
|
194
|
+
readonly name: "getTotalAssetsValuation";
|
|
195
|
+
readonly outputs: readonly [{
|
|
196
|
+
readonly internalType: "uint256";
|
|
197
|
+
readonly name: "";
|
|
198
|
+
readonly type: "uint256";
|
|
199
|
+
}];
|
|
200
|
+
readonly stateMutability: "view";
|
|
201
|
+
readonly type: "function";
|
|
202
|
+
}, {
|
|
263
203
|
readonly inputs: readonly [];
|
|
264
|
-
readonly name:
|
|
265
|
-
readonly outputs: readonly [
|
|
266
|
-
|
|
267
|
-
readonly
|
|
268
|
-
readonly
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
readonly
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
readonly
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
readonly
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
readonly
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
readonly
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
];
|
|
302
|
-
readonly name: 'maxOracleUpdatesDuration';
|
|
303
|
-
readonly outputs: readonly [
|
|
304
|
-
{
|
|
305
|
-
readonly internalType: 'uint256';
|
|
306
|
-
readonly name: '';
|
|
307
|
-
readonly type: 'uint256';
|
|
308
|
-
},
|
|
309
|
-
];
|
|
310
|
-
readonly stateMutability: 'view';
|
|
311
|
-
readonly type: 'function';
|
|
312
|
-
},
|
|
313
|
-
{
|
|
204
|
+
readonly name: "getWhitelistedAssets";
|
|
205
|
+
readonly outputs: readonly [{
|
|
206
|
+
readonly internalType: "address[]";
|
|
207
|
+
readonly name: "";
|
|
208
|
+
readonly type: "address[]";
|
|
209
|
+
}];
|
|
210
|
+
readonly stateMutability: "view";
|
|
211
|
+
readonly type: "function";
|
|
212
|
+
}, {
|
|
213
|
+
readonly inputs: readonly [{
|
|
214
|
+
readonly internalType: "address";
|
|
215
|
+
readonly name: "assetAddr";
|
|
216
|
+
readonly type: "address";
|
|
217
|
+
}];
|
|
218
|
+
readonly name: "isWhitelisted";
|
|
219
|
+
readonly outputs: readonly [{
|
|
220
|
+
readonly internalType: "bool";
|
|
221
|
+
readonly name: "";
|
|
222
|
+
readonly type: "bool";
|
|
223
|
+
}];
|
|
224
|
+
readonly stateMutability: "view";
|
|
225
|
+
readonly type: "function";
|
|
226
|
+
}, {
|
|
227
|
+
readonly inputs: readonly [{
|
|
228
|
+
readonly internalType: "address";
|
|
229
|
+
readonly name: "";
|
|
230
|
+
readonly type: "address";
|
|
231
|
+
}];
|
|
232
|
+
readonly name: "maxOracleUpdatesDuration";
|
|
233
|
+
readonly outputs: readonly [{
|
|
234
|
+
readonly internalType: "uint256";
|
|
235
|
+
readonly name: "";
|
|
236
|
+
readonly type: "uint256";
|
|
237
|
+
}];
|
|
238
|
+
readonly stateMutability: "view";
|
|
239
|
+
readonly type: "function";
|
|
240
|
+
}, {
|
|
314
241
|
readonly inputs: readonly [];
|
|
315
|
-
readonly name:
|
|
316
|
-
readonly outputs: readonly [
|
|
317
|
-
|
|
318
|
-
readonly
|
|
319
|
-
readonly
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
readonly
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
readonly name: 'newOwner';
|
|
331
|
-
readonly type: 'address';
|
|
332
|
-
},
|
|
333
|
-
];
|
|
334
|
-
readonly name: 'transferOwnership';
|
|
242
|
+
readonly name: "owner";
|
|
243
|
+
readonly outputs: readonly [{
|
|
244
|
+
readonly internalType: "address";
|
|
245
|
+
readonly name: "";
|
|
246
|
+
readonly type: "address";
|
|
247
|
+
}];
|
|
248
|
+
readonly stateMutability: "view";
|
|
249
|
+
readonly type: "function";
|
|
250
|
+
}, {
|
|
251
|
+
readonly inputs: readonly [{
|
|
252
|
+
readonly internalType: "address";
|
|
253
|
+
readonly name: "newOwner";
|
|
254
|
+
readonly type: "address";
|
|
255
|
+
}];
|
|
256
|
+
readonly name: "transferOwnership";
|
|
335
257
|
readonly outputs: readonly [];
|
|
336
|
-
readonly stateMutability:
|
|
337
|
-
readonly type:
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
readonly
|
|
343
|
-
|
|
344
|
-
readonly
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
readonly type: 'address';
|
|
350
|
-
},
|
|
351
|
-
];
|
|
352
|
-
readonly name: 'updateOracleLagDuration';
|
|
258
|
+
readonly stateMutability: "nonpayable";
|
|
259
|
+
readonly type: "function";
|
|
260
|
+
}, {
|
|
261
|
+
readonly inputs: readonly [{
|
|
262
|
+
readonly internalType: "uint256";
|
|
263
|
+
readonly name: "newMaxOracleUpdatesDuration";
|
|
264
|
+
readonly type: "uint256";
|
|
265
|
+
}, {
|
|
266
|
+
readonly internalType: "address";
|
|
267
|
+
readonly name: "assetAddr";
|
|
268
|
+
readonly type: "address";
|
|
269
|
+
}];
|
|
270
|
+
readonly name: "updateOracleLagDuration";
|
|
353
271
|
readonly outputs: readonly [];
|
|
354
|
-
readonly stateMutability:
|
|
355
|
-
readonly type:
|
|
356
|
-
|
|
357
|
-
];
|
|
272
|
+
readonly stateMutability: "nonpayable";
|
|
273
|
+
readonly type: "function";
|
|
274
|
+
}];
|