@panoptic-eng/sdk 1.0.4 → 1.0.5
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/README.md +75 -20
- package/dist/index.d.ts +1765 -131
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1136 -244
- package/dist/index.js.map +1 -1
- package/dist/panoptic/v2/index.d.ts +9402 -0
- package/dist/panoptic/v2/index.d.ts.map +1 -0
- package/dist/panoptic/v2/index.js +12903 -0
- package/dist/panoptic/v2/index.js.map +1 -0
- package/dist/rates-BQ91Bbn6.d.ts +38 -0
- package/dist/rates-BQ91Bbn6.d.ts.map +1 -0
- package/dist/rates-D-7EWaPS.js +8659 -0
- package/dist/rates-D-7EWaPS.js.map +1 -0
- package/package.json +10 -5
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { annualizePerSecondRateWad$1 as annualizePerSecondRateWad, formatPerSecondRateWadAsAprPct$1 as formatPerSecondRateWadAsAprPct, formatPerSecondRateWadAsApyPct$1 as formatPerSecondRateWadAsApyPct } from "./rates-BQ91Bbn6.js";
|
|
2
|
+
import { Abi, Account as Account$1, Address, BaseError, Chain, Client, ContractFunctionArgs, ContractFunctionName, ContractFunctionRevertedError, Hex, PublicClient, Transport } from "viem";
|
|
2
3
|
import { Config, UseSimulateContractReturnType, UseWaitForTransactionReceiptReturnType, UseWriteContractReturnType } from "wagmi";
|
|
3
4
|
import { z } from "zod";
|
|
4
5
|
import { GraphQLClient, RequestOptions } from "graphql-request";
|
|
@@ -13,6 +14,7 @@ import * as graphql8 from "graphql";
|
|
|
13
14
|
import * as graphql9 from "graphql";
|
|
14
15
|
import * as graphql10 from "graphql";
|
|
15
16
|
import * as graphql11 from "graphql";
|
|
17
|
+
import * as graphql12 from "graphql";
|
|
16
18
|
|
|
17
19
|
//#region src/abis/CollateralTracker.d.ts
|
|
18
20
|
declare const CollateralTrackerAbi: readonly [{
|
|
@@ -18019,6 +18021,1148 @@ declare const semiFungiblePositionManagerAbi: readonly [{
|
|
|
18019
18021
|
readonly inputs: readonly [];
|
|
18020
18022
|
readonly name: "WrongUniswapPool";
|
|
18021
18023
|
}]; //#endregion
|
|
18024
|
+
//#region src/hypoVault/analytics/lendingAllocation.d.ts
|
|
18025
|
+
type LendingAllocationRow = {
|
|
18026
|
+
market: string;
|
|
18027
|
+
supplyRateWad: bigint | null;
|
|
18028
|
+
utilizationBps: bigint | null;
|
|
18029
|
+
allocationUnderlying: bigint;
|
|
18030
|
+
allocationPctBps: bigint;
|
|
18031
|
+
isIdle: boolean;
|
|
18032
|
+
poolAddress: Address | null;
|
|
18033
|
+
};
|
|
18034
|
+
type LendingAllocationResult = {
|
|
18035
|
+
rows: LendingAllocationRow[];
|
|
18036
|
+
totalUnderlying: bigint;
|
|
18037
|
+
};
|
|
18038
|
+
declare function getLendingAllocationRows({
|
|
18039
|
+
client,
|
|
18040
|
+
chainId,
|
|
18041
|
+
vaultAddress,
|
|
18042
|
+
underlyingTokenAddress,
|
|
18043
|
+
blockNumber
|
|
18044
|
+
}: {
|
|
18045
|
+
client: PublicClient;
|
|
18046
|
+
chainId: number;
|
|
18047
|
+
vaultAddress: Address;
|
|
18048
|
+
underlyingTokenAddress: Address;
|
|
18049
|
+
blockNumber?: bigint;
|
|
18050
|
+
}): Promise<LendingAllocationResult>;
|
|
18051
|
+
|
|
18052
|
+
//#endregion
|
|
18053
|
+
//#region src/hypoVault/cancelDeposit/cancelDeposit.d.ts
|
|
18054
|
+
declare const getCancelDepositContractConfig: ({
|
|
18055
|
+
vaultAddress
|
|
18056
|
+
}: {
|
|
18057
|
+
vaultAddress: Address;
|
|
18058
|
+
}) => {
|
|
18059
|
+
readonly address: Address;
|
|
18060
|
+
readonly abi: readonly [{
|
|
18061
|
+
readonly type: "constructor";
|
|
18062
|
+
readonly inputs: readonly [];
|
|
18063
|
+
readonly stateMutability: "nonpayable";
|
|
18064
|
+
}, {
|
|
18065
|
+
readonly type: "receive";
|
|
18066
|
+
readonly stateMutability: "payable";
|
|
18067
|
+
}, {
|
|
18068
|
+
readonly type: "function";
|
|
18069
|
+
readonly name: "accountant";
|
|
18070
|
+
readonly inputs: readonly [];
|
|
18071
|
+
readonly outputs: readonly [{
|
|
18072
|
+
readonly name: "";
|
|
18073
|
+
readonly type: "address";
|
|
18074
|
+
readonly internalType: "contract IVaultAccountant";
|
|
18075
|
+
}];
|
|
18076
|
+
readonly stateMutability: "view";
|
|
18077
|
+
}, {
|
|
18078
|
+
readonly type: "function";
|
|
18079
|
+
readonly name: "allowance";
|
|
18080
|
+
readonly inputs: readonly [{
|
|
18081
|
+
readonly name: "owner";
|
|
18082
|
+
readonly type: "address";
|
|
18083
|
+
readonly internalType: "address";
|
|
18084
|
+
}, {
|
|
18085
|
+
readonly name: "spender";
|
|
18086
|
+
readonly type: "address";
|
|
18087
|
+
readonly internalType: "address";
|
|
18088
|
+
}];
|
|
18089
|
+
readonly outputs: readonly [{
|
|
18090
|
+
readonly name: "allowance";
|
|
18091
|
+
readonly type: "uint256";
|
|
18092
|
+
readonly internalType: "uint256";
|
|
18093
|
+
}];
|
|
18094
|
+
readonly stateMutability: "view";
|
|
18095
|
+
}, {
|
|
18096
|
+
readonly type: "function";
|
|
18097
|
+
readonly name: "approve";
|
|
18098
|
+
readonly inputs: readonly [{
|
|
18099
|
+
readonly name: "spender";
|
|
18100
|
+
readonly type: "address";
|
|
18101
|
+
readonly internalType: "address";
|
|
18102
|
+
}, {
|
|
18103
|
+
readonly name: "amount";
|
|
18104
|
+
readonly type: "uint256";
|
|
18105
|
+
readonly internalType: "uint256";
|
|
18106
|
+
}];
|
|
18107
|
+
readonly outputs: readonly [{
|
|
18108
|
+
readonly name: "";
|
|
18109
|
+
readonly type: "bool";
|
|
18110
|
+
readonly internalType: "bool";
|
|
18111
|
+
}];
|
|
18112
|
+
readonly stateMutability: "nonpayable";
|
|
18113
|
+
}, {
|
|
18114
|
+
readonly type: "function";
|
|
18115
|
+
readonly name: "balanceOf";
|
|
18116
|
+
readonly inputs: readonly [{
|
|
18117
|
+
readonly name: "account";
|
|
18118
|
+
readonly type: "address";
|
|
18119
|
+
readonly internalType: "address";
|
|
18120
|
+
}];
|
|
18121
|
+
readonly outputs: readonly [{
|
|
18122
|
+
readonly name: "balance";
|
|
18123
|
+
readonly type: "uint256";
|
|
18124
|
+
readonly internalType: "uint256";
|
|
18125
|
+
}];
|
|
18126
|
+
readonly stateMutability: "view";
|
|
18127
|
+
}, {
|
|
18128
|
+
readonly type: "function";
|
|
18129
|
+
readonly name: "cancelDeposit";
|
|
18130
|
+
readonly inputs: readonly [];
|
|
18131
|
+
readonly outputs: readonly [];
|
|
18132
|
+
readonly stateMutability: "nonpayable";
|
|
18133
|
+
}, {
|
|
18134
|
+
readonly type: "function";
|
|
18135
|
+
readonly name: "cancelDeposit";
|
|
18136
|
+
readonly inputs: readonly [{
|
|
18137
|
+
readonly name: "depositor";
|
|
18138
|
+
readonly type: "address";
|
|
18139
|
+
readonly internalType: "address";
|
|
18140
|
+
}];
|
|
18141
|
+
readonly outputs: readonly [];
|
|
18142
|
+
readonly stateMutability: "nonpayable";
|
|
18143
|
+
}, {
|
|
18144
|
+
readonly type: "function";
|
|
18145
|
+
readonly name: "cancelWithdrawal";
|
|
18146
|
+
readonly inputs: readonly [{
|
|
18147
|
+
readonly name: "withdrawer";
|
|
18148
|
+
readonly type: "address";
|
|
18149
|
+
readonly internalType: "address";
|
|
18150
|
+
}];
|
|
18151
|
+
readonly outputs: readonly [];
|
|
18152
|
+
readonly stateMutability: "nonpayable";
|
|
18153
|
+
}, {
|
|
18154
|
+
readonly type: "function";
|
|
18155
|
+
readonly name: "convertToAssets";
|
|
18156
|
+
readonly inputs: readonly [{
|
|
18157
|
+
readonly name: "shares";
|
|
18158
|
+
readonly type: "uint256";
|
|
18159
|
+
readonly internalType: "uint256";
|
|
18160
|
+
}, {
|
|
18161
|
+
readonly name: "managerInput";
|
|
18162
|
+
readonly type: "bytes";
|
|
18163
|
+
readonly internalType: "bytes";
|
|
18164
|
+
}];
|
|
18165
|
+
readonly outputs: readonly [{
|
|
18166
|
+
readonly name: "";
|
|
18167
|
+
readonly type: "uint256";
|
|
18168
|
+
readonly internalType: "uint256";
|
|
18169
|
+
}];
|
|
18170
|
+
readonly stateMutability: "view";
|
|
18171
|
+
}, {
|
|
18172
|
+
readonly type: "function";
|
|
18173
|
+
readonly name: "decimals";
|
|
18174
|
+
readonly inputs: readonly [];
|
|
18175
|
+
readonly outputs: readonly [{
|
|
18176
|
+
readonly name: "";
|
|
18177
|
+
readonly type: "uint8";
|
|
18178
|
+
readonly internalType: "uint8";
|
|
18179
|
+
}];
|
|
18180
|
+
readonly stateMutability: "view";
|
|
18181
|
+
}, {
|
|
18182
|
+
readonly type: "function";
|
|
18183
|
+
readonly name: "depositEpoch";
|
|
18184
|
+
readonly inputs: readonly [];
|
|
18185
|
+
readonly outputs: readonly [{
|
|
18186
|
+
readonly name: "";
|
|
18187
|
+
readonly type: "uint128";
|
|
18188
|
+
readonly internalType: "uint128";
|
|
18189
|
+
}];
|
|
18190
|
+
readonly stateMutability: "view";
|
|
18191
|
+
}, {
|
|
18192
|
+
readonly type: "function";
|
|
18193
|
+
readonly name: "depositEpochState";
|
|
18194
|
+
readonly inputs: readonly [{
|
|
18195
|
+
readonly name: "epoch";
|
|
18196
|
+
readonly type: "uint256";
|
|
18197
|
+
readonly internalType: "uint256";
|
|
18198
|
+
}];
|
|
18199
|
+
readonly outputs: readonly [{
|
|
18200
|
+
readonly name: "assetsDeposited";
|
|
18201
|
+
readonly type: "uint128";
|
|
18202
|
+
readonly internalType: "uint128";
|
|
18203
|
+
}, {
|
|
18204
|
+
readonly name: "sharesReceived";
|
|
18205
|
+
readonly type: "uint128";
|
|
18206
|
+
readonly internalType: "uint128";
|
|
18207
|
+
}, {
|
|
18208
|
+
readonly name: "assetsFulfilled";
|
|
18209
|
+
readonly type: "uint128";
|
|
18210
|
+
readonly internalType: "uint128";
|
|
18211
|
+
}];
|
|
18212
|
+
readonly stateMutability: "view";
|
|
18213
|
+
}, {
|
|
18214
|
+
readonly type: "function";
|
|
18215
|
+
readonly name: "executeDeposit";
|
|
18216
|
+
readonly inputs: readonly [{
|
|
18217
|
+
readonly name: "user";
|
|
18218
|
+
readonly type: "address";
|
|
18219
|
+
readonly internalType: "address";
|
|
18220
|
+
}, {
|
|
18221
|
+
readonly name: "epoch";
|
|
18222
|
+
readonly type: "uint256";
|
|
18223
|
+
readonly internalType: "uint256";
|
|
18224
|
+
}];
|
|
18225
|
+
readonly outputs: readonly [];
|
|
18226
|
+
readonly stateMutability: "nonpayable";
|
|
18227
|
+
}, {
|
|
18228
|
+
readonly type: "function";
|
|
18229
|
+
readonly name: "executeWithdrawal";
|
|
18230
|
+
readonly inputs: readonly [{
|
|
18231
|
+
readonly name: "user";
|
|
18232
|
+
readonly type: "address";
|
|
18233
|
+
readonly internalType: "address";
|
|
18234
|
+
}, {
|
|
18235
|
+
readonly name: "epoch";
|
|
18236
|
+
readonly type: "uint256";
|
|
18237
|
+
readonly internalType: "uint256";
|
|
18238
|
+
}];
|
|
18239
|
+
readonly outputs: readonly [];
|
|
18240
|
+
readonly stateMutability: "nonpayable";
|
|
18241
|
+
}, {
|
|
18242
|
+
readonly type: "function";
|
|
18243
|
+
readonly name: "feeWallet";
|
|
18244
|
+
readonly inputs: readonly [];
|
|
18245
|
+
readonly outputs: readonly [{
|
|
18246
|
+
readonly name: "";
|
|
18247
|
+
readonly type: "address";
|
|
18248
|
+
readonly internalType: "address";
|
|
18249
|
+
}];
|
|
18250
|
+
readonly stateMutability: "view";
|
|
18251
|
+
}, {
|
|
18252
|
+
readonly type: "function";
|
|
18253
|
+
readonly name: "fulfillDeposits";
|
|
18254
|
+
readonly inputs: readonly [{
|
|
18255
|
+
readonly name: "assetsToFulfill";
|
|
18256
|
+
readonly type: "uint256";
|
|
18257
|
+
readonly internalType: "uint256";
|
|
18258
|
+
}, {
|
|
18259
|
+
readonly name: "managerInput";
|
|
18260
|
+
readonly type: "bytes";
|
|
18261
|
+
readonly internalType: "bytes";
|
|
18262
|
+
}];
|
|
18263
|
+
readonly outputs: readonly [];
|
|
18264
|
+
readonly stateMutability: "nonpayable";
|
|
18265
|
+
}, {
|
|
18266
|
+
readonly type: "function";
|
|
18267
|
+
readonly name: "fulfillWithdrawals";
|
|
18268
|
+
readonly inputs: readonly [{
|
|
18269
|
+
readonly name: "sharesToFulfill";
|
|
18270
|
+
readonly type: "uint256";
|
|
18271
|
+
readonly internalType: "uint256";
|
|
18272
|
+
}, {
|
|
18273
|
+
readonly name: "maxAssetsReceived";
|
|
18274
|
+
readonly type: "uint256";
|
|
18275
|
+
readonly internalType: "uint256";
|
|
18276
|
+
}, {
|
|
18277
|
+
readonly name: "managerInput";
|
|
18278
|
+
readonly type: "bytes";
|
|
18279
|
+
readonly internalType: "bytes";
|
|
18280
|
+
}];
|
|
18281
|
+
readonly outputs: readonly [];
|
|
18282
|
+
readonly stateMutability: "nonpayable";
|
|
18283
|
+
}, {
|
|
18284
|
+
readonly type: "function";
|
|
18285
|
+
readonly name: "initialize";
|
|
18286
|
+
readonly inputs: readonly [{
|
|
18287
|
+
readonly name: "_underlyingToken";
|
|
18288
|
+
readonly type: "address";
|
|
18289
|
+
readonly internalType: "address";
|
|
18290
|
+
}, {
|
|
18291
|
+
readonly name: "_manager";
|
|
18292
|
+
readonly type: "address";
|
|
18293
|
+
readonly internalType: "address";
|
|
18294
|
+
}, {
|
|
18295
|
+
readonly name: "_accountant";
|
|
18296
|
+
readonly type: "address";
|
|
18297
|
+
readonly internalType: "contract IVaultAccountant";
|
|
18298
|
+
}, {
|
|
18299
|
+
readonly name: "_performanceFeeBps";
|
|
18300
|
+
readonly type: "uint256";
|
|
18301
|
+
readonly internalType: "uint256";
|
|
18302
|
+
}, {
|
|
18303
|
+
readonly name: "_symbol";
|
|
18304
|
+
readonly type: "string";
|
|
18305
|
+
readonly internalType: "string";
|
|
18306
|
+
}, {
|
|
18307
|
+
readonly name: "_name";
|
|
18308
|
+
readonly type: "string";
|
|
18309
|
+
readonly internalType: "string";
|
|
18310
|
+
}];
|
|
18311
|
+
readonly outputs: readonly [];
|
|
18312
|
+
readonly stateMutability: "nonpayable";
|
|
18313
|
+
}, {
|
|
18314
|
+
readonly type: "function";
|
|
18315
|
+
readonly name: "manage";
|
|
18316
|
+
readonly inputs: readonly [{
|
|
18317
|
+
readonly name: "targets";
|
|
18318
|
+
readonly type: "address[]";
|
|
18319
|
+
readonly internalType: "address[]";
|
|
18320
|
+
}, {
|
|
18321
|
+
readonly name: "data";
|
|
18322
|
+
readonly type: "bytes[]";
|
|
18323
|
+
readonly internalType: "bytes[]";
|
|
18324
|
+
}, {
|
|
18325
|
+
readonly name: "values";
|
|
18326
|
+
readonly type: "uint256[]";
|
|
18327
|
+
readonly internalType: "uint256[]";
|
|
18328
|
+
}];
|
|
18329
|
+
readonly outputs: readonly [{
|
|
18330
|
+
readonly name: "results";
|
|
18331
|
+
readonly type: "bytes[]";
|
|
18332
|
+
readonly internalType: "bytes[]";
|
|
18333
|
+
}];
|
|
18334
|
+
readonly stateMutability: "nonpayable";
|
|
18335
|
+
}, {
|
|
18336
|
+
readonly type: "function";
|
|
18337
|
+
readonly name: "manage";
|
|
18338
|
+
readonly inputs: readonly [{
|
|
18339
|
+
readonly name: "target";
|
|
18340
|
+
readonly type: "address";
|
|
18341
|
+
readonly internalType: "address";
|
|
18342
|
+
}, {
|
|
18343
|
+
readonly name: "data";
|
|
18344
|
+
readonly type: "bytes";
|
|
18345
|
+
readonly internalType: "bytes";
|
|
18346
|
+
}, {
|
|
18347
|
+
readonly name: "value";
|
|
18348
|
+
readonly type: "uint256";
|
|
18349
|
+
readonly internalType: "uint256";
|
|
18350
|
+
}];
|
|
18351
|
+
readonly outputs: readonly [{
|
|
18352
|
+
readonly name: "result";
|
|
18353
|
+
readonly type: "bytes";
|
|
18354
|
+
readonly internalType: "bytes";
|
|
18355
|
+
}];
|
|
18356
|
+
readonly stateMutability: "nonpayable";
|
|
18357
|
+
}, {
|
|
18358
|
+
readonly type: "function";
|
|
18359
|
+
readonly name: "manager";
|
|
18360
|
+
readonly inputs: readonly [];
|
|
18361
|
+
readonly outputs: readonly [{
|
|
18362
|
+
readonly name: "";
|
|
18363
|
+
readonly type: "address";
|
|
18364
|
+
readonly internalType: "address";
|
|
18365
|
+
}];
|
|
18366
|
+
readonly stateMutability: "view";
|
|
18367
|
+
}, {
|
|
18368
|
+
readonly type: "function";
|
|
18369
|
+
readonly name: "multicall";
|
|
18370
|
+
readonly inputs: readonly [{
|
|
18371
|
+
readonly name: "data";
|
|
18372
|
+
readonly type: "bytes[]";
|
|
18373
|
+
readonly internalType: "bytes[]";
|
|
18374
|
+
}];
|
|
18375
|
+
readonly outputs: readonly [{
|
|
18376
|
+
readonly name: "results";
|
|
18377
|
+
readonly type: "bytes[]";
|
|
18378
|
+
readonly internalType: "bytes[]";
|
|
18379
|
+
}];
|
|
18380
|
+
readonly stateMutability: "nonpayable";
|
|
18381
|
+
}, {
|
|
18382
|
+
readonly type: "function";
|
|
18383
|
+
readonly name: "name";
|
|
18384
|
+
readonly inputs: readonly [];
|
|
18385
|
+
readonly outputs: readonly [{
|
|
18386
|
+
readonly name: "";
|
|
18387
|
+
readonly type: "string";
|
|
18388
|
+
readonly internalType: "string";
|
|
18389
|
+
}];
|
|
18390
|
+
readonly stateMutability: "view";
|
|
18391
|
+
}, {
|
|
18392
|
+
readonly type: "function";
|
|
18393
|
+
readonly name: "onERC1155BatchReceived";
|
|
18394
|
+
readonly inputs: readonly [{
|
|
18395
|
+
readonly name: "";
|
|
18396
|
+
readonly type: "address";
|
|
18397
|
+
readonly internalType: "address";
|
|
18398
|
+
}, {
|
|
18399
|
+
readonly name: "";
|
|
18400
|
+
readonly type: "address";
|
|
18401
|
+
readonly internalType: "address";
|
|
18402
|
+
}, {
|
|
18403
|
+
readonly name: "";
|
|
18404
|
+
readonly type: "uint256[]";
|
|
18405
|
+
readonly internalType: "uint256[]";
|
|
18406
|
+
}, {
|
|
18407
|
+
readonly name: "";
|
|
18408
|
+
readonly type: "uint256[]";
|
|
18409
|
+
readonly internalType: "uint256[]";
|
|
18410
|
+
}, {
|
|
18411
|
+
readonly name: "";
|
|
18412
|
+
readonly type: "bytes";
|
|
18413
|
+
readonly internalType: "bytes";
|
|
18414
|
+
}];
|
|
18415
|
+
readonly outputs: readonly [{
|
|
18416
|
+
readonly name: "";
|
|
18417
|
+
readonly type: "bytes4";
|
|
18418
|
+
readonly internalType: "bytes4";
|
|
18419
|
+
}];
|
|
18420
|
+
readonly stateMutability: "nonpayable";
|
|
18421
|
+
}, {
|
|
18422
|
+
readonly type: "function";
|
|
18423
|
+
readonly name: "onERC1155Received";
|
|
18424
|
+
readonly inputs: readonly [{
|
|
18425
|
+
readonly name: "";
|
|
18426
|
+
readonly type: "address";
|
|
18427
|
+
readonly internalType: "address";
|
|
18428
|
+
}, {
|
|
18429
|
+
readonly name: "";
|
|
18430
|
+
readonly type: "address";
|
|
18431
|
+
readonly internalType: "address";
|
|
18432
|
+
}, {
|
|
18433
|
+
readonly name: "";
|
|
18434
|
+
readonly type: "uint256";
|
|
18435
|
+
readonly internalType: "uint256";
|
|
18436
|
+
}, {
|
|
18437
|
+
readonly name: "";
|
|
18438
|
+
readonly type: "uint256";
|
|
18439
|
+
readonly internalType: "uint256";
|
|
18440
|
+
}, {
|
|
18441
|
+
readonly name: "";
|
|
18442
|
+
readonly type: "bytes";
|
|
18443
|
+
readonly internalType: "bytes";
|
|
18444
|
+
}];
|
|
18445
|
+
readonly outputs: readonly [{
|
|
18446
|
+
readonly name: "";
|
|
18447
|
+
readonly type: "bytes4";
|
|
18448
|
+
readonly internalType: "bytes4";
|
|
18449
|
+
}];
|
|
18450
|
+
readonly stateMutability: "nonpayable";
|
|
18451
|
+
}, {
|
|
18452
|
+
readonly type: "function";
|
|
18453
|
+
readonly name: "onERC721Received";
|
|
18454
|
+
readonly inputs: readonly [{
|
|
18455
|
+
readonly name: "";
|
|
18456
|
+
readonly type: "address";
|
|
18457
|
+
readonly internalType: "address";
|
|
18458
|
+
}, {
|
|
18459
|
+
readonly name: "";
|
|
18460
|
+
readonly type: "address";
|
|
18461
|
+
readonly internalType: "address";
|
|
18462
|
+
}, {
|
|
18463
|
+
readonly name: "";
|
|
18464
|
+
readonly type: "uint256";
|
|
18465
|
+
readonly internalType: "uint256";
|
|
18466
|
+
}, {
|
|
18467
|
+
readonly name: "";
|
|
18468
|
+
readonly type: "bytes";
|
|
18469
|
+
readonly internalType: "bytes";
|
|
18470
|
+
}];
|
|
18471
|
+
readonly outputs: readonly [{
|
|
18472
|
+
readonly name: "";
|
|
18473
|
+
readonly type: "bytes4";
|
|
18474
|
+
readonly internalType: "bytes4";
|
|
18475
|
+
}];
|
|
18476
|
+
readonly stateMutability: "nonpayable";
|
|
18477
|
+
}, {
|
|
18478
|
+
readonly type: "function";
|
|
18479
|
+
readonly name: "optOutOfRedeposit";
|
|
18480
|
+
readonly inputs: readonly [{
|
|
18481
|
+
readonly name: "epoch";
|
|
18482
|
+
readonly type: "uint256";
|
|
18483
|
+
readonly internalType: "uint256";
|
|
18484
|
+
}];
|
|
18485
|
+
readonly outputs: readonly [];
|
|
18486
|
+
readonly stateMutability: "nonpayable";
|
|
18487
|
+
}, {
|
|
18488
|
+
readonly type: "function";
|
|
18489
|
+
readonly name: "owner";
|
|
18490
|
+
readonly inputs: readonly [];
|
|
18491
|
+
readonly outputs: readonly [{
|
|
18492
|
+
readonly name: "";
|
|
18493
|
+
readonly type: "address";
|
|
18494
|
+
readonly internalType: "address";
|
|
18495
|
+
}];
|
|
18496
|
+
readonly stateMutability: "view";
|
|
18497
|
+
}, {
|
|
18498
|
+
readonly type: "function";
|
|
18499
|
+
readonly name: "performanceFeeBps";
|
|
18500
|
+
readonly inputs: readonly [];
|
|
18501
|
+
readonly outputs: readonly [{
|
|
18502
|
+
readonly name: "";
|
|
18503
|
+
readonly type: "uint256";
|
|
18504
|
+
readonly internalType: "uint256";
|
|
18505
|
+
}];
|
|
18506
|
+
readonly stateMutability: "view";
|
|
18507
|
+
}, {
|
|
18508
|
+
readonly type: "function";
|
|
18509
|
+
readonly name: "queuedDeposit";
|
|
18510
|
+
readonly inputs: readonly [{
|
|
18511
|
+
readonly name: "user";
|
|
18512
|
+
readonly type: "address";
|
|
18513
|
+
readonly internalType: "address";
|
|
18514
|
+
}, {
|
|
18515
|
+
readonly name: "epoch";
|
|
18516
|
+
readonly type: "uint256";
|
|
18517
|
+
readonly internalType: "uint256";
|
|
18518
|
+
}];
|
|
18519
|
+
readonly outputs: readonly [{
|
|
18520
|
+
readonly name: "depositAmount";
|
|
18521
|
+
readonly type: "uint128";
|
|
18522
|
+
readonly internalType: "uint128";
|
|
18523
|
+
}];
|
|
18524
|
+
readonly stateMutability: "view";
|
|
18525
|
+
}, {
|
|
18526
|
+
readonly type: "function";
|
|
18527
|
+
readonly name: "queuedWithdrawal";
|
|
18528
|
+
readonly inputs: readonly [{
|
|
18529
|
+
readonly name: "user";
|
|
18530
|
+
readonly type: "address";
|
|
18531
|
+
readonly internalType: "address";
|
|
18532
|
+
}, {
|
|
18533
|
+
readonly name: "epoch";
|
|
18534
|
+
readonly type: "uint256";
|
|
18535
|
+
readonly internalType: "uint256";
|
|
18536
|
+
}];
|
|
18537
|
+
readonly outputs: readonly [{
|
|
18538
|
+
readonly name: "amount";
|
|
18539
|
+
readonly type: "uint128";
|
|
18540
|
+
readonly internalType: "uint128";
|
|
18541
|
+
}, {
|
|
18542
|
+
readonly name: "basis";
|
|
18543
|
+
readonly type: "uint128";
|
|
18544
|
+
readonly internalType: "uint128";
|
|
18545
|
+
}, {
|
|
18546
|
+
readonly name: "shouldRedeposit";
|
|
18547
|
+
readonly type: "bool";
|
|
18548
|
+
readonly internalType: "bool";
|
|
18549
|
+
}];
|
|
18550
|
+
readonly stateMutability: "view";
|
|
18551
|
+
}, {
|
|
18552
|
+
readonly type: "function";
|
|
18553
|
+
readonly name: "renounceOwnership";
|
|
18554
|
+
readonly inputs: readonly [];
|
|
18555
|
+
readonly outputs: readonly [];
|
|
18556
|
+
readonly stateMutability: "nonpayable";
|
|
18557
|
+
}, {
|
|
18558
|
+
readonly type: "function";
|
|
18559
|
+
readonly name: "requestDeposit";
|
|
18560
|
+
readonly inputs: readonly [{
|
|
18561
|
+
readonly name: "assets";
|
|
18562
|
+
readonly type: "uint128";
|
|
18563
|
+
readonly internalType: "uint128";
|
|
18564
|
+
}];
|
|
18565
|
+
readonly outputs: readonly [];
|
|
18566
|
+
readonly stateMutability: "nonpayable";
|
|
18567
|
+
}, {
|
|
18568
|
+
readonly type: "function";
|
|
18569
|
+
readonly name: "requestWithdrawal";
|
|
18570
|
+
readonly inputs: readonly [{
|
|
18571
|
+
readonly name: "shares";
|
|
18572
|
+
readonly type: "uint128";
|
|
18573
|
+
readonly internalType: "uint128";
|
|
18574
|
+
}];
|
|
18575
|
+
readonly outputs: readonly [];
|
|
18576
|
+
readonly stateMutability: "nonpayable";
|
|
18577
|
+
}, {
|
|
18578
|
+
readonly type: "function";
|
|
18579
|
+
readonly name: "requestWithdrawalFrom";
|
|
18580
|
+
readonly inputs: readonly [{
|
|
18581
|
+
readonly name: "user";
|
|
18582
|
+
readonly type: "address";
|
|
18583
|
+
readonly internalType: "address";
|
|
18584
|
+
}, {
|
|
18585
|
+
readonly name: "shares";
|
|
18586
|
+
readonly type: "uint128";
|
|
18587
|
+
readonly internalType: "uint128";
|
|
18588
|
+
}, {
|
|
18589
|
+
readonly name: "shouldRedeposit";
|
|
18590
|
+
readonly type: "bool";
|
|
18591
|
+
readonly internalType: "bool";
|
|
18592
|
+
}];
|
|
18593
|
+
readonly outputs: readonly [];
|
|
18594
|
+
readonly stateMutability: "nonpayable";
|
|
18595
|
+
}, {
|
|
18596
|
+
readonly type: "function";
|
|
18597
|
+
readonly name: "reservedWithdrawalAssets";
|
|
18598
|
+
readonly inputs: readonly [];
|
|
18599
|
+
readonly outputs: readonly [{
|
|
18600
|
+
readonly name: "";
|
|
18601
|
+
readonly type: "uint256";
|
|
18602
|
+
readonly internalType: "uint256";
|
|
18603
|
+
}];
|
|
18604
|
+
readonly stateMutability: "view";
|
|
18605
|
+
}, {
|
|
18606
|
+
readonly type: "function";
|
|
18607
|
+
readonly name: "setAccountant";
|
|
18608
|
+
readonly inputs: readonly [{
|
|
18609
|
+
readonly name: "_newAccountant";
|
|
18610
|
+
readonly type: "address";
|
|
18611
|
+
readonly internalType: "contract IVaultAccountant";
|
|
18612
|
+
}];
|
|
18613
|
+
readonly outputs: readonly [];
|
|
18614
|
+
readonly stateMutability: "nonpayable";
|
|
18615
|
+
}, {
|
|
18616
|
+
readonly type: "function";
|
|
18617
|
+
readonly name: "setFeeWallet";
|
|
18618
|
+
readonly inputs: readonly [{
|
|
18619
|
+
readonly name: "_newFeeWallet";
|
|
18620
|
+
readonly type: "address";
|
|
18621
|
+
readonly internalType: "address";
|
|
18622
|
+
}];
|
|
18623
|
+
readonly outputs: readonly [];
|
|
18624
|
+
readonly stateMutability: "nonpayable";
|
|
18625
|
+
}, {
|
|
18626
|
+
readonly type: "function";
|
|
18627
|
+
readonly name: "setManager";
|
|
18628
|
+
readonly inputs: readonly [{
|
|
18629
|
+
readonly name: "_newManager";
|
|
18630
|
+
readonly type: "address";
|
|
18631
|
+
readonly internalType: "address";
|
|
18632
|
+
}];
|
|
18633
|
+
readonly outputs: readonly [];
|
|
18634
|
+
readonly stateMutability: "nonpayable";
|
|
18635
|
+
}, {
|
|
18636
|
+
readonly type: "function";
|
|
18637
|
+
readonly name: "supportsInterface";
|
|
18638
|
+
readonly inputs: readonly [{
|
|
18639
|
+
readonly name: "interfaceId";
|
|
18640
|
+
readonly type: "bytes4";
|
|
18641
|
+
readonly internalType: "bytes4";
|
|
18642
|
+
}];
|
|
18643
|
+
readonly outputs: readonly [{
|
|
18644
|
+
readonly name: "";
|
|
18645
|
+
readonly type: "bool";
|
|
18646
|
+
readonly internalType: "bool";
|
|
18647
|
+
}];
|
|
18648
|
+
readonly stateMutability: "view";
|
|
18649
|
+
}, {
|
|
18650
|
+
readonly type: "function";
|
|
18651
|
+
readonly name: "symbol";
|
|
18652
|
+
readonly inputs: readonly [];
|
|
18653
|
+
readonly outputs: readonly [{
|
|
18654
|
+
readonly name: "";
|
|
18655
|
+
readonly type: "string";
|
|
18656
|
+
readonly internalType: "string";
|
|
18657
|
+
}];
|
|
18658
|
+
readonly stateMutability: "view";
|
|
18659
|
+
}, {
|
|
18660
|
+
readonly type: "function";
|
|
18661
|
+
readonly name: "totalAssets";
|
|
18662
|
+
readonly inputs: readonly [{
|
|
18663
|
+
readonly name: "managerInput";
|
|
18664
|
+
readonly type: "bytes";
|
|
18665
|
+
readonly internalType: "bytes";
|
|
18666
|
+
}];
|
|
18667
|
+
readonly outputs: readonly [{
|
|
18668
|
+
readonly name: "";
|
|
18669
|
+
readonly type: "uint256";
|
|
18670
|
+
readonly internalType: "uint256";
|
|
18671
|
+
}];
|
|
18672
|
+
readonly stateMutability: "view";
|
|
18673
|
+
}, {
|
|
18674
|
+
readonly type: "function";
|
|
18675
|
+
readonly name: "totalSupply";
|
|
18676
|
+
readonly inputs: readonly [];
|
|
18677
|
+
readonly outputs: readonly [{
|
|
18678
|
+
readonly name: "";
|
|
18679
|
+
readonly type: "uint256";
|
|
18680
|
+
readonly internalType: "uint256";
|
|
18681
|
+
}];
|
|
18682
|
+
readonly stateMutability: "view";
|
|
18683
|
+
}, {
|
|
18684
|
+
readonly type: "function";
|
|
18685
|
+
readonly name: "transfer";
|
|
18686
|
+
readonly inputs: readonly [{
|
|
18687
|
+
readonly name: "to";
|
|
18688
|
+
readonly type: "address";
|
|
18689
|
+
readonly internalType: "address";
|
|
18690
|
+
}, {
|
|
18691
|
+
readonly name: "amount";
|
|
18692
|
+
readonly type: "uint256";
|
|
18693
|
+
readonly internalType: "uint256";
|
|
18694
|
+
}];
|
|
18695
|
+
readonly outputs: readonly [{
|
|
18696
|
+
readonly name: "success";
|
|
18697
|
+
readonly type: "bool";
|
|
18698
|
+
readonly internalType: "bool";
|
|
18699
|
+
}];
|
|
18700
|
+
readonly stateMutability: "nonpayable";
|
|
18701
|
+
}, {
|
|
18702
|
+
readonly type: "function";
|
|
18703
|
+
readonly name: "transferFrom";
|
|
18704
|
+
readonly inputs: readonly [{
|
|
18705
|
+
readonly name: "from";
|
|
18706
|
+
readonly type: "address";
|
|
18707
|
+
readonly internalType: "address";
|
|
18708
|
+
}, {
|
|
18709
|
+
readonly name: "to";
|
|
18710
|
+
readonly type: "address";
|
|
18711
|
+
readonly internalType: "address";
|
|
18712
|
+
}, {
|
|
18713
|
+
readonly name: "amount";
|
|
18714
|
+
readonly type: "uint256";
|
|
18715
|
+
readonly internalType: "uint256";
|
|
18716
|
+
}];
|
|
18717
|
+
readonly outputs: readonly [{
|
|
18718
|
+
readonly name: "success";
|
|
18719
|
+
readonly type: "bool";
|
|
18720
|
+
readonly internalType: "bool";
|
|
18721
|
+
}];
|
|
18722
|
+
readonly stateMutability: "nonpayable";
|
|
18723
|
+
}, {
|
|
18724
|
+
readonly type: "function";
|
|
18725
|
+
readonly name: "transferOwnership";
|
|
18726
|
+
readonly inputs: readonly [{
|
|
18727
|
+
readonly name: "newOwner";
|
|
18728
|
+
readonly type: "address";
|
|
18729
|
+
readonly internalType: "address";
|
|
18730
|
+
}];
|
|
18731
|
+
readonly outputs: readonly [];
|
|
18732
|
+
readonly stateMutability: "nonpayable";
|
|
18733
|
+
}, {
|
|
18734
|
+
readonly type: "function";
|
|
18735
|
+
readonly name: "underlyingToken";
|
|
18736
|
+
readonly inputs: readonly [];
|
|
18737
|
+
readonly outputs: readonly [{
|
|
18738
|
+
readonly name: "";
|
|
18739
|
+
readonly type: "address";
|
|
18740
|
+
readonly internalType: "address";
|
|
18741
|
+
}];
|
|
18742
|
+
readonly stateMutability: "view";
|
|
18743
|
+
}, {
|
|
18744
|
+
readonly type: "function";
|
|
18745
|
+
readonly name: "userBasis";
|
|
18746
|
+
readonly inputs: readonly [{
|
|
18747
|
+
readonly name: "user";
|
|
18748
|
+
readonly type: "address";
|
|
18749
|
+
readonly internalType: "address";
|
|
18750
|
+
}];
|
|
18751
|
+
readonly outputs: readonly [{
|
|
18752
|
+
readonly name: "basis";
|
|
18753
|
+
readonly type: "uint256";
|
|
18754
|
+
readonly internalType: "uint256";
|
|
18755
|
+
}];
|
|
18756
|
+
readonly stateMutability: "view";
|
|
18757
|
+
}, {
|
|
18758
|
+
readonly type: "function";
|
|
18759
|
+
readonly name: "withdrawalEpoch";
|
|
18760
|
+
readonly inputs: readonly [];
|
|
18761
|
+
readonly outputs: readonly [{
|
|
18762
|
+
readonly name: "";
|
|
18763
|
+
readonly type: "uint128";
|
|
18764
|
+
readonly internalType: "uint128";
|
|
18765
|
+
}];
|
|
18766
|
+
readonly stateMutability: "view";
|
|
18767
|
+
}, {
|
|
18768
|
+
readonly type: "function";
|
|
18769
|
+
readonly name: "withdrawalEpochState";
|
|
18770
|
+
readonly inputs: readonly [{
|
|
18771
|
+
readonly name: "epoch";
|
|
18772
|
+
readonly type: "uint256";
|
|
18773
|
+
readonly internalType: "uint256";
|
|
18774
|
+
}];
|
|
18775
|
+
readonly outputs: readonly [{
|
|
18776
|
+
readonly name: "sharesWithdrawn";
|
|
18777
|
+
readonly type: "uint128";
|
|
18778
|
+
readonly internalType: "uint128";
|
|
18779
|
+
}, {
|
|
18780
|
+
readonly name: "assetsReceived";
|
|
18781
|
+
readonly type: "uint128";
|
|
18782
|
+
readonly internalType: "uint128";
|
|
18783
|
+
}, {
|
|
18784
|
+
readonly name: "sharesFulfilled";
|
|
18785
|
+
readonly type: "uint128";
|
|
18786
|
+
readonly internalType: "uint128";
|
|
18787
|
+
}];
|
|
18788
|
+
readonly stateMutability: "view";
|
|
18789
|
+
}, {
|
|
18790
|
+
readonly type: "event";
|
|
18791
|
+
readonly name: "AccountantUpdated";
|
|
18792
|
+
readonly inputs: readonly [{
|
|
18793
|
+
readonly name: "oldAccountant";
|
|
18794
|
+
readonly type: "address";
|
|
18795
|
+
readonly indexed: true;
|
|
18796
|
+
readonly internalType: "contract IVaultAccountant";
|
|
18797
|
+
}, {
|
|
18798
|
+
readonly name: "newAccountant";
|
|
18799
|
+
readonly type: "address";
|
|
18800
|
+
readonly indexed: true;
|
|
18801
|
+
readonly internalType: "contract IVaultAccountant";
|
|
18802
|
+
}];
|
|
18803
|
+
readonly anonymous: false;
|
|
18804
|
+
}, {
|
|
18805
|
+
readonly type: "event";
|
|
18806
|
+
readonly name: "Approval";
|
|
18807
|
+
readonly inputs: readonly [{
|
|
18808
|
+
readonly name: "owner";
|
|
18809
|
+
readonly type: "address";
|
|
18810
|
+
readonly indexed: true;
|
|
18811
|
+
readonly internalType: "address";
|
|
18812
|
+
}, {
|
|
18813
|
+
readonly name: "spender";
|
|
18814
|
+
readonly type: "address";
|
|
18815
|
+
readonly indexed: true;
|
|
18816
|
+
readonly internalType: "address";
|
|
18817
|
+
}, {
|
|
18818
|
+
readonly name: "amount";
|
|
18819
|
+
readonly type: "uint256";
|
|
18820
|
+
readonly indexed: false;
|
|
18821
|
+
readonly internalType: "uint256";
|
|
18822
|
+
}];
|
|
18823
|
+
readonly anonymous: false;
|
|
18824
|
+
}, {
|
|
18825
|
+
readonly type: "event";
|
|
18826
|
+
readonly name: "DepositCancelled";
|
|
18827
|
+
readonly inputs: readonly [{
|
|
18828
|
+
readonly name: "user";
|
|
18829
|
+
readonly type: "address";
|
|
18830
|
+
readonly indexed: true;
|
|
18831
|
+
readonly internalType: "address";
|
|
18832
|
+
}, {
|
|
18833
|
+
readonly name: "assets";
|
|
18834
|
+
readonly type: "uint256";
|
|
18835
|
+
readonly indexed: false;
|
|
18836
|
+
readonly internalType: "uint256";
|
|
18837
|
+
}];
|
|
18838
|
+
readonly anonymous: false;
|
|
18839
|
+
}, {
|
|
18840
|
+
readonly type: "event";
|
|
18841
|
+
readonly name: "DepositExecuted";
|
|
18842
|
+
readonly inputs: readonly [{
|
|
18843
|
+
readonly name: "user";
|
|
18844
|
+
readonly type: "address";
|
|
18845
|
+
readonly indexed: true;
|
|
18846
|
+
readonly internalType: "address";
|
|
18847
|
+
}, {
|
|
18848
|
+
readonly name: "assets";
|
|
18849
|
+
readonly type: "uint256";
|
|
18850
|
+
readonly indexed: false;
|
|
18851
|
+
readonly internalType: "uint256";
|
|
18852
|
+
}, {
|
|
18853
|
+
readonly name: "shares";
|
|
18854
|
+
readonly type: "uint256";
|
|
18855
|
+
readonly indexed: false;
|
|
18856
|
+
readonly internalType: "uint256";
|
|
18857
|
+
}, {
|
|
18858
|
+
readonly name: "epoch";
|
|
18859
|
+
readonly type: "uint256";
|
|
18860
|
+
readonly indexed: false;
|
|
18861
|
+
readonly internalType: "uint256";
|
|
18862
|
+
}];
|
|
18863
|
+
readonly anonymous: false;
|
|
18864
|
+
}, {
|
|
18865
|
+
readonly type: "event";
|
|
18866
|
+
readonly name: "DepositRequested";
|
|
18867
|
+
readonly inputs: readonly [{
|
|
18868
|
+
readonly name: "user";
|
|
18869
|
+
readonly type: "address";
|
|
18870
|
+
readonly indexed: true;
|
|
18871
|
+
readonly internalType: "address";
|
|
18872
|
+
}, {
|
|
18873
|
+
readonly name: "assets";
|
|
18874
|
+
readonly type: "uint256";
|
|
18875
|
+
readonly indexed: false;
|
|
18876
|
+
readonly internalType: "uint256";
|
|
18877
|
+
}];
|
|
18878
|
+
readonly anonymous: false;
|
|
18879
|
+
}, {
|
|
18880
|
+
readonly type: "event";
|
|
18881
|
+
readonly name: "DepositsFulfilled";
|
|
18882
|
+
readonly inputs: readonly [{
|
|
18883
|
+
readonly name: "epoch";
|
|
18884
|
+
readonly type: "uint256";
|
|
18885
|
+
readonly indexed: true;
|
|
18886
|
+
readonly internalType: "uint256";
|
|
18887
|
+
}, {
|
|
18888
|
+
readonly name: "assetsFulfilled";
|
|
18889
|
+
readonly type: "uint256";
|
|
18890
|
+
readonly indexed: false;
|
|
18891
|
+
readonly internalType: "uint256";
|
|
18892
|
+
}, {
|
|
18893
|
+
readonly name: "sharesReceived";
|
|
18894
|
+
readonly type: "uint256";
|
|
18895
|
+
readonly indexed: false;
|
|
18896
|
+
readonly internalType: "uint256";
|
|
18897
|
+
}];
|
|
18898
|
+
readonly anonymous: false;
|
|
18899
|
+
}, {
|
|
18900
|
+
readonly type: "event";
|
|
18901
|
+
readonly name: "FeeWalletUpdated";
|
|
18902
|
+
readonly inputs: readonly [{
|
|
18903
|
+
readonly name: "oldFeeWallet";
|
|
18904
|
+
readonly type: "address";
|
|
18905
|
+
readonly indexed: true;
|
|
18906
|
+
readonly internalType: "address";
|
|
18907
|
+
}, {
|
|
18908
|
+
readonly name: "newFeeWallet";
|
|
18909
|
+
readonly type: "address";
|
|
18910
|
+
readonly indexed: true;
|
|
18911
|
+
readonly internalType: "address";
|
|
18912
|
+
}];
|
|
18913
|
+
readonly anonymous: false;
|
|
18914
|
+
}, {
|
|
18915
|
+
readonly type: "event";
|
|
18916
|
+
readonly name: "Initialized";
|
|
18917
|
+
readonly inputs: readonly [{
|
|
18918
|
+
readonly name: "version";
|
|
18919
|
+
readonly type: "uint64";
|
|
18920
|
+
readonly indexed: false;
|
|
18921
|
+
readonly internalType: "uint64";
|
|
18922
|
+
}];
|
|
18923
|
+
readonly anonymous: false;
|
|
18924
|
+
}, {
|
|
18925
|
+
readonly type: "event";
|
|
18926
|
+
readonly name: "ManagerUpdated";
|
|
18927
|
+
readonly inputs: readonly [{
|
|
18928
|
+
readonly name: "oldManager";
|
|
18929
|
+
readonly type: "address";
|
|
18930
|
+
readonly indexed: true;
|
|
18931
|
+
readonly internalType: "address";
|
|
18932
|
+
}, {
|
|
18933
|
+
readonly name: "newManager";
|
|
18934
|
+
readonly type: "address";
|
|
18935
|
+
readonly indexed: true;
|
|
18936
|
+
readonly internalType: "address";
|
|
18937
|
+
}];
|
|
18938
|
+
readonly anonymous: false;
|
|
18939
|
+
}, {
|
|
18940
|
+
readonly type: "event";
|
|
18941
|
+
readonly name: "OwnershipTransferred";
|
|
18942
|
+
readonly inputs: readonly [{
|
|
18943
|
+
readonly name: "previousOwner";
|
|
18944
|
+
readonly type: "address";
|
|
18945
|
+
readonly indexed: true;
|
|
18946
|
+
readonly internalType: "address";
|
|
18947
|
+
}, {
|
|
18948
|
+
readonly name: "newOwner";
|
|
18949
|
+
readonly type: "address";
|
|
18950
|
+
readonly indexed: true;
|
|
18951
|
+
readonly internalType: "address";
|
|
18952
|
+
}];
|
|
18953
|
+
readonly anonymous: false;
|
|
18954
|
+
}, {
|
|
18955
|
+
readonly type: "event";
|
|
18956
|
+
readonly name: "RedepositStatusChanged";
|
|
18957
|
+
readonly inputs: readonly [{
|
|
18958
|
+
readonly name: "user";
|
|
18959
|
+
readonly type: "address";
|
|
18960
|
+
readonly indexed: true;
|
|
18961
|
+
readonly internalType: "address";
|
|
18962
|
+
}, {
|
|
18963
|
+
readonly name: "epoch";
|
|
18964
|
+
readonly type: "uint256";
|
|
18965
|
+
readonly indexed: true;
|
|
18966
|
+
readonly internalType: "uint256";
|
|
18967
|
+
}, {
|
|
18968
|
+
readonly name: "shouldRedeposit";
|
|
18969
|
+
readonly type: "bool";
|
|
18970
|
+
readonly indexed: false;
|
|
18971
|
+
readonly internalType: "bool";
|
|
18972
|
+
}];
|
|
18973
|
+
readonly anonymous: false;
|
|
18974
|
+
}, {
|
|
18975
|
+
readonly type: "event";
|
|
18976
|
+
readonly name: "Transfer";
|
|
18977
|
+
readonly inputs: readonly [{
|
|
18978
|
+
readonly name: "from";
|
|
18979
|
+
readonly type: "address";
|
|
18980
|
+
readonly indexed: true;
|
|
18981
|
+
readonly internalType: "address";
|
|
18982
|
+
}, {
|
|
18983
|
+
readonly name: "to";
|
|
18984
|
+
readonly type: "address";
|
|
18985
|
+
readonly indexed: true;
|
|
18986
|
+
readonly internalType: "address";
|
|
18987
|
+
}, {
|
|
18988
|
+
readonly name: "amount";
|
|
18989
|
+
readonly type: "uint256";
|
|
18990
|
+
readonly indexed: false;
|
|
18991
|
+
readonly internalType: "uint256";
|
|
18992
|
+
}];
|
|
18993
|
+
readonly anonymous: false;
|
|
18994
|
+
}, {
|
|
18995
|
+
readonly type: "event";
|
|
18996
|
+
readonly name: "WithdrawalCancelled";
|
|
18997
|
+
readonly inputs: readonly [{
|
|
18998
|
+
readonly name: "user";
|
|
18999
|
+
readonly type: "address";
|
|
19000
|
+
readonly indexed: true;
|
|
19001
|
+
readonly internalType: "address";
|
|
19002
|
+
}, {
|
|
19003
|
+
readonly name: "shares";
|
|
19004
|
+
readonly type: "uint256";
|
|
19005
|
+
readonly indexed: false;
|
|
19006
|
+
readonly internalType: "uint256";
|
|
19007
|
+
}];
|
|
19008
|
+
readonly anonymous: false;
|
|
19009
|
+
}, {
|
|
19010
|
+
readonly type: "event";
|
|
19011
|
+
readonly name: "WithdrawalExecuted";
|
|
19012
|
+
readonly inputs: readonly [{
|
|
19013
|
+
readonly name: "user";
|
|
19014
|
+
readonly type: "address";
|
|
19015
|
+
readonly indexed: true;
|
|
19016
|
+
readonly internalType: "address";
|
|
19017
|
+
}, {
|
|
19018
|
+
readonly name: "shares";
|
|
19019
|
+
readonly type: "uint256";
|
|
19020
|
+
readonly indexed: false;
|
|
19021
|
+
readonly internalType: "uint256";
|
|
19022
|
+
}, {
|
|
19023
|
+
readonly name: "assets";
|
|
19024
|
+
readonly type: "uint256";
|
|
19025
|
+
readonly indexed: false;
|
|
19026
|
+
readonly internalType: "uint256";
|
|
19027
|
+
}, {
|
|
19028
|
+
readonly name: "performanceFee";
|
|
19029
|
+
readonly type: "uint256";
|
|
19030
|
+
readonly indexed: false;
|
|
19031
|
+
readonly internalType: "uint256";
|
|
19032
|
+
}, {
|
|
19033
|
+
readonly name: "epoch";
|
|
19034
|
+
readonly type: "uint256";
|
|
19035
|
+
readonly indexed: false;
|
|
19036
|
+
readonly internalType: "uint256";
|
|
19037
|
+
}, {
|
|
19038
|
+
readonly name: "shouldRedeposit";
|
|
19039
|
+
readonly type: "bool";
|
|
19040
|
+
readonly indexed: false;
|
|
19041
|
+
readonly internalType: "bool";
|
|
19042
|
+
}];
|
|
19043
|
+
readonly anonymous: false;
|
|
19044
|
+
}, {
|
|
19045
|
+
readonly type: "event";
|
|
19046
|
+
readonly name: "WithdrawalRequested";
|
|
19047
|
+
readonly inputs: readonly [{
|
|
19048
|
+
readonly name: "user";
|
|
19049
|
+
readonly type: "address";
|
|
19050
|
+
readonly indexed: true;
|
|
19051
|
+
readonly internalType: "address";
|
|
19052
|
+
}, {
|
|
19053
|
+
readonly name: "shares";
|
|
19054
|
+
readonly type: "uint256";
|
|
19055
|
+
readonly indexed: false;
|
|
19056
|
+
readonly internalType: "uint256";
|
|
19057
|
+
}, {
|
|
19058
|
+
readonly name: "shouldRedeposit";
|
|
19059
|
+
readonly type: "bool";
|
|
19060
|
+
readonly indexed: false;
|
|
19061
|
+
readonly internalType: "bool";
|
|
19062
|
+
}];
|
|
19063
|
+
readonly anonymous: false;
|
|
19064
|
+
}, {
|
|
19065
|
+
readonly type: "event";
|
|
19066
|
+
readonly name: "WithdrawalsFulfilled";
|
|
19067
|
+
readonly inputs: readonly [{
|
|
19068
|
+
readonly name: "epoch";
|
|
19069
|
+
readonly type: "uint256";
|
|
19070
|
+
readonly indexed: true;
|
|
19071
|
+
readonly internalType: "uint256";
|
|
19072
|
+
}, {
|
|
19073
|
+
readonly name: "assetsReceived";
|
|
19074
|
+
readonly type: "uint256";
|
|
19075
|
+
readonly indexed: false;
|
|
19076
|
+
readonly internalType: "uint256";
|
|
19077
|
+
}, {
|
|
19078
|
+
readonly name: "sharesFulfilled";
|
|
19079
|
+
readonly type: "uint256";
|
|
19080
|
+
readonly indexed: false;
|
|
19081
|
+
readonly internalType: "uint256";
|
|
19082
|
+
}];
|
|
19083
|
+
readonly anonymous: false;
|
|
19084
|
+
}, {
|
|
19085
|
+
readonly type: "error";
|
|
19086
|
+
readonly name: "EpochNotFulfilled";
|
|
19087
|
+
readonly inputs: readonly [];
|
|
19088
|
+
}, {
|
|
19089
|
+
readonly type: "error";
|
|
19090
|
+
readonly name: "InvalidInitialization";
|
|
19091
|
+
readonly inputs: readonly [];
|
|
19092
|
+
}, {
|
|
19093
|
+
readonly type: "error";
|
|
19094
|
+
readonly name: "NotInitializing";
|
|
19095
|
+
readonly inputs: readonly [];
|
|
19096
|
+
}, {
|
|
19097
|
+
readonly type: "error";
|
|
19098
|
+
readonly name: "NotManager";
|
|
19099
|
+
readonly inputs: readonly [];
|
|
19100
|
+
}, {
|
|
19101
|
+
readonly type: "error";
|
|
19102
|
+
readonly name: "OwnableInvalidOwner";
|
|
19103
|
+
readonly inputs: readonly [{
|
|
19104
|
+
readonly name: "owner";
|
|
19105
|
+
readonly type: "address";
|
|
19106
|
+
readonly internalType: "address";
|
|
19107
|
+
}];
|
|
19108
|
+
}, {
|
|
19109
|
+
readonly type: "error";
|
|
19110
|
+
readonly name: "OwnableUnauthorizedAccount";
|
|
19111
|
+
readonly inputs: readonly [{
|
|
19112
|
+
readonly name: "account";
|
|
19113
|
+
readonly type: "address";
|
|
19114
|
+
readonly internalType: "address";
|
|
19115
|
+
}];
|
|
19116
|
+
}, {
|
|
19117
|
+
readonly type: "error";
|
|
19118
|
+
readonly name: "TransferFailed";
|
|
19119
|
+
readonly inputs: readonly [];
|
|
19120
|
+
}, {
|
|
19121
|
+
readonly type: "error";
|
|
19122
|
+
readonly name: "WithdrawalNotFulfillable";
|
|
19123
|
+
readonly inputs: readonly [];
|
|
19124
|
+
}];
|
|
19125
|
+
readonly functionName: "cancelDeposit";
|
|
19126
|
+
readonly args: readonly [];
|
|
19127
|
+
};
|
|
19128
|
+
declare function encodeCancelDepositFunctionData(): Hex;
|
|
19129
|
+
declare function simulateCancelDeposit({
|
|
19130
|
+
viemClient,
|
|
19131
|
+
vaultAddress,
|
|
19132
|
+
account
|
|
19133
|
+
}: {
|
|
19134
|
+
viemClient: Client<Transport, Chain, Account$1 | undefined>;
|
|
19135
|
+
vaultAddress: Address;
|
|
19136
|
+
account?: Account$1 | Address;
|
|
19137
|
+
}): Promise<unknown>;
|
|
19138
|
+
declare function cancelDeposit({
|
|
19139
|
+
walletClient,
|
|
19140
|
+
vaultAddress,
|
|
19141
|
+
account
|
|
19142
|
+
}: {
|
|
19143
|
+
walletClient: Client<Transport, Chain, Account$1>;
|
|
19144
|
+
vaultAddress: Address;
|
|
19145
|
+
account?: Account$1 | Address;
|
|
19146
|
+
}): Promise<unknown>; //#endregion
|
|
19147
|
+
//#region src/hypoVault/cancelDeposit/hooks/use-cancel-deposit.d.ts
|
|
19148
|
+
declare const useCancelDeposit: ({
|
|
19149
|
+
vaultAddress,
|
|
19150
|
+
onWaitSuccess
|
|
19151
|
+
}: {
|
|
19152
|
+
vaultAddress: Address;
|
|
19153
|
+
onWaitSuccess?: (() => void) | undefined;
|
|
19154
|
+
}) => {
|
|
19155
|
+
actionLabel: string;
|
|
19156
|
+
act: () => any;
|
|
19157
|
+
canSubmit: boolean;
|
|
19158
|
+
isLoading: any;
|
|
19159
|
+
error: Error | undefined;
|
|
19160
|
+
simulate: Compute<any>;
|
|
19161
|
+
write: any;
|
|
19162
|
+
wait: Compute<any>;
|
|
19163
|
+
};
|
|
19164
|
+
|
|
19165
|
+
//#endregion
|
|
18022
19166
|
//#region src/hypoVault/executeWithdrawal/executeWithdrawal.d.ts
|
|
18023
19167
|
declare function encodeExecuteWithdrawalFunctionData({
|
|
18024
19168
|
user,
|
|
@@ -20272,108 +21416,383 @@ declare function calculateClaimableAssetsFromQueuedWithdrawals({
|
|
|
20272
21416
|
};
|
|
20273
21417
|
|
|
20274
21418
|
//#endregion
|
|
20275
|
-
//#region src/hypoVault/executeWithdrawal/hooks/use-execute-withdrawal.d.ts
|
|
20276
|
-
declare const useExecuteWithdrawal: ({
|
|
20277
|
-
vaultAddress,
|
|
20278
|
-
desiredAssets,
|
|
20279
|
-
queuedWithdrawals,
|
|
20280
|
-
withdrawalEpochStates,
|
|
20281
|
-
currentWithdrawalEpoch,
|
|
20282
|
-
onWaitSuccess
|
|
20283
|
-
}: {
|
|
20284
|
-
vaultAddress: Address;
|
|
20285
|
-
desiredAssets: bigint;
|
|
20286
|
-
queuedWithdrawals: QueuedWithdrawalSnapshot[];
|
|
20287
|
-
withdrawalEpochStates: WithdrawalEpochStateSnapshot[];
|
|
20288
|
-
currentWithdrawalEpoch: bigint;
|
|
20289
|
-
onWaitSuccess?: (() => void) | undefined;
|
|
20290
|
-
}) => {
|
|
20291
|
-
claimableAssets: bigint;
|
|
20292
|
-
assetsToExecute: bigint;
|
|
20293
|
-
epochsToExecute: bigint[];
|
|
20294
|
-
multicallCalldatas: `0x${string}`[];
|
|
20295
|
-
actionLabel: string;
|
|
20296
|
-
act: () => any;
|
|
20297
|
-
isLoading: any;
|
|
20298
|
-
error: Error | undefined;
|
|
20299
|
-
simulate: Compute<any>;
|
|
20300
|
-
write: any;
|
|
20301
|
-
wait: Compute<any>;
|
|
21419
|
+
//#region src/hypoVault/executeWithdrawal/hooks/use-execute-withdrawal.d.ts
|
|
21420
|
+
declare const useExecuteWithdrawal: ({
|
|
21421
|
+
vaultAddress,
|
|
21422
|
+
desiredAssets,
|
|
21423
|
+
queuedWithdrawals,
|
|
21424
|
+
withdrawalEpochStates,
|
|
21425
|
+
currentWithdrawalEpoch,
|
|
21426
|
+
onWaitSuccess
|
|
21427
|
+
}: {
|
|
21428
|
+
vaultAddress: Address;
|
|
21429
|
+
desiredAssets: bigint;
|
|
21430
|
+
queuedWithdrawals: QueuedWithdrawalSnapshot[];
|
|
21431
|
+
withdrawalEpochStates: WithdrawalEpochStateSnapshot[];
|
|
21432
|
+
currentWithdrawalEpoch: bigint;
|
|
21433
|
+
onWaitSuccess?: (() => void) | undefined;
|
|
21434
|
+
}) => {
|
|
21435
|
+
claimableAssets: bigint;
|
|
21436
|
+
assetsToExecute: bigint;
|
|
21437
|
+
epochsToExecute: bigint[];
|
|
21438
|
+
multicallCalldatas: `0x${string}`[];
|
|
21439
|
+
actionLabel: string;
|
|
21440
|
+
act: () => any;
|
|
21441
|
+
isLoading: any;
|
|
21442
|
+
error: Error | undefined;
|
|
21443
|
+
simulate: Compute<any>;
|
|
21444
|
+
write: any;
|
|
21445
|
+
wait: Compute<any>;
|
|
21446
|
+
};
|
|
21447
|
+
|
|
21448
|
+
//#endregion
|
|
21449
|
+
//#region src/hypoVault/hypoVaultManagerArtifacts/ProductionUSDCGammaStrategistLeaves.d.ts
|
|
21450
|
+
declare const ProductionUSDCGammaStrategistLeaves: {
|
|
21451
|
+
readonly metadata: {
|
|
21452
|
+
readonly AccountantAddress: "0x061AF4Fd2a015ed871e7EA406749cF268236C918";
|
|
21453
|
+
readonly BoringVaultAddress: "0xAed1bBE846605B9913F43C9c884399e3085C33f5";
|
|
21454
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21455
|
+
readonly DigestComposition: readonly ["Bytes20(DECODER_AND_SANITIZER_ADDRESS)", "Bytes20(TARGET_ADDRESS)", "Bytes1(CAN_SEND_VALUE)", "Bytes4(TARGET_FUNCTION_SELECTOR)", "Bytes{N*20}(ADDRESS_ARGUMENT_0,...,ADDRESS_ARGUMENT_N)"];
|
|
21456
|
+
readonly LeafCount: 11;
|
|
21457
|
+
readonly ManageRoot: "0x55ae620ed666b0e014a4d6b276e18e4ba55b79d0c741e171f63804ea123ac0c7";
|
|
21458
|
+
readonly ManagerAddress: "0x5214b3ee7c7913454a7f53cd9dC813D05D0043Ed";
|
|
21459
|
+
readonly TreeCapacity: 16;
|
|
21460
|
+
};
|
|
21461
|
+
readonly leafs: readonly [{
|
|
21462
|
+
readonly AddressArguments: readonly ["0xe2BD879109f84313AC986B2390110F5A240a9fa9"];
|
|
21463
|
+
readonly CanSendValue: false;
|
|
21464
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21465
|
+
readonly Description: "Approve poUSDC to spend USDC";
|
|
21466
|
+
readonly FunctionSelector: "0x095ea7b3";
|
|
21467
|
+
readonly FunctionSignature: "approve(address,uint256)";
|
|
21468
|
+
readonly LeafDigest: "0x8663df1ac55443db0f05fe1497cd6bde9bef2a253df8dd3825bed0b224e0aec8";
|
|
21469
|
+
readonly PackedArgumentAddresses: "0xe2bd879109f84313ac986b2390110f5a240a9fa9";
|
|
21470
|
+
readonly TargetAddress: "0xFFFeD8254566B7F800f6D8CDb843ec75AE49B07A";
|
|
21471
|
+
}, {
|
|
21472
|
+
readonly AddressArguments: readonly ["0xAed1bBE846605B9913F43C9c884399e3085C33f5"];
|
|
21473
|
+
readonly CanSendValue: false;
|
|
21474
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21475
|
+
readonly Description: "Deposit USDC for poUSDC";
|
|
21476
|
+
readonly FunctionSelector: "0x6e553f65";
|
|
21477
|
+
readonly FunctionSignature: "deposit(uint256,address)";
|
|
21478
|
+
readonly LeafDigest: "0x4bf3398b42a50dc899ac3dc143c0dac11125d62c50c268c91b54c74c4072fc2b";
|
|
21479
|
+
readonly PackedArgumentAddresses: "0xaed1bbe846605b9913f43c9c884399e3085c33f5";
|
|
21480
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
21481
|
+
}, {
|
|
21482
|
+
readonly AddressArguments: readonly ["0xAed1bBE846605B9913F43C9c884399e3085C33f5"];
|
|
21483
|
+
readonly CanSendValue: true;
|
|
21484
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21485
|
+
readonly Description: "Deposit USDC for poUSDC (payable)";
|
|
21486
|
+
readonly FunctionSelector: "0x6e553f65";
|
|
21487
|
+
readonly FunctionSignature: "deposit(uint256,address)";
|
|
21488
|
+
readonly LeafDigest: "0xbdebc37f956aa0ac0c4aa9625786b9701e1aa1578bcbf5fb604c976558901b61";
|
|
21489
|
+
readonly PackedArgumentAddresses: "0xaed1bbe846605b9913f43c9c884399e3085c33f5";
|
|
21490
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
21491
|
+
}, {
|
|
21492
|
+
readonly AddressArguments: readonly ["0xAed1bBE846605B9913F43C9c884399e3085C33f5", "0xAed1bBE846605B9913F43C9c884399e3085C33f5"];
|
|
21493
|
+
readonly CanSendValue: false;
|
|
21494
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21495
|
+
readonly Description: "Withdraw USDC from poUSDC";
|
|
21496
|
+
readonly FunctionSelector: "0xb460af94";
|
|
21497
|
+
readonly FunctionSignature: "withdraw(uint256,address,address)";
|
|
21498
|
+
readonly LeafDigest: "0xec54f4ffedf4edb6e24c63f77bf0dc9570215f827d0e017af3f0742ce35162c2";
|
|
21499
|
+
readonly PackedArgumentAddresses: "0xaed1bbe846605b9913f43c9c884399e3085c33f5aed1bbe846605b9913f43c9c884399e3085c33f5";
|
|
21500
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
21501
|
+
}, {
|
|
21502
|
+
readonly AddressArguments: readonly ["0xAed1bBE846605B9913F43C9c884399e3085C33f5", "0xAed1bBE846605B9913F43C9c884399e3085C33f5"];
|
|
21503
|
+
readonly CanSendValue: false;
|
|
21504
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21505
|
+
readonly Description: "Withdraw USDC from poUSDC";
|
|
21506
|
+
readonly FunctionSelector: "0x795a1f0d";
|
|
21507
|
+
readonly FunctionSignature: "withdraw(uint256,address,address,uint256[])";
|
|
21508
|
+
readonly LeafDigest: "0x9dc4dc2afdb2238cb09de4007c6140512a95bfe863a0cd916c8b63fc0e0a0cbe";
|
|
21509
|
+
readonly PackedArgumentAddresses: "0xaed1bbe846605b9913f43c9c884399e3085c33f5aed1bbe846605b9913f43c9c884399e3085c33f5";
|
|
21510
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
21511
|
+
}, {
|
|
21512
|
+
readonly AddressArguments: readonly ["0xAed1bBE846605B9913F43C9c884399e3085C33f5"];
|
|
21513
|
+
readonly CanSendValue: false;
|
|
21514
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21515
|
+
readonly Description: "Mint poUSDC using USDC";
|
|
21516
|
+
readonly FunctionSelector: "0x94bf804d";
|
|
21517
|
+
readonly FunctionSignature: "mint(uint256,address)";
|
|
21518
|
+
readonly LeafDigest: "0x14d886768796dbb64b5d768d71ff7c827a740b000a37ce8690cd0c810128031e";
|
|
21519
|
+
readonly PackedArgumentAddresses: "0xaed1bbe846605b9913f43c9c884399e3085c33f5";
|
|
21520
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
21521
|
+
}, {
|
|
21522
|
+
readonly AddressArguments: readonly ["0xAed1bBE846605B9913F43C9c884399e3085C33f5"];
|
|
21523
|
+
readonly CanSendValue: true;
|
|
21524
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21525
|
+
readonly Description: "Mint poUSDC using USDC (payable)";
|
|
21526
|
+
readonly FunctionSelector: "0x94bf804d";
|
|
21527
|
+
readonly FunctionSignature: "mint(uint256,address)";
|
|
21528
|
+
readonly LeafDigest: "0x506412cb75d2e7bc998eb96807f7588eb7068b24713295afa9d317112aa6b297";
|
|
21529
|
+
readonly PackedArgumentAddresses: "0xaed1bbe846605b9913f43c9c884399e3085c33f5";
|
|
21530
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
21531
|
+
}, {
|
|
21532
|
+
readonly AddressArguments: readonly ["0xAed1bBE846605B9913F43C9c884399e3085C33f5", "0xAed1bBE846605B9913F43C9c884399e3085C33f5"];
|
|
21533
|
+
readonly CanSendValue: false;
|
|
21534
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21535
|
+
readonly Description: "Redeem poUSDC for USDC";
|
|
21536
|
+
readonly FunctionSelector: "0xba087652";
|
|
21537
|
+
readonly FunctionSignature: "redeem(uint256,address,address)";
|
|
21538
|
+
readonly LeafDigest: "0x72479b43d124b4adeab2a2c405d70f6b9a13a707478675873e629016b4bd736b";
|
|
21539
|
+
readonly PackedArgumentAddresses: "0xaed1bbe846605b9913f43c9c884399e3085c33f5aed1bbe846605b9913f43c9c884399e3085c33f5";
|
|
21540
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
21541
|
+
}, {
|
|
21542
|
+
readonly AddressArguments: readonly [];
|
|
21543
|
+
readonly CanSendValue: false;
|
|
21544
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21545
|
+
readonly Description: "Dispatch mint/burn options on PanopticPool";
|
|
21546
|
+
readonly FunctionSelector: "0xc25813aa";
|
|
21547
|
+
readonly FunctionSignature: "dispatch(uint256[],uint256[],uint128[],int24[3][],bool,uint256)";
|
|
21548
|
+
readonly LeafDigest: "0x0cfafbcb312ae216c967b7e2f5eb41516f192473291b61604dd09d4784625e63";
|
|
21549
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21550
|
+
readonly TargetAddress: "0x5D44F6574B8dE88ffa2CCAEba0B07aD3C204571E";
|
|
21551
|
+
}, {
|
|
21552
|
+
readonly AddressArguments: readonly [];
|
|
21553
|
+
readonly CanSendValue: true;
|
|
21554
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21555
|
+
readonly Description: "Wrap ETH to WETH";
|
|
21556
|
+
readonly FunctionSelector: "0xd0e30db0";
|
|
21557
|
+
readonly FunctionSignature: "deposit()";
|
|
21558
|
+
readonly LeafDigest: "0xb2aef7663f89e5d8fe36d0b5aa587b3c2757cb331e012d780a0dbb671202ce54";
|
|
21559
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21560
|
+
readonly TargetAddress: "0xfFf9976782d46CC05630D1f6eBAb18b2324d6B14";
|
|
21561
|
+
}, {
|
|
21562
|
+
readonly AddressArguments: readonly [];
|
|
21563
|
+
readonly CanSendValue: false;
|
|
21564
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21565
|
+
readonly Description: "Unwrap WETH to ETH";
|
|
21566
|
+
readonly FunctionSelector: "0x2e1a7d4d";
|
|
21567
|
+
readonly FunctionSignature: "withdraw(uint256)";
|
|
21568
|
+
readonly LeafDigest: "0xf19f2620d35392f96bfad6680277e285442d996a6232da14399b2406aada4433";
|
|
21569
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21570
|
+
readonly TargetAddress: "0xfFf9976782d46CC05630D1f6eBAb18b2324d6B14";
|
|
21571
|
+
}, {
|
|
21572
|
+
readonly AddressArguments: readonly [];
|
|
21573
|
+
readonly CanSendValue: false;
|
|
21574
|
+
readonly DecoderAndSanitizerAddress: "0x0000000000000000000000000000000000000000";
|
|
21575
|
+
readonly Description: "";
|
|
21576
|
+
readonly FunctionSelector: "0xc5d24601";
|
|
21577
|
+
readonly FunctionSignature: "";
|
|
21578
|
+
readonly LeafDigest: "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400";
|
|
21579
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21580
|
+
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
21581
|
+
}, {
|
|
21582
|
+
readonly AddressArguments: readonly [];
|
|
21583
|
+
readonly CanSendValue: false;
|
|
21584
|
+
readonly DecoderAndSanitizerAddress: "0x0000000000000000000000000000000000000000";
|
|
21585
|
+
readonly Description: "";
|
|
21586
|
+
readonly FunctionSelector: "0xc5d24601";
|
|
21587
|
+
readonly FunctionSignature: "";
|
|
21588
|
+
readonly LeafDigest: "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400";
|
|
21589
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21590
|
+
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
21591
|
+
}, {
|
|
21592
|
+
readonly AddressArguments: readonly [];
|
|
21593
|
+
readonly CanSendValue: false;
|
|
21594
|
+
readonly DecoderAndSanitizerAddress: "0x0000000000000000000000000000000000000000";
|
|
21595
|
+
readonly Description: "";
|
|
21596
|
+
readonly FunctionSelector: "0xc5d24601";
|
|
21597
|
+
readonly FunctionSignature: "";
|
|
21598
|
+
readonly LeafDigest: "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400";
|
|
21599
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21600
|
+
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
21601
|
+
}, {
|
|
21602
|
+
readonly AddressArguments: readonly [];
|
|
21603
|
+
readonly CanSendValue: false;
|
|
21604
|
+
readonly DecoderAndSanitizerAddress: "0x0000000000000000000000000000000000000000";
|
|
21605
|
+
readonly Description: "";
|
|
21606
|
+
readonly FunctionSelector: "0xc5d24601";
|
|
21607
|
+
readonly FunctionSignature: "";
|
|
21608
|
+
readonly LeafDigest: "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400";
|
|
21609
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21610
|
+
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
21611
|
+
}, {
|
|
21612
|
+
readonly AddressArguments: readonly [];
|
|
21613
|
+
readonly CanSendValue: false;
|
|
21614
|
+
readonly DecoderAndSanitizerAddress: "0x0000000000000000000000000000000000000000";
|
|
21615
|
+
readonly Description: "";
|
|
21616
|
+
readonly FunctionSelector: "0xc5d24601";
|
|
21617
|
+
readonly FunctionSignature: "";
|
|
21618
|
+
readonly LeafDigest: "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400";
|
|
21619
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21620
|
+
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
21621
|
+
}];
|
|
21622
|
+
readonly MerkleTree: {
|
|
21623
|
+
readonly '0': readonly ["0x55ae620ed666b0e014a4d6b276e18e4ba55b79d0c741e171f63804ea123ac0c7"];
|
|
21624
|
+
readonly '1': readonly ["0xb207db6f2f976d48e751fddae1a5656d7b4a7964f229cf2b5b0ac383f52f62a4", "0x93c4636deb159a40ef8ea624b39d7e8e2f3be1e5ea96d0f7b4c3c707284e3dcc"];
|
|
21625
|
+
readonly '2': readonly ["0xcae4ec7e78b00ce195d96171ce61d10f6dd0849980d4b49c29fa330050daea94", "0x2b0dad8ecd6563765ee7a966dbc7c524a39e535316a12180f88ada4aa9cc98e2", "0x8cecdeedb91d1c78d98bd6497896b7ba793fe0b9fb7febc9e0853b81927b8283", "0x849eda7a295b642e5ddaf49a30eec4470cf507efa83b4104c0752d069c7638fe"];
|
|
21626
|
+
readonly '3': readonly ["0x960c1e8c12f9d734648ff9e7069cd821a26c9f8f81cea1b5d5a7a9835adc75bd", "0x8b86bcad22fbd334277bc6bb7ff27c5f6353a931c0df3f5c53bd70a7750c4197", "0xb898222e0f69e1f18241078d591108459c138ece5f96798c01e8b781ed445ee3", "0x9e5fa07e4f1d3b60f3ccce3a84edf5dbb0ccbe539d988c81bb6c6246e4695260", "0x81c5d6c12f48338e385f0400cd2c56e4cbd93094f47503c30e72648f97ba8457", "0x349f5d427759c09b0ed4892d7b9b900873922204f917196f6f0c177f82d6064e", "0xc5a36f3b7b955966d5ed3135dcc612f978306d73bce3697e230afae57fbaeeba", "0xc5a36f3b7b955966d5ed3135dcc612f978306d73bce3697e230afae57fbaeeba"];
|
|
21627
|
+
readonly '4': readonly ["0x8663df1ac55443db0f05fe1497cd6bde9bef2a253df8dd3825bed0b224e0aec8", "0x4bf3398b42a50dc899ac3dc143c0dac11125d62c50c268c91b54c74c4072fc2b", "0xbdebc37f956aa0ac0c4aa9625786b9701e1aa1578bcbf5fb604c976558901b61", "0xec54f4ffedf4edb6e24c63f77bf0dc9570215f827d0e017af3f0742ce35162c2", "0x9dc4dc2afdb2238cb09de4007c6140512a95bfe863a0cd916c8b63fc0e0a0cbe", "0x14d886768796dbb64b5d768d71ff7c827a740b000a37ce8690cd0c810128031e", "0x506412cb75d2e7bc998eb96807f7588eb7068b24713295afa9d317112aa6b297", "0x72479b43d124b4adeab2a2c405d70f6b9a13a707478675873e629016b4bd736b", "0x0cfafbcb312ae216c967b7e2f5eb41516f192473291b61604dd09d4784625e63", "0xb2aef7663f89e5d8fe36d0b5aa587b3c2757cb331e012d780a0dbb671202ce54", "0xf19f2620d35392f96bfad6680277e285442d996a6232da14399b2406aada4433", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400"];
|
|
21628
|
+
};
|
|
21629
|
+
};
|
|
21630
|
+
|
|
21631
|
+
//#endregion
|
|
21632
|
+
//#region src/hypoVault/hypoVaultManagerArtifacts/ProductionUSDCGammaVaultPoolInfos.d.ts
|
|
21633
|
+
declare const ProductionUSDCGammaVaultPoolInfos: {
|
|
21634
|
+
readonly vaultAddress: "0xAed1bBE846605B9913F43C9c884399e3085C33f5";
|
|
21635
|
+
readonly poolInfos: readonly [{
|
|
21636
|
+
readonly maxPriceDeviation: 100;
|
|
21637
|
+
readonly pool: "0x5D44F6574B8dE88ffa2CCAEba0B07aD3C204571E";
|
|
21638
|
+
readonly token0: "0x0000000000000000000000000000000000000000";
|
|
21639
|
+
readonly token1: "0xFFFeD8254566B7F800f6D8CDb843ec75AE49B07A";
|
|
21640
|
+
}];
|
|
20302
21641
|
};
|
|
20303
21642
|
|
|
20304
21643
|
//#endregion
|
|
20305
21644
|
//#region src/hypoVault/hypoVaultManagerArtifacts/ProductionUSDCPLPStrategistLeaves.d.ts
|
|
20306
21645
|
declare const ProductionUSDCPLPStrategistLeaves: {
|
|
20307
21646
|
readonly metadata: {
|
|
20308
|
-
readonly AccountantAddress: "
|
|
20309
|
-
readonly BoringVaultAddress: "
|
|
20310
|
-
readonly DecoderAndSanitizerAddress: "
|
|
21647
|
+
readonly AccountantAddress: "0x061AF4Fd2a015ed871e7EA406749cF268236C918";
|
|
21648
|
+
readonly BoringVaultAddress: "0xC4Bcfe746fdAB946Ac79244c5Fd5E4f3c08c9F87";
|
|
21649
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
20311
21650
|
readonly DigestComposition: readonly ["Bytes20(DECODER_AND_SANITIZER_ADDRESS)", "Bytes20(TARGET_ADDRESS)", "Bytes1(CAN_SEND_VALUE)", "Bytes4(TARGET_FUNCTION_SELECTOR)", "Bytes{N*20}(ADDRESS_ARGUMENT_0,...,ADDRESS_ARGUMENT_N)"];
|
|
20312
|
-
readonly LeafCount:
|
|
20313
|
-
readonly ManageRoot: "
|
|
20314
|
-
readonly ManagerAddress: "
|
|
20315
|
-
readonly TreeCapacity:
|
|
21651
|
+
readonly LeafCount: 11;
|
|
21652
|
+
readonly ManageRoot: "0x5634495896a0077485c8ff7d8d0ad0f3281cbc7a7dcbf392bddcfda3cc916aa2";
|
|
21653
|
+
readonly ManagerAddress: "0x2FDaAeb3401DC87c2A8082Bf42c7ea05856c200b";
|
|
21654
|
+
readonly TreeCapacity: 16;
|
|
20316
21655
|
};
|
|
20317
21656
|
readonly leafs: readonly [{
|
|
20318
|
-
readonly AddressArguments: readonly ["
|
|
21657
|
+
readonly AddressArguments: readonly ["0xe2BD879109f84313AC986B2390110F5A240a9fa9"];
|
|
20319
21658
|
readonly CanSendValue: false;
|
|
20320
|
-
readonly DecoderAndSanitizerAddress: "
|
|
21659
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
20321
21660
|
readonly Description: "Approve poUSDC to spend USDC";
|
|
20322
21661
|
readonly FunctionSelector: "0x095ea7b3";
|
|
20323
21662
|
readonly FunctionSignature: "approve(address,uint256)";
|
|
20324
|
-
readonly LeafDigest: "
|
|
20325
|
-
readonly PackedArgumentAddresses: "
|
|
21663
|
+
readonly LeafDigest: "0x8663df1ac55443db0f05fe1497cd6bde9bef2a253df8dd3825bed0b224e0aec8";
|
|
21664
|
+
readonly PackedArgumentAddresses: "0xe2bd879109f84313ac986b2390110f5a240a9fa9";
|
|
20326
21665
|
readonly TargetAddress: "0xFFFeD8254566B7F800f6D8CDb843ec75AE49B07A";
|
|
20327
21666
|
}, {
|
|
20328
|
-
readonly AddressArguments: readonly ["
|
|
21667
|
+
readonly AddressArguments: readonly ["0xC4Bcfe746fdAB946Ac79244c5Fd5E4f3c08c9F87"];
|
|
20329
21668
|
readonly CanSendValue: false;
|
|
20330
|
-
readonly DecoderAndSanitizerAddress: "
|
|
21669
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
20331
21670
|
readonly Description: "Deposit USDC for poUSDC";
|
|
20332
21671
|
readonly FunctionSelector: "0x6e553f65";
|
|
20333
21672
|
readonly FunctionSignature: "deposit(uint256,address)";
|
|
20334
|
-
readonly LeafDigest: "
|
|
20335
|
-
readonly PackedArgumentAddresses: "
|
|
20336
|
-
readonly TargetAddress: "
|
|
21673
|
+
readonly LeafDigest: "0xd1428d14cedc73c9d9bb33bac7bcd2c53c8ac34272281ebe76420c39aea497f9";
|
|
21674
|
+
readonly PackedArgumentAddresses: "0xc4bcfe746fdab946ac79244c5fd5e4f3c08c9f87";
|
|
21675
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
21676
|
+
}, {
|
|
21677
|
+
readonly AddressArguments: readonly ["0xC4Bcfe746fdAB946Ac79244c5Fd5E4f3c08c9F87"];
|
|
21678
|
+
readonly CanSendValue: true;
|
|
21679
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21680
|
+
readonly Description: "Deposit USDC for poUSDC (payable)";
|
|
21681
|
+
readonly FunctionSelector: "0x6e553f65";
|
|
21682
|
+
readonly FunctionSignature: "deposit(uint256,address)";
|
|
21683
|
+
readonly LeafDigest: "0xf11106bf026d053b7196bd7a9ae8b72d5375a0ffca088f824fea49806d35104d";
|
|
21684
|
+
readonly PackedArgumentAddresses: "0xc4bcfe746fdab946ac79244c5fd5e4f3c08c9f87";
|
|
21685
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
20337
21686
|
}, {
|
|
20338
|
-
readonly AddressArguments: readonly ["
|
|
21687
|
+
readonly AddressArguments: readonly ["0xC4Bcfe746fdAB946Ac79244c5Fd5E4f3c08c9F87", "0xC4Bcfe746fdAB946Ac79244c5Fd5E4f3c08c9F87"];
|
|
20339
21688
|
readonly CanSendValue: false;
|
|
20340
|
-
readonly DecoderAndSanitizerAddress: "
|
|
21689
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
20341
21690
|
readonly Description: "Withdraw USDC from poUSDC";
|
|
20342
21691
|
readonly FunctionSelector: "0xb460af94";
|
|
20343
21692
|
readonly FunctionSignature: "withdraw(uint256,address,address)";
|
|
20344
|
-
readonly LeafDigest: "
|
|
20345
|
-
readonly PackedArgumentAddresses: "
|
|
20346
|
-
readonly TargetAddress: "
|
|
21693
|
+
readonly LeafDigest: "0xf0064888c63b8cc64c4740111eaadbd95b51a1bd5e4b39ac291435ccc4f0dcf2";
|
|
21694
|
+
readonly PackedArgumentAddresses: "0xc4bcfe746fdab946ac79244c5fd5e4f3c08c9f87c4bcfe746fdab946ac79244c5fd5e4f3c08c9f87";
|
|
21695
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
20347
21696
|
}, {
|
|
20348
|
-
readonly AddressArguments: readonly ["
|
|
21697
|
+
readonly AddressArguments: readonly ["0xC4Bcfe746fdAB946Ac79244c5Fd5E4f3c08c9F87", "0xC4Bcfe746fdAB946Ac79244c5Fd5E4f3c08c9F87"];
|
|
20349
21698
|
readonly CanSendValue: false;
|
|
20350
|
-
readonly DecoderAndSanitizerAddress: "
|
|
21699
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
20351
21700
|
readonly Description: "Withdraw USDC from poUSDC";
|
|
20352
21701
|
readonly FunctionSelector: "0x795a1f0d";
|
|
20353
21702
|
readonly FunctionSignature: "withdraw(uint256,address,address,uint256[])";
|
|
20354
|
-
readonly LeafDigest: "
|
|
20355
|
-
readonly PackedArgumentAddresses: "
|
|
20356
|
-
readonly TargetAddress: "
|
|
21703
|
+
readonly LeafDigest: "0xf4101e3dea49bf3757c8ab8568709d9b171e8a29478714ef4ebe1d28a10be66d";
|
|
21704
|
+
readonly PackedArgumentAddresses: "0xc4bcfe746fdab946ac79244c5fd5e4f3c08c9f87c4bcfe746fdab946ac79244c5fd5e4f3c08c9f87";
|
|
21705
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
20357
21706
|
}, {
|
|
20358
|
-
readonly AddressArguments: readonly ["
|
|
21707
|
+
readonly AddressArguments: readonly ["0xC4Bcfe746fdAB946Ac79244c5Fd5E4f3c08c9F87"];
|
|
20359
21708
|
readonly CanSendValue: false;
|
|
20360
|
-
readonly DecoderAndSanitizerAddress: "
|
|
21709
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
20361
21710
|
readonly Description: "Mint poUSDC using USDC";
|
|
20362
21711
|
readonly FunctionSelector: "0x94bf804d";
|
|
20363
21712
|
readonly FunctionSignature: "mint(uint256,address)";
|
|
20364
|
-
readonly LeafDigest: "
|
|
20365
|
-
readonly PackedArgumentAddresses: "
|
|
20366
|
-
readonly TargetAddress: "
|
|
21713
|
+
readonly LeafDigest: "0x78e45f4d6477f374e518661063392d4c8e9c14be22d02e6bf05d954a76654314";
|
|
21714
|
+
readonly PackedArgumentAddresses: "0xc4bcfe746fdab946ac79244c5fd5e4f3c08c9f87";
|
|
21715
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
21716
|
+
}, {
|
|
21717
|
+
readonly AddressArguments: readonly ["0xC4Bcfe746fdAB946Ac79244c5Fd5E4f3c08c9F87"];
|
|
21718
|
+
readonly CanSendValue: true;
|
|
21719
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21720
|
+
readonly Description: "Mint poUSDC using USDC (payable)";
|
|
21721
|
+
readonly FunctionSelector: "0x94bf804d";
|
|
21722
|
+
readonly FunctionSignature: "mint(uint256,address)";
|
|
21723
|
+
readonly LeafDigest: "0x364f71043240d4b2e4b2879f5f892c2e8ff7c454e49e7b54d63c3ef9d9d90bc9";
|
|
21724
|
+
readonly PackedArgumentAddresses: "0xc4bcfe746fdab946ac79244c5fd5e4f3c08c9f87";
|
|
21725
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
20367
21726
|
}, {
|
|
20368
|
-
readonly AddressArguments: readonly ["
|
|
21727
|
+
readonly AddressArguments: readonly ["0xC4Bcfe746fdAB946Ac79244c5Fd5E4f3c08c9F87", "0xC4Bcfe746fdAB946Ac79244c5Fd5E4f3c08c9F87"];
|
|
20369
21728
|
readonly CanSendValue: false;
|
|
20370
|
-
readonly DecoderAndSanitizerAddress: "
|
|
21729
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
20371
21730
|
readonly Description: "Redeem poUSDC for USDC";
|
|
20372
21731
|
readonly FunctionSelector: "0xba087652";
|
|
20373
21732
|
readonly FunctionSignature: "redeem(uint256,address,address)";
|
|
20374
|
-
readonly LeafDigest: "
|
|
20375
|
-
readonly PackedArgumentAddresses: "
|
|
20376
|
-
readonly TargetAddress: "
|
|
21733
|
+
readonly LeafDigest: "0xf7331c312f77a834caaba1f91f62b6ba2ba4632e0a6ebaabce98f6462a0911f3";
|
|
21734
|
+
readonly PackedArgumentAddresses: "0xc4bcfe746fdab946ac79244c5fd5e4f3c08c9f87c4bcfe746fdab946ac79244c5fd5e4f3c08c9f87";
|
|
21735
|
+
readonly TargetAddress: "0xe2BD879109f84313AC986B2390110F5A240a9fa9";
|
|
21736
|
+
}, {
|
|
21737
|
+
readonly AddressArguments: readonly [];
|
|
21738
|
+
readonly CanSendValue: false;
|
|
21739
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21740
|
+
readonly Description: "Dispatch mint/burn options on PanopticPool";
|
|
21741
|
+
readonly FunctionSelector: "0xc25813aa";
|
|
21742
|
+
readonly FunctionSignature: "dispatch(uint256[],uint256[],uint128[],int24[3][],bool,uint256)";
|
|
21743
|
+
readonly LeafDigest: "0x0cfafbcb312ae216c967b7e2f5eb41516f192473291b61604dd09d4784625e63";
|
|
21744
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21745
|
+
readonly TargetAddress: "0x5D44F6574B8dE88ffa2CCAEba0B07aD3C204571E";
|
|
21746
|
+
}, {
|
|
21747
|
+
readonly AddressArguments: readonly [];
|
|
21748
|
+
readonly CanSendValue: true;
|
|
21749
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21750
|
+
readonly Description: "Wrap ETH to WETH";
|
|
21751
|
+
readonly FunctionSelector: "0xd0e30db0";
|
|
21752
|
+
readonly FunctionSignature: "deposit()";
|
|
21753
|
+
readonly LeafDigest: "0xb2aef7663f89e5d8fe36d0b5aa587b3c2757cb331e012d780a0dbb671202ce54";
|
|
21754
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21755
|
+
readonly TargetAddress: "0xfFf9976782d46CC05630D1f6eBAb18b2324d6B14";
|
|
21756
|
+
}, {
|
|
21757
|
+
readonly AddressArguments: readonly [];
|
|
21758
|
+
readonly CanSendValue: false;
|
|
21759
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21760
|
+
readonly Description: "Unwrap WETH to ETH";
|
|
21761
|
+
readonly FunctionSelector: "0x2e1a7d4d";
|
|
21762
|
+
readonly FunctionSignature: "withdraw(uint256)";
|
|
21763
|
+
readonly LeafDigest: "0xf19f2620d35392f96bfad6680277e285442d996a6232da14399b2406aada4433";
|
|
21764
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21765
|
+
readonly TargetAddress: "0xfFf9976782d46CC05630D1f6eBAb18b2324d6B14";
|
|
21766
|
+
}, {
|
|
21767
|
+
readonly AddressArguments: readonly [];
|
|
21768
|
+
readonly CanSendValue: false;
|
|
21769
|
+
readonly DecoderAndSanitizerAddress: "0x0000000000000000000000000000000000000000";
|
|
21770
|
+
readonly Description: "";
|
|
21771
|
+
readonly FunctionSelector: "0xc5d24601";
|
|
21772
|
+
readonly FunctionSignature: "";
|
|
21773
|
+
readonly LeafDigest: "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400";
|
|
21774
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21775
|
+
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
21776
|
+
}, {
|
|
21777
|
+
readonly AddressArguments: readonly [];
|
|
21778
|
+
readonly CanSendValue: false;
|
|
21779
|
+
readonly DecoderAndSanitizerAddress: "0x0000000000000000000000000000000000000000";
|
|
21780
|
+
readonly Description: "";
|
|
21781
|
+
readonly FunctionSelector: "0xc5d24601";
|
|
21782
|
+
readonly FunctionSignature: "";
|
|
21783
|
+
readonly LeafDigest: "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400";
|
|
21784
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21785
|
+
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
21786
|
+
}, {
|
|
21787
|
+
readonly AddressArguments: readonly [];
|
|
21788
|
+
readonly CanSendValue: false;
|
|
21789
|
+
readonly DecoderAndSanitizerAddress: "0x0000000000000000000000000000000000000000";
|
|
21790
|
+
readonly Description: "";
|
|
21791
|
+
readonly FunctionSelector: "0xc5d24601";
|
|
21792
|
+
readonly FunctionSignature: "";
|
|
21793
|
+
readonly LeafDigest: "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400";
|
|
21794
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21795
|
+
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
20377
21796
|
}, {
|
|
20378
21797
|
readonly AddressArguments: readonly [];
|
|
20379
21798
|
readonly CanSendValue: false;
|
|
@@ -20396,21 +21815,22 @@ declare const ProductionUSDCPLPStrategistLeaves: {
|
|
|
20396
21815
|
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
20397
21816
|
}];
|
|
20398
21817
|
readonly MerkleTree: {
|
|
20399
|
-
readonly '0': readonly ["
|
|
20400
|
-
readonly '1': readonly ["
|
|
20401
|
-
readonly '2': readonly ["
|
|
20402
|
-
readonly '3': readonly ["
|
|
21818
|
+
readonly '0': readonly ["0x5634495896a0077485c8ff7d8d0ad0f3281cbc7a7dcbf392bddcfda3cc916aa2"];
|
|
21819
|
+
readonly '1': readonly ["0x6c1b8049d5e46a7987d46575b47d436eca2b368fb5f7202e644ea949beaca529", "0x93c4636deb159a40ef8ea624b39d7e8e2f3be1e5ea96d0f7b4c3c707284e3dcc"];
|
|
21820
|
+
readonly '2': readonly ["0xd1197fb9db16150a641971abcf07350abd60fa4a6fb251c695ed4a27a274d98d", "0x90ec909d5c2669b49342bdd070c95ab8f6fb802b3fdbba031138c8bd45e78ce8", "0x8cecdeedb91d1c78d98bd6497896b7ba793fe0b9fb7febc9e0853b81927b8283", "0x849eda7a295b642e5ddaf49a30eec4470cf507efa83b4104c0752d069c7638fe"];
|
|
21821
|
+
readonly '3': readonly ["0x31748f7f747436f6d5154d4a75e9fd7b8742dd9b8c2c6854bcf5c558954f298c", "0x829f9a2495c47a6ceadab444a69d0d6a43a037b5a39694115db9972d7845d62d", "0x69b2ebf3b2d8d4ca088f6568a3077e183d84942cc6de224d196e626a896f3826", "0x5970aa0aad46dd5efbe0991fabe2b64242dcf8db7d7978e65c731837b9ef4193", "0x81c5d6c12f48338e385f0400cd2c56e4cbd93094f47503c30e72648f97ba8457", "0x349f5d427759c09b0ed4892d7b9b900873922204f917196f6f0c177f82d6064e", "0xc5a36f3b7b955966d5ed3135dcc612f978306d73bce3697e230afae57fbaeeba", "0xc5a36f3b7b955966d5ed3135dcc612f978306d73bce3697e230afae57fbaeeba"];
|
|
21822
|
+
readonly '4': readonly ["0x8663df1ac55443db0f05fe1497cd6bde9bef2a253df8dd3825bed0b224e0aec8", "0xd1428d14cedc73c9d9bb33bac7bcd2c53c8ac34272281ebe76420c39aea497f9", "0xf11106bf026d053b7196bd7a9ae8b72d5375a0ffca088f824fea49806d35104d", "0xf0064888c63b8cc64c4740111eaadbd95b51a1bd5e4b39ac291435ccc4f0dcf2", "0xf4101e3dea49bf3757c8ab8568709d9b171e8a29478714ef4ebe1d28a10be66d", "0x78e45f4d6477f374e518661063392d4c8e9c14be22d02e6bf05d954a76654314", "0x364f71043240d4b2e4b2879f5f892c2e8ff7c454e49e7b54d63c3ef9d9d90bc9", "0xf7331c312f77a834caaba1f91f62b6ba2ba4632e0a6ebaabce98f6462a0911f3", "0x0cfafbcb312ae216c967b7e2f5eb41516f192473291b61604dd09d4784625e63", "0xb2aef7663f89e5d8fe36d0b5aa587b3c2757cb331e012d780a0dbb671202ce54", "0xf19f2620d35392f96bfad6680277e285442d996a6232da14399b2406aada4433", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400"];
|
|
20403
21823
|
};
|
|
20404
21824
|
};
|
|
20405
21825
|
|
|
20406
21826
|
//#endregion
|
|
20407
21827
|
//#region src/hypoVault/hypoVaultManagerArtifacts/ProductionUSDCPLPVaultPoolInfos.d.ts
|
|
20408
21828
|
declare const ProductionUSDCPLPVaultPoolInfos: {
|
|
20409
|
-
readonly vaultAddress: "
|
|
21829
|
+
readonly vaultAddress: "0xC4Bcfe746fdAB946Ac79244c5Fd5E4f3c08c9F87";
|
|
20410
21830
|
readonly poolInfos: readonly [{
|
|
20411
21831
|
readonly maxPriceDeviation: 100;
|
|
20412
|
-
readonly pool: "
|
|
20413
|
-
readonly token0: "
|
|
21832
|
+
readonly pool: "0x5D44F6574B8dE88ffa2CCAEba0B07aD3C204571E";
|
|
21833
|
+
readonly token0: "0x0000000000000000000000000000000000000000";
|
|
20414
21834
|
readonly token1: "0xFFFeD8254566B7F800f6D8CDb843ec75AE49B07A";
|
|
20415
21835
|
}];
|
|
20416
21836
|
};
|
|
@@ -20419,75 +21839,155 @@ declare const ProductionUSDCPLPVaultPoolInfos: {
|
|
|
20419
21839
|
//#region src/hypoVault/hypoVaultManagerArtifacts/ProductionWETHPLPStrategistLeaves.d.ts
|
|
20420
21840
|
declare const ProductionWETHPLPStrategistLeaves: {
|
|
20421
21841
|
readonly metadata: {
|
|
20422
|
-
readonly AccountantAddress: "
|
|
20423
|
-
readonly BoringVaultAddress: "
|
|
20424
|
-
readonly DecoderAndSanitizerAddress: "
|
|
21842
|
+
readonly AccountantAddress: "0x061AF4Fd2a015ed871e7EA406749cF268236C918";
|
|
21843
|
+
readonly BoringVaultAddress: "0x225Bf020d280E98C3037fb3c5aa291De6F618834";
|
|
21844
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
20425
21845
|
readonly DigestComposition: readonly ["Bytes20(DECODER_AND_SANITIZER_ADDRESS)", "Bytes20(TARGET_ADDRESS)", "Bytes1(CAN_SEND_VALUE)", "Bytes4(TARGET_FUNCTION_SELECTOR)", "Bytes{N*20}(ADDRESS_ARGUMENT_0,...,ADDRESS_ARGUMENT_N)"];
|
|
20426
|
-
readonly LeafCount:
|
|
20427
|
-
readonly ManageRoot: "
|
|
20428
|
-
readonly ManagerAddress: "
|
|
20429
|
-
readonly TreeCapacity:
|
|
21846
|
+
readonly LeafCount: 10;
|
|
21847
|
+
readonly ManageRoot: "0x3f094303a46c01916d75f3fdc9217f39cfed68665f4903bb0b228eedf9aad3e1";
|
|
21848
|
+
readonly ManagerAddress: "0xe675A002d7f8C9476Ebf3706550b80221BA2AE5E";
|
|
21849
|
+
readonly TreeCapacity: 16;
|
|
20430
21850
|
};
|
|
20431
21851
|
readonly leafs: readonly [{
|
|
20432
|
-
readonly AddressArguments: readonly ["
|
|
21852
|
+
readonly AddressArguments: readonly ["0x4d2579A5F9BC32641D6AdbFC47C6dAceF30027F1"];
|
|
20433
21853
|
readonly CanSendValue: false;
|
|
20434
|
-
readonly DecoderAndSanitizerAddress: "
|
|
20435
|
-
readonly Description: "Approve
|
|
21854
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21855
|
+
readonly Description: "Approve poETH to spend ETH";
|
|
20436
21856
|
readonly FunctionSelector: "0x095ea7b3";
|
|
20437
21857
|
readonly FunctionSignature: "approve(address,uint256)";
|
|
20438
|
-
readonly LeafDigest: "
|
|
20439
|
-
readonly PackedArgumentAddresses: "
|
|
20440
|
-
readonly TargetAddress: "
|
|
21858
|
+
readonly LeafDigest: "0x4a6e2392dafc484c2b695252ed2ee3a6d1ab9e67eb07e367bf3f016caf3ab56f";
|
|
21859
|
+
readonly PackedArgumentAddresses: "0x4d2579a5f9bc32641d6adbfc47c6dacef30027f1";
|
|
21860
|
+
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
20441
21861
|
}, {
|
|
20442
|
-
readonly AddressArguments: readonly ["
|
|
21862
|
+
readonly AddressArguments: readonly ["0x225Bf020d280E98C3037fb3c5aa291De6F618834"];
|
|
20443
21863
|
readonly CanSendValue: false;
|
|
20444
|
-
readonly DecoderAndSanitizerAddress: "
|
|
20445
|
-
readonly Description: "Deposit
|
|
21864
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21865
|
+
readonly Description: "Deposit ETH for poETH";
|
|
20446
21866
|
readonly FunctionSelector: "0x6e553f65";
|
|
20447
21867
|
readonly FunctionSignature: "deposit(uint256,address)";
|
|
20448
|
-
readonly LeafDigest: "
|
|
20449
|
-
readonly PackedArgumentAddresses: "
|
|
20450
|
-
readonly TargetAddress: "
|
|
21868
|
+
readonly LeafDigest: "0xc5034bc371e012020e7e9ed0120352597ed6836a7c3c45f6a73332632e1fa6ab";
|
|
21869
|
+
readonly PackedArgumentAddresses: "0x225bf020d280e98c3037fb3c5aa291de6f618834";
|
|
21870
|
+
readonly TargetAddress: "0x4d2579A5F9BC32641D6AdbFC47C6dAceF30027F1";
|
|
21871
|
+
}, {
|
|
21872
|
+
readonly AddressArguments: readonly ["0x225Bf020d280E98C3037fb3c5aa291De6F618834"];
|
|
21873
|
+
readonly CanSendValue: true;
|
|
21874
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21875
|
+
readonly Description: "Deposit ETH for poETH (payable)";
|
|
21876
|
+
readonly FunctionSelector: "0x6e553f65";
|
|
21877
|
+
readonly FunctionSignature: "deposit(uint256,address)";
|
|
21878
|
+
readonly LeafDigest: "0xaa9e1837f7b55d00bfa7dc8b1d0d0a6ddd32efc7c10eec69d8aa350141c6b58f";
|
|
21879
|
+
readonly PackedArgumentAddresses: "0x225bf020d280e98c3037fb3c5aa291de6f618834";
|
|
21880
|
+
readonly TargetAddress: "0x4d2579A5F9BC32641D6AdbFC47C6dAceF30027F1";
|
|
20451
21881
|
}, {
|
|
20452
|
-
readonly AddressArguments: readonly ["
|
|
21882
|
+
readonly AddressArguments: readonly ["0x225Bf020d280E98C3037fb3c5aa291De6F618834", "0x225Bf020d280E98C3037fb3c5aa291De6F618834"];
|
|
20453
21883
|
readonly CanSendValue: false;
|
|
20454
|
-
readonly DecoderAndSanitizerAddress: "
|
|
20455
|
-
readonly Description: "Withdraw
|
|
21884
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21885
|
+
readonly Description: "Withdraw ETH from poETH";
|
|
20456
21886
|
readonly FunctionSelector: "0xb460af94";
|
|
20457
21887
|
readonly FunctionSignature: "withdraw(uint256,address,address)";
|
|
20458
|
-
readonly LeafDigest: "
|
|
20459
|
-
readonly PackedArgumentAddresses: "
|
|
20460
|
-
readonly TargetAddress: "
|
|
21888
|
+
readonly LeafDigest: "0xdbfaeb427c9e28b3e90c2aec67bc32e11899ebc88c4da3396b25aca8a6065365";
|
|
21889
|
+
readonly PackedArgumentAddresses: "0x225bf020d280e98c3037fb3c5aa291de6f618834225bf020d280e98c3037fb3c5aa291de6f618834";
|
|
21890
|
+
readonly TargetAddress: "0x4d2579A5F9BC32641D6AdbFC47C6dAceF30027F1";
|
|
20461
21891
|
}, {
|
|
20462
|
-
readonly AddressArguments: readonly ["
|
|
21892
|
+
readonly AddressArguments: readonly ["0x225Bf020d280E98C3037fb3c5aa291De6F618834", "0x225Bf020d280E98C3037fb3c5aa291De6F618834"];
|
|
20463
21893
|
readonly CanSendValue: false;
|
|
20464
|
-
readonly DecoderAndSanitizerAddress: "
|
|
20465
|
-
readonly Description: "Withdraw
|
|
21894
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21895
|
+
readonly Description: "Withdraw ETH from poETH";
|
|
20466
21896
|
readonly FunctionSelector: "0x795a1f0d";
|
|
20467
21897
|
readonly FunctionSignature: "withdraw(uint256,address,address,uint256[])";
|
|
20468
|
-
readonly LeafDigest: "
|
|
20469
|
-
readonly PackedArgumentAddresses: "
|
|
20470
|
-
readonly TargetAddress: "
|
|
21898
|
+
readonly LeafDigest: "0x20cfd8d4acdb46c6602108cfeb7b0f7d68c680572407e62754065985d8298d51";
|
|
21899
|
+
readonly PackedArgumentAddresses: "0x225bf020d280e98c3037fb3c5aa291de6f618834225bf020d280e98c3037fb3c5aa291de6f618834";
|
|
21900
|
+
readonly TargetAddress: "0x4d2579A5F9BC32641D6AdbFC47C6dAceF30027F1";
|
|
20471
21901
|
}, {
|
|
20472
|
-
readonly AddressArguments: readonly ["
|
|
21902
|
+
readonly AddressArguments: readonly ["0x225Bf020d280E98C3037fb3c5aa291De6F618834"];
|
|
20473
21903
|
readonly CanSendValue: false;
|
|
20474
|
-
readonly DecoderAndSanitizerAddress: "
|
|
20475
|
-
readonly Description: "Mint
|
|
21904
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21905
|
+
readonly Description: "Mint poETH using ETH";
|
|
21906
|
+
readonly FunctionSelector: "0x94bf804d";
|
|
21907
|
+
readonly FunctionSignature: "mint(uint256,address)";
|
|
21908
|
+
readonly LeafDigest: "0x7dbfa359b77672a9313b83d1794cc8e7e37c848ea2a99169b6b3a37b88329419";
|
|
21909
|
+
readonly PackedArgumentAddresses: "0x225bf020d280e98c3037fb3c5aa291de6f618834";
|
|
21910
|
+
readonly TargetAddress: "0x4d2579A5F9BC32641D6AdbFC47C6dAceF30027F1";
|
|
21911
|
+
}, {
|
|
21912
|
+
readonly AddressArguments: readonly ["0x225Bf020d280E98C3037fb3c5aa291De6F618834"];
|
|
21913
|
+
readonly CanSendValue: true;
|
|
21914
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21915
|
+
readonly Description: "Mint poETH using ETH (payable)";
|
|
20476
21916
|
readonly FunctionSelector: "0x94bf804d";
|
|
20477
21917
|
readonly FunctionSignature: "mint(uint256,address)";
|
|
20478
|
-
readonly LeafDigest: "
|
|
20479
|
-
readonly PackedArgumentAddresses: "
|
|
20480
|
-
readonly TargetAddress: "
|
|
21918
|
+
readonly LeafDigest: "0x9eff66aafed64041bb89840202923b9c82783a0302899780ee342724df44ee7b";
|
|
21919
|
+
readonly PackedArgumentAddresses: "0x225bf020d280e98c3037fb3c5aa291de6f618834";
|
|
21920
|
+
readonly TargetAddress: "0x4d2579A5F9BC32641D6AdbFC47C6dAceF30027F1";
|
|
20481
21921
|
}, {
|
|
20482
|
-
readonly AddressArguments: readonly ["
|
|
21922
|
+
readonly AddressArguments: readonly ["0x225Bf020d280E98C3037fb3c5aa291De6F618834", "0x225Bf020d280E98C3037fb3c5aa291De6F618834"];
|
|
20483
21923
|
readonly CanSendValue: false;
|
|
20484
|
-
readonly DecoderAndSanitizerAddress: "
|
|
20485
|
-
readonly Description: "Redeem
|
|
21924
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21925
|
+
readonly Description: "Redeem poETH for ETH";
|
|
20486
21926
|
readonly FunctionSelector: "0xba087652";
|
|
20487
21927
|
readonly FunctionSignature: "redeem(uint256,address,address)";
|
|
20488
|
-
readonly LeafDigest: "
|
|
20489
|
-
readonly PackedArgumentAddresses: "
|
|
20490
|
-
readonly TargetAddress: "
|
|
21928
|
+
readonly LeafDigest: "0xc5cee52896a82f0c495f4ae4b8a423610d03cd73839784259140d0c3037211a6";
|
|
21929
|
+
readonly PackedArgumentAddresses: "0x225bf020d280e98c3037fb3c5aa291de6f618834225bf020d280e98c3037fb3c5aa291de6f618834";
|
|
21930
|
+
readonly TargetAddress: "0x4d2579A5F9BC32641D6AdbFC47C6dAceF30027F1";
|
|
21931
|
+
}, {
|
|
21932
|
+
readonly AddressArguments: readonly [];
|
|
21933
|
+
readonly CanSendValue: false;
|
|
21934
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21935
|
+
readonly Description: "Dispatch mint/burn options on PanopticPool";
|
|
21936
|
+
readonly FunctionSelector: "0xc25813aa";
|
|
21937
|
+
readonly FunctionSignature: "dispatch(uint256[],uint256[],uint128[],int24[3][],bool,uint256)";
|
|
21938
|
+
readonly LeafDigest: "0x0cfafbcb312ae216c967b7e2f5eb41516f192473291b61604dd09d4784625e63";
|
|
21939
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21940
|
+
readonly TargetAddress: "0x5D44F6574B8dE88ffa2CCAEba0B07aD3C204571E";
|
|
21941
|
+
}, {
|
|
21942
|
+
readonly AddressArguments: readonly [];
|
|
21943
|
+
readonly CanSendValue: true;
|
|
21944
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21945
|
+
readonly Description: "Wrap ETH to WETH";
|
|
21946
|
+
readonly FunctionSelector: "0xd0e30db0";
|
|
21947
|
+
readonly FunctionSignature: "deposit()";
|
|
21948
|
+
readonly LeafDigest: "0xb2aef7663f89e5d8fe36d0b5aa587b3c2757cb331e012d780a0dbb671202ce54";
|
|
21949
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21950
|
+
readonly TargetAddress: "0xfFf9976782d46CC05630D1f6eBAb18b2324d6B14";
|
|
21951
|
+
}, {
|
|
21952
|
+
readonly AddressArguments: readonly [];
|
|
21953
|
+
readonly CanSendValue: false;
|
|
21954
|
+
readonly DecoderAndSanitizerAddress: "0x3c2D182DB402Fc649aea61731CE47Ea72Ab3a7f1";
|
|
21955
|
+
readonly Description: "Unwrap WETH to ETH";
|
|
21956
|
+
readonly FunctionSelector: "0x2e1a7d4d";
|
|
21957
|
+
readonly FunctionSignature: "withdraw(uint256)";
|
|
21958
|
+
readonly LeafDigest: "0xf19f2620d35392f96bfad6680277e285442d996a6232da14399b2406aada4433";
|
|
21959
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21960
|
+
readonly TargetAddress: "0xfFf9976782d46CC05630D1f6eBAb18b2324d6B14";
|
|
21961
|
+
}, {
|
|
21962
|
+
readonly AddressArguments: readonly [];
|
|
21963
|
+
readonly CanSendValue: false;
|
|
21964
|
+
readonly DecoderAndSanitizerAddress: "0x0000000000000000000000000000000000000000";
|
|
21965
|
+
readonly Description: "";
|
|
21966
|
+
readonly FunctionSelector: "0xc5d24601";
|
|
21967
|
+
readonly FunctionSignature: "";
|
|
21968
|
+
readonly LeafDigest: "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400";
|
|
21969
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21970
|
+
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
21971
|
+
}, {
|
|
21972
|
+
readonly AddressArguments: readonly [];
|
|
21973
|
+
readonly CanSendValue: false;
|
|
21974
|
+
readonly DecoderAndSanitizerAddress: "0x0000000000000000000000000000000000000000";
|
|
21975
|
+
readonly Description: "";
|
|
21976
|
+
readonly FunctionSelector: "0xc5d24601";
|
|
21977
|
+
readonly FunctionSignature: "";
|
|
21978
|
+
readonly LeafDigest: "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400";
|
|
21979
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21980
|
+
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
21981
|
+
}, {
|
|
21982
|
+
readonly AddressArguments: readonly [];
|
|
21983
|
+
readonly CanSendValue: false;
|
|
21984
|
+
readonly DecoderAndSanitizerAddress: "0x0000000000000000000000000000000000000000";
|
|
21985
|
+
readonly Description: "";
|
|
21986
|
+
readonly FunctionSelector: "0xc5d24601";
|
|
21987
|
+
readonly FunctionSignature: "";
|
|
21988
|
+
readonly LeafDigest: "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400";
|
|
21989
|
+
readonly PackedArgumentAddresses: "0x";
|
|
21990
|
+
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
20491
21991
|
}, {
|
|
20492
21992
|
readonly AddressArguments: readonly [];
|
|
20493
21993
|
readonly CanSendValue: false;
|
|
@@ -20510,21 +22010,22 @@ declare const ProductionWETHPLPStrategistLeaves: {
|
|
|
20510
22010
|
readonly TargetAddress: "0x0000000000000000000000000000000000000000";
|
|
20511
22011
|
}];
|
|
20512
22012
|
readonly MerkleTree: {
|
|
20513
|
-
readonly '0': readonly ["
|
|
20514
|
-
readonly '1': readonly ["
|
|
20515
|
-
readonly '2': readonly ["
|
|
20516
|
-
readonly '3': readonly ["
|
|
22013
|
+
readonly '0': readonly ["0x3f094303a46c01916d75f3fdc9217f39cfed68665f4903bb0b228eedf9aad3e1"];
|
|
22014
|
+
readonly '1': readonly ["0x9717e385b49a14a92728e86e34bf47eb1f4dfd5251def0177b7e1a284b69a9c0", "0x93c4636deb159a40ef8ea624b39d7e8e2f3be1e5ea96d0f7b4c3c707284e3dcc"];
|
|
22015
|
+
readonly '2': readonly ["0x6ca942fe793f8a12b84771b3f339083250cca66b6ee0748a6bde7dc9e63d52c5", "0x51d2ff41c6c5eb1d6964275bf50c58a48c32888ae18f711a999a17534d0cc12c", "0x8cecdeedb91d1c78d98bd6497896b7ba793fe0b9fb7febc9e0853b81927b8283", "0x849eda7a295b642e5ddaf49a30eec4470cf507efa83b4104c0752d069c7638fe"];
|
|
22016
|
+
readonly '3': readonly ["0x1399aca4d28fbc27a0795723108462f0d1caddfb514bf11985282a3a536d9731", "0xa3d12edf17380aa0935aad34d1cd4f17ed78228239d294581106ab559b280464", "0xa6b8985dac0410283fc4608e452956092bbdad250f80c6aa45428456a60b94d3", "0xdc5d66a8c6fa7c0e86e1e69985714e7c6cfd0ff842e688d7bc375bba9a241ae9", "0x81c5d6c12f48338e385f0400cd2c56e4cbd93094f47503c30e72648f97ba8457", "0x349f5d427759c09b0ed4892d7b9b900873922204f917196f6f0c177f82d6064e", "0xc5a36f3b7b955966d5ed3135dcc612f978306d73bce3697e230afae57fbaeeba", "0xc5a36f3b7b955966d5ed3135dcc612f978306d73bce3697e230afae57fbaeeba"];
|
|
22017
|
+
readonly '4': readonly ["0x4a6e2392dafc484c2b695252ed2ee3a6d1ab9e67eb07e367bf3f016caf3ab56f", "0xc5034bc371e012020e7e9ed0120352597ed6836a7c3c45f6a73332632e1fa6ab", "0xaa9e1837f7b55d00bfa7dc8b1d0d0a6ddd32efc7c10eec69d8aa350141c6b58f", "0xdbfaeb427c9e28b3e90c2aec67bc32e11899ebc88c4da3396b25aca8a6065365", "0x20cfd8d4acdb46c6602108cfeb7b0f7d68c680572407e62754065985d8298d51", "0x7dbfa359b77672a9313b83d1794cc8e7e37c848ea2a99169b6b3a37b88329419", "0x9eff66aafed64041bb89840202923b9c82783a0302899780ee342724df44ee7b", "0xc5cee52896a82f0c495f4ae4b8a423610d03cd73839784259140d0c3037211a6", "0x0cfafbcb312ae216c967b7e2f5eb41516f192473291b61604dd09d4784625e63", "0xb2aef7663f89e5d8fe36d0b5aa587b3c2757cb331e012d780a0dbb671202ce54", "0xf19f2620d35392f96bfad6680277e285442d996a6232da14399b2406aada4433", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400", "0xa7a0fd846665d92e66be6155c6221b3acd7145ca7c4e4b67a594e4c516969400"];
|
|
20517
22018
|
};
|
|
20518
22019
|
};
|
|
20519
22020
|
|
|
20520
22021
|
//#endregion
|
|
20521
22022
|
//#region src/hypoVault/hypoVaultManagerArtifacts/ProductionWETHPLPVaultPoolInfos.d.ts
|
|
20522
22023
|
declare const ProductionWETHPLPVaultPoolInfos: {
|
|
20523
|
-
readonly vaultAddress: "
|
|
22024
|
+
readonly vaultAddress: "0x225Bf020d280E98C3037fb3c5aa291De6F618834";
|
|
20524
22025
|
readonly poolInfos: readonly [{
|
|
20525
22026
|
readonly maxPriceDeviation: 100;
|
|
20526
|
-
readonly pool: "
|
|
20527
|
-
readonly token0: "
|
|
22027
|
+
readonly pool: "0x5D44F6574B8dE88ffa2CCAEba0B07aD3C204571E";
|
|
22028
|
+
readonly token0: "0x0000000000000000000000000000000000000000";
|
|
20528
22029
|
readonly token1: "0xFFFeD8254566B7F800f6D8CDb843ec75AE49B07A";
|
|
20529
22030
|
}];
|
|
20530
22031
|
};
|
|
@@ -20532,13 +22033,18 @@ declare const ProductionWETHPLPVaultPoolInfos: {
|
|
|
20532
22033
|
//#endregion
|
|
20533
22034
|
//#region src/hypoVault/hypoVaultManagerConfigs/schema.d.ts
|
|
20534
22035
|
declare const HypoVaultManagerConfigSchema: z.ZodObject<{
|
|
22036
|
+
deployment: z.ZodEnum<{
|
|
22037
|
+
dev: "dev";
|
|
22038
|
+
prod: "prod";
|
|
22039
|
+
}>;
|
|
20535
22040
|
manageCycleIntervalMs: z.ZodOptional<z.ZodNumber>;
|
|
20536
22041
|
vaultCapInUnderlying: z.ZodBigInt;
|
|
20537
22042
|
chainId: z.ZodOptional<z.ZodNumber>;
|
|
20538
22043
|
hypoVaultAddress: z.ZodOptional<z.ZodCustom<`0x${string}`, `0x${string}`>>;
|
|
20539
22044
|
addresses: z.ZodOptional<z.ZodObject<{
|
|
20540
|
-
|
|
20541
|
-
|
|
22045
|
+
ethUsdc500bpsV4Collateral0: z.ZodOptional<z.ZodCustom<`0x${string}`, `0x${string}`>>;
|
|
22046
|
+
ethUsdc500bpsV4Collateral1: z.ZodOptional<z.ZodCustom<`0x${string}`, `0x${string}`>>;
|
|
22047
|
+
ethUsdc500bpsV4PanopticPool: z.ZodOptional<z.ZodCustom<`0x${string}`, `0x${string}`>>;
|
|
20542
22048
|
hypoVaultManagerWithMerkleVerification: z.ZodOptional<z.ZodCustom<`0x${string}`, `0x${string}`>>;
|
|
20543
22049
|
hypoVault: z.ZodOptional<z.ZodCustom<`0x${string}`, `0x${string}`>>;
|
|
20544
22050
|
underlyingToken: z.ZodOptional<z.ZodCustom<`0x${string}`, `0x${string}`>>;
|
|
@@ -20564,7 +22070,10 @@ declare const WethPlpVaultSepoliaProdConfig: HypoVaultManagerConfig;
|
|
|
20564
22070
|
|
|
20565
22071
|
//#endregion
|
|
20566
22072
|
//#region src/hypoVault/hypoVaultManagerConfigs/vaultToConfig.d.ts
|
|
20567
|
-
|
|
22073
|
+
type GetHypoVaultConfigOptions = {
|
|
22074
|
+
preferredDeployment?: HypoVaultManagerConfig['deployment'];
|
|
22075
|
+
};
|
|
22076
|
+
declare function getHypoVaultConfigForVault(vaultAddress: Address, chainId: number, options?: GetHypoVaultConfigOptions): HypoVaultManagerConfig | undefined;
|
|
20568
22077
|
|
|
20569
22078
|
//#endregion
|
|
20570
22079
|
//#region src/hypoVault/hypoVaultManagerWithMerkleVerification/fulfillDeposits.d.ts
|
|
@@ -21780,6 +23289,7 @@ declare function calculateAssetsFromShares({
|
|
|
21780
23289
|
declare const useRequestWithdrawal: ({
|
|
21781
23290
|
vaultAddress,
|
|
21782
23291
|
desiredAssets,
|
|
23292
|
+
requestAllAvailableShares,
|
|
21783
23293
|
sharePrice,
|
|
21784
23294
|
walletShares,
|
|
21785
23295
|
queuedDeposits,
|
|
@@ -21789,6 +23299,7 @@ declare const useRequestWithdrawal: ({
|
|
|
21789
23299
|
}: {
|
|
21790
23300
|
vaultAddress: Address;
|
|
21791
23301
|
desiredAssets: bigint;
|
|
23302
|
+
requestAllAvailableShares?: boolean | undefined;
|
|
21792
23303
|
sharePrice: SharePrice;
|
|
21793
23304
|
walletShares: bigint;
|
|
21794
23305
|
queuedDeposits: QueuedDepositSnapshot[];
|
|
@@ -24043,6 +25554,7 @@ declare function buildExecuteDepositCalldatas({
|
|
|
24043
25554
|
declare function buildRequestWithdrawalCalldatas({
|
|
24044
25555
|
user,
|
|
24045
25556
|
desiredAssets,
|
|
25557
|
+
requestAllAvailableShares,
|
|
24046
25558
|
sharePrice,
|
|
24047
25559
|
walletShares,
|
|
24048
25560
|
queuedDeposits,
|
|
@@ -24051,6 +25563,7 @@ declare function buildRequestWithdrawalCalldatas({
|
|
|
24051
25563
|
}: {
|
|
24052
25564
|
user: Address;
|
|
24053
25565
|
desiredAssets: bigint;
|
|
25566
|
+
requestAllAvailableShares?: boolean;
|
|
24054
25567
|
sharePrice: SharePrice;
|
|
24055
25568
|
walletShares: bigint;
|
|
24056
25569
|
queuedDeposits: QueuedDepositSnapshot[];
|
|
@@ -24185,7 +25698,12 @@ declare function buildManageArgs(actions: ManageAction[], artifact: StrategistLe
|
|
|
24185
25698
|
|
|
24186
25699
|
//#endregion
|
|
24187
25700
|
//#region src/hypoVault/utils/buildManagerInput.d.ts
|
|
24188
|
-
type PoolInfo =
|
|
25701
|
+
type PoolInfo = {
|
|
25702
|
+
pool: Address;
|
|
25703
|
+
token0: Address;
|
|
25704
|
+
token1: Address;
|
|
25705
|
+
maxPriceDeviation: number;
|
|
25706
|
+
};
|
|
24189
25707
|
type BuildManagerInputParams = {
|
|
24190
25708
|
viemClient: Client;
|
|
24191
25709
|
poolInfos: readonly PoolInfo[];
|
|
@@ -24212,6 +25730,26 @@ declare function buildManagerInput({
|
|
|
24212
25730
|
underlyingToken
|
|
24213
25731
|
}: BuildManagerInputParams): Promise<Hex>;
|
|
24214
25732
|
|
|
25733
|
+
//#endregion
|
|
25734
|
+
//#region src/hypoVault/utils/buildManagerInputAtBlock.d.ts
|
|
25735
|
+
type BuildManagerInputAtBlockParams = {
|
|
25736
|
+
viemClient: Client;
|
|
25737
|
+
poolInfos: readonly PoolInfo[];
|
|
25738
|
+
tokenIds: bigint[][];
|
|
25739
|
+
underlyingToken: Address;
|
|
25740
|
+
blockNumber: bigint;
|
|
25741
|
+
};
|
|
25742
|
+
/**
|
|
25743
|
+
* Builds encoded managerInput for HypoVault accountant reads at a specific block.
|
|
25744
|
+
*/
|
|
25745
|
+
declare function buildManagerInputAtBlock({
|
|
25746
|
+
viemClient,
|
|
25747
|
+
poolInfos,
|
|
25748
|
+
tokenIds,
|
|
25749
|
+
underlyingToken,
|
|
25750
|
+
blockNumber
|
|
25751
|
+
}: BuildManagerInputAtBlockParams): Promise<Hex>;
|
|
25752
|
+
|
|
24215
25753
|
//#endregion
|
|
24216
25754
|
//#region src/hypoVault/utils/merkleTreeHelper.d.ts
|
|
24217
25755
|
/**
|
|
@@ -28460,6 +29998,99 @@ type GetLatestEpochQuery = {
|
|
|
28460
29998
|
};
|
|
28461
29999
|
}>;
|
|
28462
30000
|
};
|
|
30001
|
+
type GetVaultHistoryQueryVariables = Exact<{
|
|
30002
|
+
hypoVault: Scalars['String']['input'];
|
|
30003
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30004
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
30005
|
+
}>;
|
|
30006
|
+
type GetVaultHistoryQuery = {
|
|
30007
|
+
__typename?: 'Query';
|
|
30008
|
+
depositRequesteds: Array<{
|
|
30009
|
+
__typename?: 'DepositRequested';
|
|
30010
|
+
id: any;
|
|
30011
|
+
assets: string;
|
|
30012
|
+
blockTimestamp: string;
|
|
30013
|
+
transactionHash: any;
|
|
30014
|
+
user: {
|
|
30015
|
+
__typename?: 'Account';
|
|
30016
|
+
id: any;
|
|
30017
|
+
};
|
|
30018
|
+
}>;
|
|
30019
|
+
depositsFulfilleds: Array<{
|
|
30020
|
+
__typename?: 'DepositsFulfilled';
|
|
30021
|
+
id: any;
|
|
30022
|
+
assetsFulfilled: string;
|
|
30023
|
+
sharesReceived: string;
|
|
30024
|
+
blockTimestamp: string;
|
|
30025
|
+
transactionHash: any;
|
|
30026
|
+
}>;
|
|
30027
|
+
withdrawalRequesteds: Array<{
|
|
30028
|
+
__typename?: 'WithdrawalRequested';
|
|
30029
|
+
id: any;
|
|
30030
|
+
shares: string;
|
|
30031
|
+
blockTimestamp: string;
|
|
30032
|
+
transactionHash: any;
|
|
30033
|
+
user: {
|
|
30034
|
+
__typename?: 'Account';
|
|
30035
|
+
id: any;
|
|
30036
|
+
};
|
|
30037
|
+
}>;
|
|
30038
|
+
withdrawalsFulfilleds: Array<{
|
|
30039
|
+
__typename?: 'WithdrawalsFulfilled';
|
|
30040
|
+
id: any;
|
|
30041
|
+
assetsReceived: string;
|
|
30042
|
+
sharesFulfilled: string;
|
|
30043
|
+
blockTimestamp: string;
|
|
30044
|
+
transactionHash: any;
|
|
30045
|
+
}>;
|
|
30046
|
+
depositCancelleds: Array<{
|
|
30047
|
+
__typename?: 'DepositCancelled';
|
|
30048
|
+
id: any;
|
|
30049
|
+
assets: string;
|
|
30050
|
+
blockTimestamp: string;
|
|
30051
|
+
transactionHash: any;
|
|
30052
|
+
user: {
|
|
30053
|
+
__typename?: 'Account';
|
|
30054
|
+
id: any;
|
|
30055
|
+
};
|
|
30056
|
+
}>;
|
|
30057
|
+
withdrawalCancelleds: Array<{
|
|
30058
|
+
__typename?: 'WithdrawalCancelled';
|
|
30059
|
+
id: any;
|
|
30060
|
+
shares: string;
|
|
30061
|
+
blockTimestamp: string;
|
|
30062
|
+
transactionHash: any;
|
|
30063
|
+
user: {
|
|
30064
|
+
__typename?: 'Account';
|
|
30065
|
+
id: any;
|
|
30066
|
+
};
|
|
30067
|
+
}>;
|
|
30068
|
+
depositExecuteds: Array<{
|
|
30069
|
+
__typename?: 'DepositExecuted';
|
|
30070
|
+
id: any;
|
|
30071
|
+
assets: string;
|
|
30072
|
+
shares: string;
|
|
30073
|
+
blockTimestamp: string;
|
|
30074
|
+
transactionHash: any;
|
|
30075
|
+
user: {
|
|
30076
|
+
__typename?: 'Account';
|
|
30077
|
+
id: any;
|
|
30078
|
+
};
|
|
30079
|
+
}>;
|
|
30080
|
+
withdrawalExecuteds: Array<{
|
|
30081
|
+
__typename?: 'WithdrawalExecuted';
|
|
30082
|
+
id: any;
|
|
30083
|
+
assets: string;
|
|
30084
|
+
shares: string;
|
|
30085
|
+
performanceFee: string;
|
|
30086
|
+
blockTimestamp: string;
|
|
30087
|
+
transactionHash: any;
|
|
30088
|
+
user: {
|
|
30089
|
+
__typename?: 'Account';
|
|
30090
|
+
id: any;
|
|
30091
|
+
};
|
|
30092
|
+
}>;
|
|
30093
|
+
};
|
|
28463
30094
|
type GetFilteredHypoVaultsQueryVariables = Exact<{
|
|
28464
30095
|
hypoVaultWhitelist: Array<Scalars['Bytes']['input']> | Scalars['Bytes']['input'];
|
|
28465
30096
|
}>;
|
|
@@ -28600,16 +30231,18 @@ declare const WithdrawalEpochStateFragmentDoc: graphql3.DocumentNode;
|
|
|
28600
30231
|
declare const GetDepositOverviewDocument: graphql4.DocumentNode;
|
|
28601
30232
|
declare const GetLatestDepositAndWithdrawEpochDocument: graphql5.DocumentNode;
|
|
28602
30233
|
declare const GetLatestEpochDocument: graphql6.DocumentNode;
|
|
28603
|
-
declare const
|
|
28604
|
-
declare const
|
|
28605
|
-
declare const
|
|
28606
|
-
declare const
|
|
28607
|
-
declare const
|
|
30234
|
+
declare const GetVaultHistoryDocument: graphql7.DocumentNode;
|
|
30235
|
+
declare const GetFilteredHypoVaultsDocument: graphql8.DocumentNode;
|
|
30236
|
+
declare const GetQueuedWithdrawalsForExecutionDocument: graphql9.DocumentNode;
|
|
30237
|
+
declare const GetWithdrawalEpochStatesForExecutionDocument: graphql10.DocumentNode;
|
|
30238
|
+
declare const GetQueuedDepositsForWithdrawalDocument: graphql11.DocumentNode;
|
|
30239
|
+
declare const GetDepositEpochStatesForWithdrawalDocument: graphql12.DocumentNode;
|
|
28608
30240
|
type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;
|
|
28609
30241
|
declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
28610
30242
|
GetDepositOverview(variables: GetDepositOverviewQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetDepositOverviewQuery>;
|
|
28611
30243
|
GetLatestDepositAndWithdrawEpoch(variables: GetLatestDepositAndWithdrawEpochQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetLatestDepositAndWithdrawEpochQuery>;
|
|
28612
30244
|
GetLatestEpoch(variables: GetLatestEpochQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetLatestEpochQuery>;
|
|
30245
|
+
GetVaultHistory(variables: GetVaultHistoryQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetVaultHistoryQuery>;
|
|
28613
30246
|
GetFilteredHypoVaults(variables: GetFilteredHypoVaultsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetFilteredHypoVaultsQuery>;
|
|
28614
30247
|
GetQueuedWithdrawalsForExecution(variables: GetQueuedWithdrawalsForExecutionQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetQueuedWithdrawalsForExecutionQuery>;
|
|
28615
30248
|
GetWithdrawalEpochStatesForExecution(variables: GetWithdrawalEpochStatesForExecutionQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetWithdrawalEpochStatesForExecutionQuery>;
|
|
@@ -28659,6 +30292,7 @@ declare const parseCustomError: (e: Error) => BaseError | ContractFunctionRevert
|
|
|
28659
30292
|
type BaseContractWriteHookOutput = {
|
|
28660
30293
|
actionLabel: string;
|
|
28661
30294
|
act: () => void;
|
|
30295
|
+
canSubmit?: boolean;
|
|
28662
30296
|
isLoading: boolean;
|
|
28663
30297
|
error: Error | undefined;
|
|
28664
30298
|
simulate: UseSimulateContractReturnType<Abi, ContractFunctionName<Abi, 'nonpayable' | 'payable'>, ContractFunctionArgs<Abi, 'nonpayable' | 'payable'>, Config, number, unknown>;
|
|
@@ -28667,5 +30301,5 @@ type BaseContractWriteHookOutput = {
|
|
|
28667
30301
|
};
|
|
28668
30302
|
|
|
28669
30303
|
//#endregion
|
|
28670
|
-
export { Account, AccountDepositCancelledsArgs, AccountDepositExecutedsArgs, AccountDepositRequestedsArgs, AccountQueuedDepositsArgs, AccountQueuedWithdrawalsArgs, AccountRedepositStatusChangedsArgs, AccountTransfersArgs, AccountUserBalancesArgs, AccountUserBasesArgs, AccountWithdrawalCancelledsArgs, AccountWithdrawalExecutedsArgs, AccountWithdrawalRequestedsArgs, Account_Filter, Account_OrderBy, AccountantUpdated, AccountantUpdated_Filter, AccountantUpdated_OrderBy, Aggregation_Interval, BaseContractWriteHookOutput, BlockChangedFilter, Block_Height, BuildManagerInputParams, Bundle, Bundle_Filter, Bundle_OrderBy, CollateralTrackerAbi, CollateralTrackerV1_1Abi, DecodedError, DepositCancelled, DepositCancelled_Filter, DepositCancelled_OrderBy, DepositEpochState, DepositEpochStateFragment, DepositEpochStateFragmentDoc, DepositEpochStateSnapshot, DepositEpochState_Filter, DepositEpochState_OrderBy, DepositExecuted, DepositExecuted_Filter, DepositExecuted_OrderBy, DepositRequested, DepositRequested_Filter, DepositRequested_OrderBy, DepositsFulfilled, DepositsFulfilled_Filter, DepositsFulfilled_OrderBy, Erc1155Abi, Erc20Abi, Exact, FeeWalletUpdated, FeeWalletUpdated_Filter, FeeWalletUpdated_OrderBy, GetDepositEpochStatesForWithdrawalDocument, GetDepositEpochStatesForWithdrawalQuery, GetDepositEpochStatesForWithdrawalQueryVariables, GetDepositOverviewDocument, GetDepositOverviewQuery, GetDepositOverviewQueryVariables, GetFilteredHypoVaultsDocument, GetFilteredHypoVaultsQuery, GetFilteredHypoVaultsQueryVariables, GetLatestDepositAndWithdrawEpochDocument, GetLatestDepositAndWithdrawEpochQuery, GetLatestDepositAndWithdrawEpochQueryVariables, GetLatestEpochDocument, GetLatestEpochQuery, GetLatestEpochQueryVariables, GetQueuedDepositsForWithdrawalDocument, GetQueuedDepositsForWithdrawalQuery, GetQueuedDepositsForWithdrawalQueryVariables, GetQueuedWithdrawalsForExecutionDocument, GetQueuedWithdrawalsForExecutionQuery, GetQueuedWithdrawalsForExecutionQueryVariables, GetWithdrawalEpochStatesForExecutionDocument, GetWithdrawalEpochStatesForExecutionQuery, GetWithdrawalEpochStatesForExecutionQueryVariables, HypoVault, HypoVaultAbi, HypoVaultDepositEpochStatesArgs, HypoVaultFactory, HypoVaultFactory_Filter, HypoVaultFactory_OrderBy, HypoVaultFragment, HypoVaultFragmentDoc, HypoVaultGraphQLClient, HypoVaultManagerConfig, HypoVaultManagerConfigSchema, HypoVaultManagerWithMerkleVerificationAbi, HypoVaultQueuedDepositsArgs, HypoVaultQueuedWithdrawalsArgs, HypoVaultUserBalancesArgs, HypoVaultUserBasesArgs, HypoVaultWithdrawalEpochStatesArgs, HypoVault_Filter, HypoVault_OrderBy, Incremental, InferLeaf, InputMaybe, LeafDescription, MakeEmpty, MakeMaybe, MakeOptional, ManageAction, ManageLeaf, ManageVaultArgs, ManagerUpdated, ManagerUpdated_Filter, ManagerUpdated_OrderBy, Maybe, Multicall3Abi, NonFungiblePositionManagerAbi, OrderDirection, OwnershipTransferred, OwnershipTransferred_Filter, OwnershipTransferred_OrderBy, PanopticFactoryAbi, PanopticFactoryV1_1Abi, PanopticHelperAbi, PanopticPoolAbi, PanopticPoolV1_1Abi, PanopticQueryV1_1Abi, PanopticVaultAccountantAbi, PanopticVaultAccountantManagerInputAbi, Pool, PoolInfo, PoolManagerAbi, Pool_Filter, Pool_OrderBy, ProductionUSDCPLPStrategistLeaves, ProductionUSDCPLPVaultPoolInfos, ProductionWETHPLPStrategistLeaves, ProductionWETHPLPVaultPoolInfos, Query, QueryAccountArgs, QueryAccountantUpdatedArgs, QueryAccountantUpdatedsArgs, QueryAccountsArgs, QueryBundleArgs, QueryBundlesArgs, QueryDepositCancelledArgs, QueryDepositCancelledsArgs, QueryDepositEpochStateArgs, QueryDepositEpochStatesArgs, QueryDepositExecutedArgs, QueryDepositExecutedsArgs, QueryDepositRequestedArgs, QueryDepositRequestedsArgs, QueryDepositsFulfilledArgs, QueryDepositsFulfilledsArgs, QueryFeeWalletUpdatedArgs, QueryFeeWalletUpdatedsArgs, QueryHypoVaultArgs, QueryHypoVaultFactoriesArgs, QueryHypoVaultFactoryArgs, QueryHypoVaultsArgs, QueryManagerUpdatedArgs, QueryManagerUpdatedsArgs, QueryOwnershipTransferredArgs, QueryOwnershipTransferredsArgs, QueryPoolArgs, QueryPoolsArgs, QueryQueuedDepositArgs, QueryQueuedDepositsArgs, QueryQueuedWithdrawalArgs, QueryQueuedWithdrawalsArgs, QueryRedepositStatusChangedArgs, QueryRedepositStatusChangedsArgs, QueryTokenArgs, QueryTokensArgs, QueryTransferArgs, QueryTransfersArgs, QueryUserBalanceArgs, QueryUserBalancesArgs, QueryUserBasesArgs, QueryUserBasisArgs, QueryWithdrawalCancelledArgs, QueryWithdrawalCancelledsArgs, QueryWithdrawalEpochStateArgs, QueryWithdrawalEpochStatesArgs, QueryWithdrawalExecutedArgs, QueryWithdrawalExecutedsArgs, QueryWithdrawalRequestedArgs, QueryWithdrawalRequestedsArgs, QueryWithdrawalsFulfilledArgs, QueryWithdrawalsFulfilledsArgs, Query_MetaArgs, QueuedDeposit, QueuedDepositSnapshot, QueuedDeposit_Filter, QueuedDeposit_OrderBy, QueuedWithdrawal, QueuedWithdrawalSnapshot, QueuedWithdrawal_Filter, QueuedWithdrawal_OrderBy, RedepositStatusChanged, RedepositStatusChanged_Filter, RedepositStatusChanged_OrderBy, RescueDistributorAbi, Scalars, Sdk, SdkFunctionWrapper, SemiFungiblePositionManagerAbi, SemiFungiblePositionManagerV1_1Abi, SharePrice, Simple7702AccountAbi, StateViewAbi, StrategistLeaf, StrategistLeavesArtifact, Token, TokenWhitelistPoolsArgs, Token_Filter, Token_OrderBy, Transfer, Transfer_Filter, Transfer_OrderBy, UniswapHelperAbi, UniswapHelperV1_1Abi, UniswapMigratorAbi, UniswapV3FactoryAbi, UniswapV3PoolAbi, UsdcPlpVaultSepoliaDevConfig, UsdcPlpVaultSepoliaProdConfig, UserBalance, UserBalance_Filter, UserBalance_OrderBy, UserBasis, UserBasis_Filter, UserBasis_OrderBy, WETHAbi, WethPlpVaultSepoliaDevConfig, WethPlpVaultSepoliaProdConfig, WithdrawalCancelled, WithdrawalCancelled_Filter, WithdrawalCancelled_OrderBy, WithdrawalEpochState, WithdrawalEpochStateFragment, WithdrawalEpochStateFragmentDoc, WithdrawalEpochStateSnapshot, WithdrawalEpochState_Filter, WithdrawalEpochState_OrderBy, WithdrawalExecuted, WithdrawalExecuted_Filter, WithdrawalExecuted_OrderBy, WithdrawalRequested, WithdrawalRequested_Filter, WithdrawalRequested_OrderBy, WithdrawalsFulfilled, WithdrawalsFulfilled_Filter, WithdrawalsFulfilled_OrderBy, _Block_, _Meta_, _SubgraphErrorPolicy_, buildExecuteDepositCalldatas, buildExecuteWithdrawalCalldatas, buildManageArgs, buildManagerInput, buildRequestWithdrawalCalldatas, builderFactoryAbi, builderWalletAbi, calculateAssetsFromShares, calculateAvailableShares, calculateClaimableAssetsFromQueuedWithdrawals, calculateClaimableSharesFromQueuedDeposits, calculateSharesFromAssets, collateralTrackerAbi as collateralTrackerV2Abi, convertJsonTreeToArray, encodeApproveFunctionData, encodeDepositFunctionData, encodeExecuteDepositFunctionData, encodeExecuteWithdrawalFunctionData, encodeExecuteWithdrawalMulticallFunctionData, encodeFulfillDepositsFunctionData, encodeFulfillWithdrawalsFunctionData, encodeRequestDepositFunctionData, encodeRequestWithdrawalFunctionData, encodeRequestWithdrawalMulticallFunctionData, encodeWithdrawFunctionData, executeWithdrawal, executeWithdrawalMulticall, findLeaf, generateProof, getAlchemyRpcUrl, getAlchemyWsRpcUrl, getExecuteWithdrawalContractConfig, getExecuteWithdrawalMulticallContractConfig, getHypoVaultConfigForVault, getHypoVaultGraphQLClient, getMinQueuedDepositEpoch, getProofsFromDigests, getProofsUsingTree, getRequestDepositContractConfig, getRequestWithdrawalContractConfig, getRequestWithdrawalMulticallContractConfig, getSdk, panopticFactoryAbi as panopticFactoryV2Abi, panopticHelperAbi as panopticHelperV2Abi, panopticPoolAbi as panopticPoolV2Abi, parseCustomError, requestDeposit, requestWithdrawal, requestWithdrawalMulticall, riskEngineAbi, semiFungiblePositionManagerAbi as semiFungiblePositionManagerV2Abi, simulateExecuteWithdrawal, simulateExecuteWithdrawalMulticall, simulateRequestDeposit, simulateRequestWithdrawal, simulateRequestWithdrawalMulticall, useExecuteWithdrawal, useRequestDeposit, useRequestWithdrawal };
|
|
30304
|
+
export { Account, AccountDepositCancelledsArgs, AccountDepositExecutedsArgs, AccountDepositRequestedsArgs, AccountQueuedDepositsArgs, AccountQueuedWithdrawalsArgs, AccountRedepositStatusChangedsArgs, AccountTransfersArgs, AccountUserBalancesArgs, AccountUserBasesArgs, AccountWithdrawalCancelledsArgs, AccountWithdrawalExecutedsArgs, AccountWithdrawalRequestedsArgs, Account_Filter, Account_OrderBy, AccountantUpdated, AccountantUpdated_Filter, AccountantUpdated_OrderBy, Aggregation_Interval, BaseContractWriteHookOutput, BlockChangedFilter, Block_Height, BuildManagerInputAtBlockParams, BuildManagerInputParams, Bundle, Bundle_Filter, Bundle_OrderBy, CollateralTrackerAbi, CollateralTrackerV1_1Abi, DecodedError, DepositCancelled, DepositCancelled_Filter, DepositCancelled_OrderBy, DepositEpochState, DepositEpochStateFragment, DepositEpochStateFragmentDoc, DepositEpochStateSnapshot, DepositEpochState_Filter, DepositEpochState_OrderBy, DepositExecuted, DepositExecuted_Filter, DepositExecuted_OrderBy, DepositRequested, DepositRequested_Filter, DepositRequested_OrderBy, DepositsFulfilled, DepositsFulfilled_Filter, DepositsFulfilled_OrderBy, Erc1155Abi, Erc20Abi, Exact, FeeWalletUpdated, FeeWalletUpdated_Filter, FeeWalletUpdated_OrderBy, GetDepositEpochStatesForWithdrawalDocument, GetDepositEpochStatesForWithdrawalQuery, GetDepositEpochStatesForWithdrawalQueryVariables, GetDepositOverviewDocument, GetDepositOverviewQuery, GetDepositOverviewQueryVariables, GetFilteredHypoVaultsDocument, GetFilteredHypoVaultsQuery, GetFilteredHypoVaultsQueryVariables, GetLatestDepositAndWithdrawEpochDocument, GetLatestDepositAndWithdrawEpochQuery, GetLatestDepositAndWithdrawEpochQueryVariables, GetLatestEpochDocument, GetLatestEpochQuery, GetLatestEpochQueryVariables, GetQueuedDepositsForWithdrawalDocument, GetQueuedDepositsForWithdrawalQuery, GetQueuedDepositsForWithdrawalQueryVariables, GetQueuedWithdrawalsForExecutionDocument, GetQueuedWithdrawalsForExecutionQuery, GetQueuedWithdrawalsForExecutionQueryVariables, GetVaultHistoryDocument, GetVaultHistoryQuery, GetVaultHistoryQueryVariables, GetWithdrawalEpochStatesForExecutionDocument, GetWithdrawalEpochStatesForExecutionQuery, GetWithdrawalEpochStatesForExecutionQueryVariables, HypoVault, HypoVaultAbi, HypoVaultDepositEpochStatesArgs, HypoVaultFactory, HypoVaultFactory_Filter, HypoVaultFactory_OrderBy, HypoVaultFragment, HypoVaultFragmentDoc, HypoVaultGraphQLClient, HypoVaultManagerConfig, HypoVaultManagerConfigSchema, HypoVaultManagerWithMerkleVerificationAbi, HypoVaultQueuedDepositsArgs, HypoVaultQueuedWithdrawalsArgs, HypoVaultUserBalancesArgs, HypoVaultUserBasesArgs, HypoVaultWithdrawalEpochStatesArgs, HypoVault_Filter, HypoVault_OrderBy, Incremental, InferLeaf, InputMaybe, LeafDescription, LendingAllocationResult, LendingAllocationRow, MakeEmpty, MakeMaybe, MakeOptional, ManageAction, ManageLeaf, ManageVaultArgs, ManagerUpdated, ManagerUpdated_Filter, ManagerUpdated_OrderBy, Maybe, Multicall3Abi, NonFungiblePositionManagerAbi, OrderDirection, OwnershipTransferred, OwnershipTransferred_Filter, OwnershipTransferred_OrderBy, PanopticFactoryAbi, PanopticFactoryV1_1Abi, PanopticHelperAbi, PanopticPoolAbi, PanopticPoolV1_1Abi, PanopticQueryV1_1Abi, PanopticVaultAccountantAbi, PanopticVaultAccountantManagerInputAbi, Pool, PoolInfo, PoolManagerAbi, Pool_Filter, Pool_OrderBy, ProductionUSDCGammaStrategistLeaves, ProductionUSDCGammaVaultPoolInfos, ProductionUSDCPLPStrategistLeaves, ProductionUSDCPLPVaultPoolInfos, ProductionWETHPLPStrategistLeaves, ProductionWETHPLPVaultPoolInfos, Query, QueryAccountArgs, QueryAccountantUpdatedArgs, QueryAccountantUpdatedsArgs, QueryAccountsArgs, QueryBundleArgs, QueryBundlesArgs, QueryDepositCancelledArgs, QueryDepositCancelledsArgs, QueryDepositEpochStateArgs, QueryDepositEpochStatesArgs, QueryDepositExecutedArgs, QueryDepositExecutedsArgs, QueryDepositRequestedArgs, QueryDepositRequestedsArgs, QueryDepositsFulfilledArgs, QueryDepositsFulfilledsArgs, QueryFeeWalletUpdatedArgs, QueryFeeWalletUpdatedsArgs, QueryHypoVaultArgs, QueryHypoVaultFactoriesArgs, QueryHypoVaultFactoryArgs, QueryHypoVaultsArgs, QueryManagerUpdatedArgs, QueryManagerUpdatedsArgs, QueryOwnershipTransferredArgs, QueryOwnershipTransferredsArgs, QueryPoolArgs, QueryPoolsArgs, QueryQueuedDepositArgs, QueryQueuedDepositsArgs, QueryQueuedWithdrawalArgs, QueryQueuedWithdrawalsArgs, QueryRedepositStatusChangedArgs, QueryRedepositStatusChangedsArgs, QueryTokenArgs, QueryTokensArgs, QueryTransferArgs, QueryTransfersArgs, QueryUserBalanceArgs, QueryUserBalancesArgs, QueryUserBasesArgs, QueryUserBasisArgs, QueryWithdrawalCancelledArgs, QueryWithdrawalCancelledsArgs, QueryWithdrawalEpochStateArgs, QueryWithdrawalEpochStatesArgs, QueryWithdrawalExecutedArgs, QueryWithdrawalExecutedsArgs, QueryWithdrawalRequestedArgs, QueryWithdrawalRequestedsArgs, QueryWithdrawalsFulfilledArgs, QueryWithdrawalsFulfilledsArgs, Query_MetaArgs, QueuedDeposit, QueuedDepositSnapshot, QueuedDeposit_Filter, QueuedDeposit_OrderBy, QueuedWithdrawal, QueuedWithdrawalSnapshot, QueuedWithdrawal_Filter, QueuedWithdrawal_OrderBy, RedepositStatusChanged, RedepositStatusChanged_Filter, RedepositStatusChanged_OrderBy, RescueDistributorAbi, Scalars, Sdk, SdkFunctionWrapper, SemiFungiblePositionManagerAbi, SemiFungiblePositionManagerV1_1Abi, SharePrice, Simple7702AccountAbi, StateViewAbi, StrategistLeaf, StrategistLeavesArtifact, Token, TokenWhitelistPoolsArgs, Token_Filter, Token_OrderBy, Transfer, Transfer_Filter, Transfer_OrderBy, UniswapHelperAbi, UniswapHelperV1_1Abi, UniswapMigratorAbi, UniswapV3FactoryAbi, UniswapV3PoolAbi, UsdcPlpVaultSepoliaDevConfig, UsdcPlpVaultSepoliaProdConfig, UserBalance, UserBalance_Filter, UserBalance_OrderBy, UserBasis, UserBasis_Filter, UserBasis_OrderBy, WETHAbi, WethPlpVaultSepoliaDevConfig, WethPlpVaultSepoliaProdConfig, WithdrawalCancelled, WithdrawalCancelled_Filter, WithdrawalCancelled_OrderBy, WithdrawalEpochState, WithdrawalEpochStateFragment, WithdrawalEpochStateFragmentDoc, WithdrawalEpochStateSnapshot, WithdrawalEpochState_Filter, WithdrawalEpochState_OrderBy, WithdrawalExecuted, WithdrawalExecuted_Filter, WithdrawalExecuted_OrderBy, WithdrawalRequested, WithdrawalRequested_Filter, WithdrawalRequested_OrderBy, WithdrawalsFulfilled, WithdrawalsFulfilled_Filter, WithdrawalsFulfilled_OrderBy, _Block_, _Meta_, _SubgraphErrorPolicy_, annualizePerSecondRateWad, buildExecuteDepositCalldatas, buildExecuteWithdrawalCalldatas, buildManageArgs, buildManagerInput, buildManagerInputAtBlock, buildRequestWithdrawalCalldatas, builderFactoryAbi, builderWalletAbi, calculateAssetsFromShares, calculateAvailableShares, calculateClaimableAssetsFromQueuedWithdrawals, calculateClaimableSharesFromQueuedDeposits, calculateSharesFromAssets, cancelDeposit, chainToHypoVaultGraphQlAPI, collateralTrackerAbi as collateralTrackerV2Abi, convertJsonTreeToArray, encodeApproveFunctionData, encodeCancelDepositFunctionData, encodeDepositFunctionData, encodeExecuteDepositFunctionData, encodeExecuteWithdrawalFunctionData, encodeExecuteWithdrawalMulticallFunctionData, encodeFulfillDepositsFunctionData, encodeFulfillWithdrawalsFunctionData, encodeRequestDepositFunctionData, encodeRequestWithdrawalFunctionData, encodeRequestWithdrawalMulticallFunctionData, encodeWithdrawFunctionData, executeWithdrawal, executeWithdrawalMulticall, findLeaf, formatPerSecondRateWadAsAprPct, formatPerSecondRateWadAsApyPct, generateProof, getAlchemyRpcUrl, getAlchemyWsRpcUrl, getCancelDepositContractConfig, getExecuteWithdrawalContractConfig, getExecuteWithdrawalMulticallContractConfig, getHypoVaultConfigForVault, getHypoVaultGraphQLClient, getLendingAllocationRows, getMinQueuedDepositEpoch, getProofsFromDigests, getProofsUsingTree, getRequestDepositContractConfig, getRequestWithdrawalContractConfig, getRequestWithdrawalMulticallContractConfig, getSdk, panopticFactoryAbi as panopticFactoryV2Abi, panopticHelperAbi as panopticHelperV2Abi, panopticPoolAbi as panopticPoolV2Abi, parseCustomError, requestDeposit, requestWithdrawal, requestWithdrawalMulticall, riskEngineAbi, semiFungiblePositionManagerAbi as semiFungiblePositionManagerV2Abi, simulateCancelDeposit, simulateExecuteWithdrawal, simulateExecuteWithdrawalMulticall, simulateRequestDeposit, simulateRequestWithdrawal, simulateRequestWithdrawalMulticall, useCancelDeposit, useExecuteWithdrawal, useRequestDeposit, useRequestWithdrawal };
|
|
28671
30305
|
//# sourceMappingURL=index.d.ts.map
|