@inco/shield-js 0.0.0-bootstrap.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +52 -308
- package/dist/contracts/abi.d.ts +2000 -4513
- package/dist/contracts/abi.js +2400 -5651
- package/dist/contracts/index.d.ts +2 -2
- package/dist/contracts/index.js +2 -2
- package/dist/contracts/utils.d.ts +5 -24
- package/dist/contracts/utils.js +13 -24
- package/dist/errors.d.ts +16 -47
- package/dist/errors.js +6 -53
- package/dist/generated/inco/shield/v2/conductor_pb.d.ts +77 -0
- package/dist/generated/inco/shield/v2/conductor_pb.js +6 -0
- package/dist/generated/inco/shield/v2/deposit_pb.d.ts +12 -103
- package/dist/generated/inco/shield/v2/deposit_pb.js +4 -141
- package/dist/generated/inco/shield/v2/drafting_pb.d.ts +45 -269
- package/dist/generated/inco/shield/v2/drafting_pb.js +8 -361
- package/dist/generated/inco/shield/v2/types_pb.d.ts +47 -166
- package/dist/generated/inco/shield/v2/types_pb.js +12 -261
- package/dist/index.d.ts +1 -7
- package/dist/index.js +1 -14
- package/dist/shield/abi.d.ts +5 -0
- package/dist/shield/abi.js +28 -0
- package/dist/shield/client.d.ts +27 -51
- package/dist/shield/client.js +73 -65
- package/dist/shield/convert.d.ts +2 -14
- package/dist/shield/convert.js +39 -115
- package/dist/shield/encryption.d.ts +0 -67
- package/dist/shield/encryption.js +0 -67
- package/dist/shield/envelope.d.ts +10 -11
- package/dist/shield/envelope.js +15 -14
- package/dist/shield/fee.d.ts +24 -0
- package/dist/shield/fee.js +151 -0
- package/dist/shield/index.d.ts +9 -3
- package/dist/shield/index.js +7 -2
- package/dist/shield/intent.d.ts +20 -933
- package/dist/shield/intent.js +92 -112
- package/dist/shield/permission-status.d.ts +9 -0
- package/dist/shield/permission-status.js +8 -0
- package/dist/shield/rpc.d.ts +50 -49
- package/dist/shield/rpc.js +207 -354
- package/dist/shield/shield.eip712.gen.d.ts +1096 -43
- package/dist/shield/shield.eip712.gen.js +572 -62
- package/dist/shield/types.d.ts +7 -102
- package/dist/shield/types.js +1 -4
- package/dist/shield/userop/gas-estimation.d.ts +8 -23
- package/dist/shield/userop/gas-estimation.js +100 -137
- package/dist/shield/userop/paymaster.d.ts +15 -0
- package/dist/shield/userop/paymaster.js +17 -0
- package/dist/shield/userop/token-exchange.d.ts +5 -52
- package/dist/shield/userop/token-exchange.js +41 -149
- package/dist/shield/userop/types.d.ts +3 -28
- package/dist/shield/userop/types.js +0 -3
- package/dist/shield/userop/userOp.d.ts +0 -19
- package/dist/shield/userop/userOp.js +4 -22
- package/dist/shield/utils/chain.d.ts +1 -0
- package/dist/shield/utils/chain.js +3 -0
- package/dist/shield/validate-withdrawal-split.d.ts +13 -0
- package/dist/shield/validate-withdrawal-split.js +93 -0
- package/package.json +18 -27
- package/dist/generated/inco/shield/v2/conductor_connect.d.ts +0 -137
- package/dist/generated/inco/shield/v2/conductor_connect.js +0 -141
- package/dist/generated/inco/shield/v2/permission_pb.d.ts +0 -443
- package/dist/generated/inco/shield/v2/permission_pb.js +0 -639
- package/dist/generated/inco/shield/v2/query_pb.d.ts +0 -103
- package/dist/generated/inco/shield/v2/query_pb.js +0 -141
- package/dist/shield/userop/index.d.ts +0 -1
- package/dist/shield/userop/index.js +0 -1
- package/dist/uniswap-adapter/config.d.ts +0 -34
- package/dist/uniswap-adapter/config.js +0 -45
- package/dist/uniswap-adapter/find-pools.d.ts +0 -91
- package/dist/uniswap-adapter/find-pools.js +0 -108
- package/dist/uniswap-adapter/index.d.ts +0 -10
- package/dist/uniswap-adapter/index.js +0 -13
- package/dist/uniswap-adapter/swap.d.ts +0 -344
- package/dist/uniswap-adapter/swap.js +0 -309
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
import { type Hex } from 'viem';
|
|
2
|
+
export declare const ASSET_TYPEHASH: `0x${string}`;
|
|
3
|
+
export type Asset = {
|
|
4
|
+
readonly standard: number;
|
|
5
|
+
readonly token: Hex;
|
|
6
|
+
readonly tokenId: bigint;
|
|
7
|
+
};
|
|
8
|
+
export declare function assetStructHash(s: Asset): Hex;
|
|
2
9
|
export declare const ASSET_MOVEMENT_TYPEHASH: `0x${string}`;
|
|
3
10
|
export type AssetMovement = {
|
|
11
|
+
readonly account: Hex;
|
|
4
12
|
readonly assetAdapter: Hex;
|
|
5
|
-
readonly assetIdentificationArgs: Hex;
|
|
6
13
|
readonly movementArgs: Hex;
|
|
7
14
|
};
|
|
8
15
|
export declare function assetMovementStructHash(s: AssetMovement): Hex;
|
|
@@ -13,14 +20,6 @@ export type Call = {
|
|
|
13
20
|
readonly data: Hex;
|
|
14
21
|
};
|
|
15
22
|
export declare function callStructHash(s: Call): Hex;
|
|
16
|
-
export declare const BALANCE_QUERY_TYPEHASH: `0x${string}`;
|
|
17
|
-
export type BalanceQuery = {
|
|
18
|
-
readonly requester: Hex;
|
|
19
|
-
readonly owner: Hex;
|
|
20
|
-
readonly assetId: Hex;
|
|
21
|
-
readonly queryTimestamp: bigint;
|
|
22
|
-
};
|
|
23
|
-
export declare function balanceQueryStructHash(s: BalanceQuery): Hex;
|
|
24
23
|
export declare const HANDLE_PREIMAGE_TYPEHASH: `0x${string}`;
|
|
25
24
|
export type HandlePreimage = {
|
|
26
25
|
readonly previousHandle: Hex;
|
|
@@ -40,35 +39,34 @@ export type Block = {
|
|
|
40
39
|
readonly eventsHash: Hex;
|
|
41
40
|
};
|
|
42
41
|
export declare function blockStructHash(s: Block): Hex;
|
|
43
|
-
export declare const
|
|
44
|
-
export type
|
|
42
|
+
export declare const DEPOSIT_ATTESTATION_PAYLOAD_TYPEHASH: `0x${string}`;
|
|
43
|
+
export type DepositAttestationPayload = {
|
|
45
44
|
readonly ciphertext: Hex;
|
|
46
45
|
readonly assetId: Hex;
|
|
47
46
|
readonly escapeCommitment: Hex;
|
|
48
47
|
readonly receiverEscapeData: Hex;
|
|
49
48
|
};
|
|
49
|
+
export declare function depositAttestationPayloadStructHash(s: DepositAttestationPayload): Hex;
|
|
50
|
+
export declare const DEPOSIT_ATTESTATION_TYPEHASH: `0x${string}`;
|
|
51
|
+
export type DepositAttestation = {
|
|
52
|
+
readonly payload: DepositAttestationPayload;
|
|
53
|
+
readonly signature: Hex;
|
|
54
|
+
};
|
|
50
55
|
export declare function depositAttestationStructHash(s: DepositAttestation): Hex;
|
|
51
56
|
export declare const DEPOSIT_TYPEHASH: `0x${string}`;
|
|
52
57
|
export type Deposit = {
|
|
53
58
|
readonly attestation: DepositAttestation;
|
|
59
|
+
readonly asset: Asset;
|
|
54
60
|
readonly assetMovement: AssetMovement;
|
|
55
|
-
readonly amount: bigint;
|
|
56
|
-
readonly from: Hex;
|
|
57
|
-
readonly teeAttestationSignature: Hex;
|
|
58
61
|
};
|
|
59
62
|
export declare function depositStructHash(s: Deposit): Hex;
|
|
60
|
-
export declare const DEPOSIT_ATTESTATION_REQUEST_TYPEHASH: `0x${string}`;
|
|
61
|
-
export type DepositAttestationRequest = {
|
|
62
|
-
readonly recipient: Hex;
|
|
63
|
-
readonly assetId: Hex;
|
|
64
|
-
};
|
|
65
|
-
export declare function depositAttestationRequestStructHash(s: DepositAttestationRequest): Hex;
|
|
66
63
|
export declare const PERMISSION_TYPEHASH: `0x${string}`;
|
|
67
64
|
export type Permission = {
|
|
68
65
|
readonly owner: Hex;
|
|
69
66
|
readonly spender: Hex;
|
|
70
67
|
readonly assetId: Hex;
|
|
71
68
|
readonly allowance: bigint;
|
|
69
|
+
readonly to: readonly Hex[];
|
|
72
70
|
readonly start: bigint;
|
|
73
71
|
readonly end: bigint;
|
|
74
72
|
readonly period: bigint;
|
|
@@ -76,12 +74,12 @@ export type Permission = {
|
|
|
76
74
|
readonly salt: Hex;
|
|
77
75
|
};
|
|
78
76
|
export declare function permissionStructHash(s: Permission): Hex;
|
|
79
|
-
export declare const
|
|
80
|
-
export type
|
|
77
|
+
export declare const PERMISSION_REQUEST_TYPEHASH: `0x${string}`;
|
|
78
|
+
export type PermissionRequest = {
|
|
81
79
|
readonly permission: Permission;
|
|
82
|
-
readonly
|
|
80
|
+
readonly requestExpiry: bigint;
|
|
83
81
|
};
|
|
84
|
-
export declare function
|
|
82
|
+
export declare function permissionRequestStructHash(s: PermissionRequest): Hex;
|
|
85
83
|
export declare const PERMISSION_ATTESTATION_PAYLOAD_TYPEHASH: `0x${string}`;
|
|
86
84
|
export type PermissionAttestationPayload = {
|
|
87
85
|
readonly permissionId: Hex;
|
|
@@ -105,10 +103,8 @@ export type TransferIntentOp = {
|
|
|
105
103
|
export declare function transferIntentOpStructHash(s: TransferIntentOp): Hex;
|
|
106
104
|
export declare const WITHDRAWAL_CORE_INTENT_OP_TYPEHASH: `0x${string}`;
|
|
107
105
|
export type WithdrawalCoreIntentOp = {
|
|
108
|
-
readonly
|
|
109
|
-
readonly
|
|
110
|
-
readonly amount: bigint;
|
|
111
|
-
readonly assetMovement: AssetMovement;
|
|
106
|
+
readonly asset: Asset;
|
|
107
|
+
readonly assetMovements: readonly AssetMovement[];
|
|
112
108
|
};
|
|
113
109
|
export declare function withdrawalCoreIntentOpStructHash(s: WithdrawalCoreIntentOp): Hex;
|
|
114
110
|
export declare const WITHDRAWAL_INTENT_OP_TYPEHASH: `0x${string}`;
|
|
@@ -137,8 +133,9 @@ export type UserWideRevocationIntentOp = {
|
|
|
137
133
|
export declare function userWideRevocationIntentOpStructHash(s: UserWideRevocationIntentOp): Hex;
|
|
138
134
|
export declare const GAS_TYPEHASH: `0x${string}`;
|
|
139
135
|
export type Gas = {
|
|
140
|
-
readonly
|
|
136
|
+
readonly asset: Asset;
|
|
141
137
|
readonly maxAmount: bigint;
|
|
138
|
+
readonly assetMovement: AssetMovement;
|
|
142
139
|
readonly callGasLimit: bigint;
|
|
143
140
|
readonly verificationGasLimit: bigint;
|
|
144
141
|
readonly preVerificationGas: bigint;
|
|
@@ -192,21 +189,21 @@ export declare const DELEGATED_TRANSFER_INTENT_TYPEHASH: `0x${string}`;
|
|
|
192
189
|
export type DelegatedTransferIntent = {
|
|
193
190
|
readonly intent: TransferIntent;
|
|
194
191
|
readonly spender: Hex;
|
|
195
|
-
readonly
|
|
192
|
+
readonly permissionId: Hex;
|
|
196
193
|
};
|
|
197
194
|
export declare function delegatedTransferIntentStructHash(s: DelegatedTransferIntent): Hex;
|
|
198
195
|
export declare const DELEGATED_WITHDRAWAL_INTENT_TYPEHASH: `0x${string}`;
|
|
199
196
|
export type DelegatedWithdrawalIntent = {
|
|
200
197
|
readonly intent: WithdrawalIntent;
|
|
201
198
|
readonly spender: Hex;
|
|
202
|
-
readonly
|
|
199
|
+
readonly permissionId: Hex;
|
|
203
200
|
};
|
|
204
201
|
export declare function delegatedWithdrawalIntentStructHash(s: DelegatedWithdrawalIntent): Hex;
|
|
205
202
|
export declare const DELEGATED_DEFI_INTERACTION_INTENT_TYPEHASH: `0x${string}`;
|
|
206
203
|
export type DelegatedDefiInteractionIntent = {
|
|
207
204
|
readonly intent: DefiInteractionIntent;
|
|
208
205
|
readonly spender: Hex;
|
|
209
|
-
readonly
|
|
206
|
+
readonly permissionId: Hex;
|
|
210
207
|
};
|
|
211
208
|
export declare function delegatedDefiInteractionIntentStructHash(s: DelegatedDefiInteractionIntent): Hex;
|
|
212
209
|
export declare const TRANSFER_TYPEHASH: `0x${string}`;
|
|
@@ -224,12 +221,11 @@ export type Transfer = {
|
|
|
224
221
|
export declare function transferStructHash(s: Transfer): Hex;
|
|
225
222
|
export declare const WITHDRAWAL_CORE_TYPEHASH: `0x${string}`;
|
|
226
223
|
export type WithdrawalCore = {
|
|
227
|
-
readonly
|
|
228
|
-
readonly
|
|
224
|
+
readonly asset: Asset;
|
|
225
|
+
readonly assetMovements: readonly AssetMovement[];
|
|
229
226
|
readonly nullifier: Hex;
|
|
230
227
|
readonly draftingHandle: Hex;
|
|
231
228
|
readonly draftingTimestamp: bigint;
|
|
232
|
-
readonly assetMovement: AssetMovement;
|
|
233
229
|
readonly ciphertext: Hex;
|
|
234
230
|
readonly senderEscapeCommitment: Hex;
|
|
235
231
|
readonly senderEscapeData: Hex;
|
|
@@ -319,46 +315,205 @@ export declare const GET_PERMISSIONS_BY_OWNER_TYPEHASH: `0x${string}`;
|
|
|
319
315
|
export type GetPermissionsByOwner = {
|
|
320
316
|
readonly requester: Hex;
|
|
321
317
|
readonly includeExpired: boolean;
|
|
322
|
-
readonly timestamp: bigint;
|
|
323
318
|
};
|
|
324
319
|
export declare function getPermissionsByOwnerStructHash(s: GetPermissionsByOwner): Hex;
|
|
325
320
|
export declare const GET_PERMISSIONS_BY_SPENDER_TYPEHASH: `0x${string}`;
|
|
326
321
|
export type GetPermissionsBySpender = {
|
|
327
322
|
readonly requester: Hex;
|
|
328
323
|
readonly includeExpired: boolean;
|
|
329
|
-
readonly timestamp: bigint;
|
|
330
324
|
};
|
|
331
325
|
export declare function getPermissionsBySpenderStructHash(s: GetPermissionsBySpender): Hex;
|
|
332
326
|
export declare const GET_PERMISSION_DETAILS_TYPEHASH: `0x${string}`;
|
|
333
327
|
export type GetPermissionDetails = {
|
|
334
328
|
readonly requester: Hex;
|
|
335
329
|
readonly permissionId: Hex;
|
|
336
|
-
readonly timestamp: bigint;
|
|
337
330
|
};
|
|
338
331
|
export declare function getPermissionDetailsStructHash(s: GetPermissionDetails): Hex;
|
|
339
332
|
export declare const GET_SPENDABLE_TYPEHASH: `0x${string}`;
|
|
340
333
|
export type GetSpendable = {
|
|
341
334
|
readonly requester: Hex;
|
|
342
335
|
readonly permissionId: Hex;
|
|
343
|
-
readonly timestamp: bigint;
|
|
344
336
|
};
|
|
345
337
|
export declare function getSpendableStructHash(s: GetSpendable): Hex;
|
|
346
338
|
export declare const GET_OWNER_GENERATION_TYPEHASH: `0x${string}`;
|
|
347
339
|
export type GetOwnerGeneration = {
|
|
348
340
|
readonly requester: Hex;
|
|
349
|
-
readonly timestamp: bigint;
|
|
350
341
|
};
|
|
351
342
|
export declare function getOwnerGenerationStructHash(s: GetOwnerGeneration): Hex;
|
|
343
|
+
export declare const SPENDABLE_RESPONSE_TYPEHASH: `0x${string}`;
|
|
344
|
+
export type SpendableResponse = {
|
|
345
|
+
readonly requester: Hex;
|
|
346
|
+
readonly permissionId: Hex;
|
|
347
|
+
readonly spendable: bigint;
|
|
348
|
+
readonly found: boolean;
|
|
349
|
+
readonly draftingHandle: Hex;
|
|
350
|
+
readonly draftingTimestamp: bigint;
|
|
351
|
+
};
|
|
352
|
+
export declare function spendableResponseStructHash(s: SpendableResponse): Hex;
|
|
353
|
+
export declare const OWNER_GENERATION_RESPONSE_TYPEHASH: `0x${string}`;
|
|
354
|
+
export type OwnerGenerationResponse = {
|
|
355
|
+
readonly requester: Hex;
|
|
356
|
+
readonly generation: bigint;
|
|
357
|
+
readonly draftingHandle: Hex;
|
|
358
|
+
readonly draftingTimestamp: bigint;
|
|
359
|
+
};
|
|
360
|
+
export declare function ownerGenerationResponseStructHash(s: OwnerGenerationResponse): Hex;
|
|
361
|
+
export declare const PERMISSION_INFO_TYPEHASH: `0x${string}`;
|
|
362
|
+
export type PermissionInfo = {
|
|
363
|
+
readonly permissionId: Hex;
|
|
364
|
+
readonly terms: Permission;
|
|
365
|
+
readonly spentInCurrentPeriod: bigint;
|
|
366
|
+
readonly availableAllowance: bigint;
|
|
367
|
+
readonly status: number;
|
|
368
|
+
readonly currentPeriodStart: bigint;
|
|
369
|
+
};
|
|
370
|
+
export declare function permissionInfoStructHash(s: PermissionInfo): Hex;
|
|
371
|
+
export declare const PERMISSION_DETAILS_RESPONSE_TYPEHASH: `0x${string}`;
|
|
372
|
+
export type PermissionDetailsResponse = {
|
|
373
|
+
readonly requester: Hex;
|
|
374
|
+
readonly draftingHandle: Hex;
|
|
375
|
+
readonly draftingTimestamp: bigint;
|
|
376
|
+
readonly found: boolean;
|
|
377
|
+
readonly permission: PermissionInfo;
|
|
378
|
+
};
|
|
379
|
+
export declare function permissionDetailsResponseStructHash(s: PermissionDetailsResponse): Hex;
|
|
380
|
+
export declare const PERMISSION_LIST_RESPONSE_TYPEHASH: `0x${string}`;
|
|
381
|
+
export type PermissionListResponse = {
|
|
382
|
+
readonly requester: Hex;
|
|
383
|
+
readonly byOwner: boolean;
|
|
384
|
+
readonly includeExpired: boolean;
|
|
385
|
+
readonly draftingHandle: Hex;
|
|
386
|
+
readonly draftingTimestamp: bigint;
|
|
387
|
+
readonly permissions: readonly PermissionInfo[];
|
|
388
|
+
};
|
|
389
|
+
export declare function permissionListResponseStructHash(s: PermissionListResponse): Hex;
|
|
390
|
+
export declare const VIEWING_SESSION_TYPEHASH: `0x${string}`;
|
|
391
|
+
export type ViewingSession = {
|
|
392
|
+
readonly owner: Hex;
|
|
393
|
+
readonly issuedAt: bigint;
|
|
394
|
+
readonly expiresAt: bigint;
|
|
395
|
+
readonly periodStart: bigint;
|
|
396
|
+
readonly periodEnd: bigint;
|
|
397
|
+
readonly responseKey: Hex;
|
|
398
|
+
readonly salt: Hex;
|
|
399
|
+
};
|
|
400
|
+
export declare function viewingSessionStructHash(s: ViewingSession): Hex;
|
|
401
|
+
export declare const BALANCE_QUERY_TYPEHASH: `0x${string}`;
|
|
402
|
+
export type BalanceQuery = {
|
|
403
|
+
readonly session: ViewingSession;
|
|
404
|
+
readonly assetId: Hex;
|
|
405
|
+
};
|
|
406
|
+
export declare function balanceQueryStructHash(s: BalanceQuery): Hex;
|
|
407
|
+
export declare const PORTFOLIO_QUERY_TYPEHASH: `0x${string}`;
|
|
408
|
+
export type PortfolioQuery = {
|
|
409
|
+
readonly session: ViewingSession;
|
|
410
|
+
};
|
|
411
|
+
export declare function portfolioQueryStructHash(s: PortfolioQuery): Hex;
|
|
412
|
+
export declare const HISTORY_CURSOR_TYPEHASH: `0x${string}`;
|
|
413
|
+
export type HistoryCursor = {
|
|
414
|
+
readonly anchorHandle: Hex;
|
|
415
|
+
readonly afterTimestamp: bigint;
|
|
416
|
+
readonly afterOpIndex: bigint;
|
|
417
|
+
};
|
|
418
|
+
export declare function historyCursorStructHash(s: HistoryCursor): Hex;
|
|
419
|
+
export declare const REQUEST_PAGINATION_TYPEHASH: `0x${string}`;
|
|
420
|
+
export type RequestPagination = {
|
|
421
|
+
readonly cursor: HistoryCursor;
|
|
422
|
+
readonly limit: number;
|
|
423
|
+
};
|
|
424
|
+
export declare function requestPaginationStructHash(s: RequestPagination): Hex;
|
|
425
|
+
export declare const BALANCE_HISTORY_QUERY_TYPEHASH: `0x${string}`;
|
|
426
|
+
export type BalanceHistoryQuery = {
|
|
427
|
+
readonly session: ViewingSession;
|
|
428
|
+
readonly assetId: Hex;
|
|
429
|
+
readonly pagination: RequestPagination;
|
|
430
|
+
};
|
|
431
|
+
export declare function balanceHistoryQueryStructHash(s: BalanceHistoryQuery): Hex;
|
|
432
|
+
export declare const PORTFOLIO_HISTORY_QUERY_TYPEHASH: `0x${string}`;
|
|
433
|
+
export type PortfolioHistoryQuery = {
|
|
434
|
+
readonly session: ViewingSession;
|
|
435
|
+
readonly pagination: RequestPagination;
|
|
436
|
+
};
|
|
437
|
+
export declare function portfolioHistoryQueryStructHash(s: PortfolioHistoryQuery): Hex;
|
|
438
|
+
export declare const HISTORY_ENTRY_TYPEHASH: `0x${string}`;
|
|
439
|
+
export type HistoryEntry = {
|
|
440
|
+
readonly opIndex: bigint;
|
|
441
|
+
readonly kind: number;
|
|
442
|
+
readonly sender: Hex;
|
|
443
|
+
readonly receiver: Hex;
|
|
444
|
+
readonly assetId: Hex;
|
|
445
|
+
readonly amount: bigint;
|
|
446
|
+
readonly balanceAfter: bigint;
|
|
447
|
+
readonly nullifier: Hex;
|
|
448
|
+
readonly memo: Hex;
|
|
449
|
+
readonly handle: Hex;
|
|
450
|
+
readonly blockTimestamp: bigint;
|
|
451
|
+
readonly blockNumber: bigint;
|
|
452
|
+
readonly blockHash: Hex;
|
|
453
|
+
readonly txHash: Hex;
|
|
454
|
+
};
|
|
455
|
+
export declare function historyEntryStructHash(s: HistoryEntry): Hex;
|
|
456
|
+
export declare const RESPONSE_PAGINATION_TYPEHASH: `0x${string}`;
|
|
457
|
+
export type ResponsePagination = {
|
|
458
|
+
readonly anchorHandle: Hex;
|
|
459
|
+
readonly anchorBlockHash: Hex;
|
|
460
|
+
readonly anchorTimestamp: bigint;
|
|
461
|
+
readonly nextTimestamp: bigint;
|
|
462
|
+
readonly nextOpIndex: bigint;
|
|
463
|
+
readonly hasMore: boolean;
|
|
464
|
+
};
|
|
465
|
+
export declare function responsePaginationStructHash(s: ResponsePagination): Hex;
|
|
466
|
+
export declare const BALANCE_HISTORY_RESPONSE_TYPEHASH: `0x${string}`;
|
|
467
|
+
export type BalanceHistoryResponse = {
|
|
468
|
+
readonly owner: Hex;
|
|
469
|
+
readonly assetId: Hex;
|
|
470
|
+
readonly pagination: ResponsePagination;
|
|
471
|
+
readonly entries: readonly HistoryEntry[];
|
|
472
|
+
};
|
|
473
|
+
export declare function balanceHistoryResponseStructHash(s: BalanceHistoryResponse): Hex;
|
|
474
|
+
export declare const PORTFOLIO_HISTORY_RESPONSE_TYPEHASH: `0x${string}`;
|
|
475
|
+
export type PortfolioHistoryResponse = {
|
|
476
|
+
readonly owner: Hex;
|
|
477
|
+
readonly pagination: ResponsePagination;
|
|
478
|
+
readonly entries: readonly HistoryEntry[];
|
|
479
|
+
};
|
|
480
|
+
export declare function portfolioHistoryResponseStructHash(s: PortfolioHistoryResponse): Hex;
|
|
481
|
+
export declare const BALANCE_RESPONSE_TYPEHASH: `0x${string}`;
|
|
482
|
+
export type BalanceResponse = {
|
|
483
|
+
readonly owner: Hex;
|
|
484
|
+
readonly assetId: Hex;
|
|
485
|
+
readonly bankBalance: bigint;
|
|
486
|
+
readonly outstandingBalance: bigint;
|
|
487
|
+
readonly bookBalance: bigint;
|
|
488
|
+
readonly anchorHandle: Hex;
|
|
489
|
+
readonly anchorBlockHash: Hex;
|
|
490
|
+
};
|
|
491
|
+
export declare function balanceResponseStructHash(s: BalanceResponse): Hex;
|
|
492
|
+
export declare const ASSET_BALANCE_TYPEHASH: `0x${string}`;
|
|
493
|
+
export type AssetBalance = {
|
|
494
|
+
readonly assetId: Hex;
|
|
495
|
+
readonly bankBalance: bigint;
|
|
496
|
+
};
|
|
497
|
+
export declare function assetBalanceStructHash(s: AssetBalance): Hex;
|
|
498
|
+
export declare const PORTFOLIO_RESPONSE_TYPEHASH: `0x${string}`;
|
|
499
|
+
export type PortfolioResponse = {
|
|
500
|
+
readonly owner: Hex;
|
|
501
|
+
readonly anchorHandle: Hex;
|
|
502
|
+
readonly anchorBlockHash: Hex;
|
|
503
|
+
readonly anchorTimestamp: bigint;
|
|
504
|
+
readonly balances: readonly AssetBalance[];
|
|
505
|
+
};
|
|
506
|
+
export declare function portfolioResponseStructHash(s: PortfolioResponse): Hex;
|
|
507
|
+
export declare function assetDigest(s: Asset, domainSeparator: Hex): Hex;
|
|
352
508
|
export declare function assetMovementDigest(s: AssetMovement, domainSeparator: Hex): Hex;
|
|
353
509
|
export declare function callDigest(s: Call, domainSeparator: Hex): Hex;
|
|
354
|
-
export declare function balanceQueryDigest(s: BalanceQuery, domainSeparator: Hex): Hex;
|
|
355
510
|
export declare function handlePreimageDigest(s: HandlePreimage, domainSeparator: Hex): Hex;
|
|
356
511
|
export declare function blockDigest(s: Block, domainSeparator: Hex): Hex;
|
|
512
|
+
export declare function depositAttestationPayloadDigest(s: DepositAttestationPayload, domainSeparator: Hex): Hex;
|
|
357
513
|
export declare function depositAttestationDigest(s: DepositAttestation, domainSeparator: Hex): Hex;
|
|
358
514
|
export declare function depositDigest(s: Deposit, domainSeparator: Hex): Hex;
|
|
359
|
-
export declare function depositAttestationRequestDigest(s: DepositAttestationRequest, domainSeparator: Hex): Hex;
|
|
360
515
|
export declare function permissionDigest(s: Permission, domainSeparator: Hex): Hex;
|
|
361
|
-
export declare function
|
|
516
|
+
export declare function permissionRequestDigest(s: PermissionRequest, domainSeparator: Hex): Hex;
|
|
362
517
|
export declare function permissionAttestationPayloadDigest(s: PermissionAttestationPayload, domainSeparator: Hex): Hex;
|
|
363
518
|
export declare function permissionAttestationDigest(s: PermissionAttestation, domainSeparator: Hex): Hex;
|
|
364
519
|
export declare function transferIntentOpDigest(s: TransferIntentOp, domainSeparator: Hex): Hex;
|
|
@@ -394,3 +549,901 @@ export declare function getPermissionsBySpenderDigest(s: GetPermissionsBySpender
|
|
|
394
549
|
export declare function getPermissionDetailsDigest(s: GetPermissionDetails, domainSeparator: Hex): Hex;
|
|
395
550
|
export declare function getSpendableDigest(s: GetSpendable, domainSeparator: Hex): Hex;
|
|
396
551
|
export declare function getOwnerGenerationDigest(s: GetOwnerGeneration, domainSeparator: Hex): Hex;
|
|
552
|
+
export declare function spendableResponseDigest(s: SpendableResponse, domainSeparator: Hex): Hex;
|
|
553
|
+
export declare function ownerGenerationResponseDigest(s: OwnerGenerationResponse, domainSeparator: Hex): Hex;
|
|
554
|
+
export declare function permissionInfoDigest(s: PermissionInfo, domainSeparator: Hex): Hex;
|
|
555
|
+
export declare function permissionDetailsResponseDigest(s: PermissionDetailsResponse, domainSeparator: Hex): Hex;
|
|
556
|
+
export declare function permissionListResponseDigest(s: PermissionListResponse, domainSeparator: Hex): Hex;
|
|
557
|
+
export declare function viewingSessionDigest(s: ViewingSession, domainSeparator: Hex): Hex;
|
|
558
|
+
export declare function balanceQueryDigest(s: BalanceQuery, domainSeparator: Hex): Hex;
|
|
559
|
+
export declare function portfolioQueryDigest(s: PortfolioQuery, domainSeparator: Hex): Hex;
|
|
560
|
+
export declare function historyCursorDigest(s: HistoryCursor, domainSeparator: Hex): Hex;
|
|
561
|
+
export declare function requestPaginationDigest(s: RequestPagination, domainSeparator: Hex): Hex;
|
|
562
|
+
export declare function balanceHistoryQueryDigest(s: BalanceHistoryQuery, domainSeparator: Hex): Hex;
|
|
563
|
+
export declare function portfolioHistoryQueryDigest(s: PortfolioHistoryQuery, domainSeparator: Hex): Hex;
|
|
564
|
+
export declare function historyEntryDigest(s: HistoryEntry, domainSeparator: Hex): Hex;
|
|
565
|
+
export declare function responsePaginationDigest(s: ResponsePagination, domainSeparator: Hex): Hex;
|
|
566
|
+
export declare function balanceHistoryResponseDigest(s: BalanceHistoryResponse, domainSeparator: Hex): Hex;
|
|
567
|
+
export declare function portfolioHistoryResponseDigest(s: PortfolioHistoryResponse, domainSeparator: Hex): Hex;
|
|
568
|
+
export declare function balanceResponseDigest(s: BalanceResponse, domainSeparator: Hex): Hex;
|
|
569
|
+
export declare function assetBalanceDigest(s: AssetBalance, domainSeparator: Hex): Hex;
|
|
570
|
+
export declare function portfolioResponseDigest(s: PortfolioResponse, domainSeparator: Hex): Hex;
|
|
571
|
+
export declare const EIP712_TYPES: {
|
|
572
|
+
readonly Asset: readonly [{
|
|
573
|
+
readonly name: "standard";
|
|
574
|
+
readonly type: "uint8";
|
|
575
|
+
}, {
|
|
576
|
+
readonly name: "token";
|
|
577
|
+
readonly type: "address";
|
|
578
|
+
}, {
|
|
579
|
+
readonly name: "tokenId";
|
|
580
|
+
readonly type: "uint256";
|
|
581
|
+
}];
|
|
582
|
+
readonly AssetMovement: readonly [{
|
|
583
|
+
readonly name: "account";
|
|
584
|
+
readonly type: "address";
|
|
585
|
+
}, {
|
|
586
|
+
readonly name: "assetAdapter";
|
|
587
|
+
readonly type: "address";
|
|
588
|
+
}, {
|
|
589
|
+
readonly name: "movementArgs";
|
|
590
|
+
readonly type: "bytes";
|
|
591
|
+
}];
|
|
592
|
+
readonly Call: readonly [{
|
|
593
|
+
readonly name: "target";
|
|
594
|
+
readonly type: "address";
|
|
595
|
+
}, {
|
|
596
|
+
readonly name: "value";
|
|
597
|
+
readonly type: "uint256";
|
|
598
|
+
}, {
|
|
599
|
+
readonly name: "data";
|
|
600
|
+
readonly type: "bytes";
|
|
601
|
+
}];
|
|
602
|
+
readonly HandlePreimage: readonly [{
|
|
603
|
+
readonly name: "previousHandle";
|
|
604
|
+
readonly type: "bytes32";
|
|
605
|
+
}, {
|
|
606
|
+
readonly name: "previousBlockHash";
|
|
607
|
+
readonly type: "bytes32";
|
|
608
|
+
}, {
|
|
609
|
+
readonly name: "blockTimestamp";
|
|
610
|
+
readonly type: "uint256";
|
|
611
|
+
}, {
|
|
612
|
+
readonly name: "operationHash";
|
|
613
|
+
readonly type: "bytes32";
|
|
614
|
+
}];
|
|
615
|
+
readonly Block: readonly [{
|
|
616
|
+
readonly name: "blockNumber";
|
|
617
|
+
readonly type: "uint256";
|
|
618
|
+
}, {
|
|
619
|
+
readonly name: "blockHash";
|
|
620
|
+
readonly type: "bytes32";
|
|
621
|
+
}, {
|
|
622
|
+
readonly name: "parentBlockHash";
|
|
623
|
+
readonly type: "bytes32";
|
|
624
|
+
}, {
|
|
625
|
+
readonly name: "parentHandle";
|
|
626
|
+
readonly type: "bytes32";
|
|
627
|
+
}, {
|
|
628
|
+
readonly name: "handle";
|
|
629
|
+
readonly type: "bytes32";
|
|
630
|
+
}, {
|
|
631
|
+
readonly name: "blockTimestamp";
|
|
632
|
+
readonly type: "uint256";
|
|
633
|
+
}, {
|
|
634
|
+
readonly name: "eventsHash";
|
|
635
|
+
readonly type: "bytes32";
|
|
636
|
+
}];
|
|
637
|
+
readonly DepositAttestationPayload: readonly [{
|
|
638
|
+
readonly name: "ciphertext";
|
|
639
|
+
readonly type: "bytes";
|
|
640
|
+
}, {
|
|
641
|
+
readonly name: "assetId";
|
|
642
|
+
readonly type: "bytes32";
|
|
643
|
+
}, {
|
|
644
|
+
readonly name: "escapeCommitment";
|
|
645
|
+
readonly type: "bytes32";
|
|
646
|
+
}, {
|
|
647
|
+
readonly name: "receiverEscapeData";
|
|
648
|
+
readonly type: "bytes";
|
|
649
|
+
}];
|
|
650
|
+
readonly DepositAttestation: readonly [{
|
|
651
|
+
readonly name: "payload";
|
|
652
|
+
readonly type: "DepositAttestationPayload";
|
|
653
|
+
}, {
|
|
654
|
+
readonly name: "signature";
|
|
655
|
+
readonly type: "bytes";
|
|
656
|
+
}];
|
|
657
|
+
readonly Deposit: readonly [{
|
|
658
|
+
readonly name: "attestation";
|
|
659
|
+
readonly type: "DepositAttestation";
|
|
660
|
+
}, {
|
|
661
|
+
readonly name: "asset";
|
|
662
|
+
readonly type: "Asset";
|
|
663
|
+
}, {
|
|
664
|
+
readonly name: "assetMovement";
|
|
665
|
+
readonly type: "AssetMovement";
|
|
666
|
+
}];
|
|
667
|
+
readonly Permission: readonly [{
|
|
668
|
+
readonly name: "owner";
|
|
669
|
+
readonly type: "address";
|
|
670
|
+
}, {
|
|
671
|
+
readonly name: "spender";
|
|
672
|
+
readonly type: "address";
|
|
673
|
+
}, {
|
|
674
|
+
readonly name: "assetId";
|
|
675
|
+
readonly type: "bytes32";
|
|
676
|
+
}, {
|
|
677
|
+
readonly name: "allowance";
|
|
678
|
+
readonly type: "uint256";
|
|
679
|
+
}, {
|
|
680
|
+
readonly name: "to";
|
|
681
|
+
readonly type: "address[]";
|
|
682
|
+
}, {
|
|
683
|
+
readonly name: "start";
|
|
684
|
+
readonly type: "uint256";
|
|
685
|
+
}, {
|
|
686
|
+
readonly name: "end";
|
|
687
|
+
readonly type: "uint256";
|
|
688
|
+
}, {
|
|
689
|
+
readonly name: "period";
|
|
690
|
+
readonly type: "uint256";
|
|
691
|
+
}, {
|
|
692
|
+
readonly name: "agreementHash";
|
|
693
|
+
readonly type: "bytes32";
|
|
694
|
+
}, {
|
|
695
|
+
readonly name: "salt";
|
|
696
|
+
readonly type: "bytes32";
|
|
697
|
+
}];
|
|
698
|
+
readonly PermissionRequest: readonly [{
|
|
699
|
+
readonly name: "permission";
|
|
700
|
+
readonly type: "Permission";
|
|
701
|
+
}, {
|
|
702
|
+
readonly name: "requestExpiry";
|
|
703
|
+
readonly type: "uint64";
|
|
704
|
+
}];
|
|
705
|
+
readonly PermissionAttestationPayload: readonly [{
|
|
706
|
+
readonly name: "permissionId";
|
|
707
|
+
readonly type: "bytes32";
|
|
708
|
+
}, {
|
|
709
|
+
readonly name: "permission";
|
|
710
|
+
readonly type: "Permission";
|
|
711
|
+
}, {
|
|
712
|
+
readonly name: "draftingHandle";
|
|
713
|
+
readonly type: "bytes32";
|
|
714
|
+
}];
|
|
715
|
+
readonly PermissionAttestation: readonly [{
|
|
716
|
+
readonly name: "payload";
|
|
717
|
+
readonly type: "PermissionAttestationPayload";
|
|
718
|
+
}, {
|
|
719
|
+
readonly name: "signature";
|
|
720
|
+
readonly type: "bytes";
|
|
721
|
+
}];
|
|
722
|
+
readonly TransferIntentOp: readonly [{
|
|
723
|
+
readonly name: "receiver";
|
|
724
|
+
readonly type: "address";
|
|
725
|
+
}, {
|
|
726
|
+
readonly name: "assetId";
|
|
727
|
+
readonly type: "bytes32";
|
|
728
|
+
}, {
|
|
729
|
+
readonly name: "amount";
|
|
730
|
+
readonly type: "uint256";
|
|
731
|
+
}, {
|
|
732
|
+
readonly name: "memo";
|
|
733
|
+
readonly type: "bytes";
|
|
734
|
+
}];
|
|
735
|
+
readonly WithdrawalCoreIntentOp: readonly [{
|
|
736
|
+
readonly name: "asset";
|
|
737
|
+
readonly type: "Asset";
|
|
738
|
+
}, {
|
|
739
|
+
readonly name: "assetMovements";
|
|
740
|
+
readonly type: "AssetMovement[]";
|
|
741
|
+
}];
|
|
742
|
+
readonly WithdrawalIntentOp: readonly [{
|
|
743
|
+
readonly name: "core";
|
|
744
|
+
readonly type: "WithdrawalCoreIntentOp";
|
|
745
|
+
}, {
|
|
746
|
+
readonly name: "memo";
|
|
747
|
+
readonly type: "bytes";
|
|
748
|
+
}];
|
|
749
|
+
readonly DefiInteractionIntentOp: readonly [{
|
|
750
|
+
readonly name: "withdrawal";
|
|
751
|
+
readonly type: "WithdrawalCoreIntentOp";
|
|
752
|
+
}, {
|
|
753
|
+
readonly name: "defiAdapter";
|
|
754
|
+
readonly type: "address";
|
|
755
|
+
}, {
|
|
756
|
+
readonly name: "adapterArgs";
|
|
757
|
+
readonly type: "bytes";
|
|
758
|
+
}, {
|
|
759
|
+
readonly name: "memo";
|
|
760
|
+
readonly type: "bytes";
|
|
761
|
+
}];
|
|
762
|
+
readonly IndividualRevocationIntentOp: readonly [{
|
|
763
|
+
readonly name: "permissionId";
|
|
764
|
+
readonly type: "bytes32";
|
|
765
|
+
}];
|
|
766
|
+
readonly UserWideRevocationIntentOp: readonly [{
|
|
767
|
+
readonly name: "empty";
|
|
768
|
+
readonly type: "bytes";
|
|
769
|
+
}];
|
|
770
|
+
readonly Gas: readonly [{
|
|
771
|
+
readonly name: "asset";
|
|
772
|
+
readonly type: "Asset";
|
|
773
|
+
}, {
|
|
774
|
+
readonly name: "maxAmount";
|
|
775
|
+
readonly type: "uint256";
|
|
776
|
+
}, {
|
|
777
|
+
readonly name: "assetMovement";
|
|
778
|
+
readonly type: "AssetMovement";
|
|
779
|
+
}, {
|
|
780
|
+
readonly name: "callGasLimit";
|
|
781
|
+
readonly type: "uint256";
|
|
782
|
+
}, {
|
|
783
|
+
readonly name: "verificationGasLimit";
|
|
784
|
+
readonly type: "uint256";
|
|
785
|
+
}, {
|
|
786
|
+
readonly name: "preVerificationGas";
|
|
787
|
+
readonly type: "uint256";
|
|
788
|
+
}, {
|
|
789
|
+
readonly name: "paymasterVerificationGasLimit";
|
|
790
|
+
readonly type: "uint256";
|
|
791
|
+
}, {
|
|
792
|
+
readonly name: "paymasterPostOpGasLimit";
|
|
793
|
+
readonly type: "uint256";
|
|
794
|
+
}, {
|
|
795
|
+
readonly name: "maxFeePerGas";
|
|
796
|
+
readonly type: "uint256";
|
|
797
|
+
}, {
|
|
798
|
+
readonly name: "maxPriorityFeePerGas";
|
|
799
|
+
readonly type: "uint256";
|
|
800
|
+
}];
|
|
801
|
+
readonly TransferIntent: readonly [{
|
|
802
|
+
readonly name: "op";
|
|
803
|
+
readonly type: "TransferIntentOp";
|
|
804
|
+
}, {
|
|
805
|
+
readonly name: "signer";
|
|
806
|
+
readonly type: "address";
|
|
807
|
+
}, {
|
|
808
|
+
readonly name: "gas";
|
|
809
|
+
readonly type: "Gas";
|
|
810
|
+
}, {
|
|
811
|
+
readonly name: "salt";
|
|
812
|
+
readonly type: "bytes32";
|
|
813
|
+
}];
|
|
814
|
+
readonly WithdrawalIntent: readonly [{
|
|
815
|
+
readonly name: "op";
|
|
816
|
+
readonly type: "WithdrawalIntentOp";
|
|
817
|
+
}, {
|
|
818
|
+
readonly name: "signer";
|
|
819
|
+
readonly type: "address";
|
|
820
|
+
}, {
|
|
821
|
+
readonly name: "gas";
|
|
822
|
+
readonly type: "Gas";
|
|
823
|
+
}, {
|
|
824
|
+
readonly name: "salt";
|
|
825
|
+
readonly type: "bytes32";
|
|
826
|
+
}];
|
|
827
|
+
readonly DefiInteractionIntent: readonly [{
|
|
828
|
+
readonly name: "op";
|
|
829
|
+
readonly type: "DefiInteractionIntentOp";
|
|
830
|
+
}, {
|
|
831
|
+
readonly name: "signer";
|
|
832
|
+
readonly type: "address";
|
|
833
|
+
}, {
|
|
834
|
+
readonly name: "gas";
|
|
835
|
+
readonly type: "Gas";
|
|
836
|
+
}, {
|
|
837
|
+
readonly name: "salt";
|
|
838
|
+
readonly type: "bytes32";
|
|
839
|
+
}];
|
|
840
|
+
readonly IndividualRevocationIntent: readonly [{
|
|
841
|
+
readonly name: "op";
|
|
842
|
+
readonly type: "IndividualRevocationIntentOp";
|
|
843
|
+
}, {
|
|
844
|
+
readonly name: "signer";
|
|
845
|
+
readonly type: "address";
|
|
846
|
+
}, {
|
|
847
|
+
readonly name: "gas";
|
|
848
|
+
readonly type: "Gas";
|
|
849
|
+
}, {
|
|
850
|
+
readonly name: "salt";
|
|
851
|
+
readonly type: "bytes32";
|
|
852
|
+
}];
|
|
853
|
+
readonly UserWideRevocationIntent: readonly [{
|
|
854
|
+
readonly name: "op";
|
|
855
|
+
readonly type: "UserWideRevocationIntentOp";
|
|
856
|
+
}, {
|
|
857
|
+
readonly name: "signer";
|
|
858
|
+
readonly type: "address";
|
|
859
|
+
}, {
|
|
860
|
+
readonly name: "gas";
|
|
861
|
+
readonly type: "Gas";
|
|
862
|
+
}, {
|
|
863
|
+
readonly name: "salt";
|
|
864
|
+
readonly type: "bytes32";
|
|
865
|
+
}];
|
|
866
|
+
readonly DelegatedTransferIntent: readonly [{
|
|
867
|
+
readonly name: "intent";
|
|
868
|
+
readonly type: "TransferIntent";
|
|
869
|
+
}, {
|
|
870
|
+
readonly name: "spender";
|
|
871
|
+
readonly type: "address";
|
|
872
|
+
}, {
|
|
873
|
+
readonly name: "permissionId";
|
|
874
|
+
readonly type: "bytes32";
|
|
875
|
+
}];
|
|
876
|
+
readonly DelegatedWithdrawalIntent: readonly [{
|
|
877
|
+
readonly name: "intent";
|
|
878
|
+
readonly type: "WithdrawalIntent";
|
|
879
|
+
}, {
|
|
880
|
+
readonly name: "spender";
|
|
881
|
+
readonly type: "address";
|
|
882
|
+
}, {
|
|
883
|
+
readonly name: "permissionId";
|
|
884
|
+
readonly type: "bytes32";
|
|
885
|
+
}];
|
|
886
|
+
readonly DelegatedDefiInteractionIntent: readonly [{
|
|
887
|
+
readonly name: "intent";
|
|
888
|
+
readonly type: "DefiInteractionIntent";
|
|
889
|
+
}, {
|
|
890
|
+
readonly name: "spender";
|
|
891
|
+
readonly type: "address";
|
|
892
|
+
}, {
|
|
893
|
+
readonly name: "permissionId";
|
|
894
|
+
readonly type: "bytes32";
|
|
895
|
+
}];
|
|
896
|
+
readonly Transfer: readonly [{
|
|
897
|
+
readonly name: "draftingHandle";
|
|
898
|
+
readonly type: "bytes32";
|
|
899
|
+
}, {
|
|
900
|
+
readonly name: "draftingTimestamp";
|
|
901
|
+
readonly type: "uint64";
|
|
902
|
+
}, {
|
|
903
|
+
readonly name: "nullifier";
|
|
904
|
+
readonly type: "bytes32";
|
|
905
|
+
}, {
|
|
906
|
+
readonly name: "senderEscapeCommitment";
|
|
907
|
+
readonly type: "bytes32";
|
|
908
|
+
}, {
|
|
909
|
+
readonly name: "receiverEscapeCommitment";
|
|
910
|
+
readonly type: "bytes32";
|
|
911
|
+
}, {
|
|
912
|
+
readonly name: "senderEscapeData";
|
|
913
|
+
readonly type: "bytes";
|
|
914
|
+
}, {
|
|
915
|
+
readonly name: "receiverEscapeData";
|
|
916
|
+
readonly type: "bytes";
|
|
917
|
+
}, {
|
|
918
|
+
readonly name: "ciphertext";
|
|
919
|
+
readonly type: "bytes";
|
|
920
|
+
}, {
|
|
921
|
+
readonly name: "memo";
|
|
922
|
+
readonly type: "bytes";
|
|
923
|
+
}];
|
|
924
|
+
readonly WithdrawalCore: readonly [{
|
|
925
|
+
readonly name: "asset";
|
|
926
|
+
readonly type: "Asset";
|
|
927
|
+
}, {
|
|
928
|
+
readonly name: "assetMovements";
|
|
929
|
+
readonly type: "AssetMovement[]";
|
|
930
|
+
}, {
|
|
931
|
+
readonly name: "nullifier";
|
|
932
|
+
readonly type: "bytes32";
|
|
933
|
+
}, {
|
|
934
|
+
readonly name: "draftingHandle";
|
|
935
|
+
readonly type: "bytes32";
|
|
936
|
+
}, {
|
|
937
|
+
readonly name: "draftingTimestamp";
|
|
938
|
+
readonly type: "uint64";
|
|
939
|
+
}, {
|
|
940
|
+
readonly name: "ciphertext";
|
|
941
|
+
readonly type: "bytes";
|
|
942
|
+
}, {
|
|
943
|
+
readonly name: "senderEscapeCommitment";
|
|
944
|
+
readonly type: "bytes32";
|
|
945
|
+
}, {
|
|
946
|
+
readonly name: "senderEscapeData";
|
|
947
|
+
readonly type: "bytes";
|
|
948
|
+
}];
|
|
949
|
+
readonly Withdrawal: readonly [{
|
|
950
|
+
readonly name: "core";
|
|
951
|
+
readonly type: "WithdrawalCore";
|
|
952
|
+
}, {
|
|
953
|
+
readonly name: "memo";
|
|
954
|
+
readonly type: "bytes";
|
|
955
|
+
}];
|
|
956
|
+
readonly DefiInteraction: readonly [{
|
|
957
|
+
readonly name: "withdrawal";
|
|
958
|
+
readonly type: "WithdrawalCore";
|
|
959
|
+
}, {
|
|
960
|
+
readonly name: "defiAdapter";
|
|
961
|
+
readonly type: "address";
|
|
962
|
+
}, {
|
|
963
|
+
readonly name: "adapterArgs";
|
|
964
|
+
readonly type: "bytes";
|
|
965
|
+
}, {
|
|
966
|
+
readonly name: "memo";
|
|
967
|
+
readonly type: "bytes";
|
|
968
|
+
}];
|
|
969
|
+
readonly IndividualRevocation: readonly [{
|
|
970
|
+
readonly name: "ciphertext";
|
|
971
|
+
readonly type: "bytes";
|
|
972
|
+
}, {
|
|
973
|
+
readonly name: "draftingHandle";
|
|
974
|
+
readonly type: "bytes32";
|
|
975
|
+
}, {
|
|
976
|
+
readonly name: "draftingTimestamp";
|
|
977
|
+
readonly type: "uint64";
|
|
978
|
+
}];
|
|
979
|
+
readonly UserWideRevocation: readonly [{
|
|
980
|
+
readonly name: "ciphertext";
|
|
981
|
+
readonly type: "bytes";
|
|
982
|
+
}, {
|
|
983
|
+
readonly name: "draftingHandle";
|
|
984
|
+
readonly type: "bytes32";
|
|
985
|
+
}, {
|
|
986
|
+
readonly name: "draftingTimestamp";
|
|
987
|
+
readonly type: "uint64";
|
|
988
|
+
}];
|
|
989
|
+
readonly TransferPlaintext: readonly [{
|
|
990
|
+
readonly name: "sender";
|
|
991
|
+
readonly type: "address";
|
|
992
|
+
}, {
|
|
993
|
+
readonly name: "receiver";
|
|
994
|
+
readonly type: "address";
|
|
995
|
+
}, {
|
|
996
|
+
readonly name: "amount";
|
|
997
|
+
readonly type: "uint256";
|
|
998
|
+
}, {
|
|
999
|
+
readonly name: "assetId";
|
|
1000
|
+
readonly type: "bytes32";
|
|
1001
|
+
}];
|
|
1002
|
+
readonly WithdrawalPlaintext: readonly [{
|
|
1003
|
+
readonly name: "sender";
|
|
1004
|
+
readonly type: "address";
|
|
1005
|
+
}];
|
|
1006
|
+
readonly DepositPlaintext: readonly [{
|
|
1007
|
+
readonly name: "receiver";
|
|
1008
|
+
readonly type: "address";
|
|
1009
|
+
}];
|
|
1010
|
+
readonly IndividualRevocationPlaintext: readonly [{
|
|
1011
|
+
readonly name: "owner";
|
|
1012
|
+
readonly type: "address";
|
|
1013
|
+
}, {
|
|
1014
|
+
readonly name: "permissionId";
|
|
1015
|
+
readonly type: "bytes32";
|
|
1016
|
+
}];
|
|
1017
|
+
readonly UserWideRevocationPlaintext: readonly [{
|
|
1018
|
+
readonly name: "owner";
|
|
1019
|
+
readonly type: "address";
|
|
1020
|
+
}];
|
|
1021
|
+
readonly SenderEscapePlaintext: readonly [{
|
|
1022
|
+
readonly name: "sender";
|
|
1023
|
+
readonly type: "address";
|
|
1024
|
+
}, {
|
|
1025
|
+
readonly name: "assetId";
|
|
1026
|
+
readonly type: "bytes32";
|
|
1027
|
+
}, {
|
|
1028
|
+
readonly name: "draftingHandle";
|
|
1029
|
+
readonly type: "bytes32";
|
|
1030
|
+
}, {
|
|
1031
|
+
readonly name: "spendAmount";
|
|
1032
|
+
readonly type: "uint256";
|
|
1033
|
+
}, {
|
|
1034
|
+
readonly name: "balanceSnapshot";
|
|
1035
|
+
readonly type: "uint256";
|
|
1036
|
+
}, {
|
|
1037
|
+
readonly name: "chequeNumber";
|
|
1038
|
+
readonly type: "uint64";
|
|
1039
|
+
}, {
|
|
1040
|
+
readonly name: "oldestPossiblyOutstanding";
|
|
1041
|
+
readonly type: "uint64";
|
|
1042
|
+
}];
|
|
1043
|
+
readonly ReceiverEscapePlaintext: readonly [{
|
|
1044
|
+
readonly name: "receiver";
|
|
1045
|
+
readonly type: "address";
|
|
1046
|
+
}, {
|
|
1047
|
+
readonly name: "assetId";
|
|
1048
|
+
readonly type: "bytes32";
|
|
1049
|
+
}, {
|
|
1050
|
+
readonly name: "draftingHandle";
|
|
1051
|
+
readonly type: "bytes32";
|
|
1052
|
+
}, {
|
|
1053
|
+
readonly name: "receiveAmount";
|
|
1054
|
+
readonly type: "uint256";
|
|
1055
|
+
}, {
|
|
1056
|
+
readonly name: "balanceSnapshot";
|
|
1057
|
+
readonly type: "uint256";
|
|
1058
|
+
}, {
|
|
1059
|
+
readonly name: "chequeNullifier";
|
|
1060
|
+
readonly type: "bytes32";
|
|
1061
|
+
}, {
|
|
1062
|
+
readonly name: "senderChequeNumber";
|
|
1063
|
+
readonly type: "uint64";
|
|
1064
|
+
}, {
|
|
1065
|
+
readonly name: "oldestPossiblyOutstandingSend";
|
|
1066
|
+
readonly type: "uint64";
|
|
1067
|
+
}];
|
|
1068
|
+
readonly GetPermissionsByOwner: readonly [{
|
|
1069
|
+
readonly name: "requester";
|
|
1070
|
+
readonly type: "address";
|
|
1071
|
+
}, {
|
|
1072
|
+
readonly name: "includeExpired";
|
|
1073
|
+
readonly type: "bool";
|
|
1074
|
+
}];
|
|
1075
|
+
readonly GetPermissionsBySpender: readonly [{
|
|
1076
|
+
readonly name: "requester";
|
|
1077
|
+
readonly type: "address";
|
|
1078
|
+
}, {
|
|
1079
|
+
readonly name: "includeExpired";
|
|
1080
|
+
readonly type: "bool";
|
|
1081
|
+
}];
|
|
1082
|
+
readonly GetPermissionDetails: readonly [{
|
|
1083
|
+
readonly name: "requester";
|
|
1084
|
+
readonly type: "address";
|
|
1085
|
+
}, {
|
|
1086
|
+
readonly name: "permissionId";
|
|
1087
|
+
readonly type: "bytes32";
|
|
1088
|
+
}];
|
|
1089
|
+
readonly GetSpendable: readonly [{
|
|
1090
|
+
readonly name: "requester";
|
|
1091
|
+
readonly type: "address";
|
|
1092
|
+
}, {
|
|
1093
|
+
readonly name: "permissionId";
|
|
1094
|
+
readonly type: "bytes32";
|
|
1095
|
+
}];
|
|
1096
|
+
readonly GetOwnerGeneration: readonly [{
|
|
1097
|
+
readonly name: "requester";
|
|
1098
|
+
readonly type: "address";
|
|
1099
|
+
}];
|
|
1100
|
+
readonly SpendableResponse: readonly [{
|
|
1101
|
+
readonly name: "requester";
|
|
1102
|
+
readonly type: "address";
|
|
1103
|
+
}, {
|
|
1104
|
+
readonly name: "permissionId";
|
|
1105
|
+
readonly type: "bytes32";
|
|
1106
|
+
}, {
|
|
1107
|
+
readonly name: "spendable";
|
|
1108
|
+
readonly type: "uint256";
|
|
1109
|
+
}, {
|
|
1110
|
+
readonly name: "found";
|
|
1111
|
+
readonly type: "bool";
|
|
1112
|
+
}, {
|
|
1113
|
+
readonly name: "draftingHandle";
|
|
1114
|
+
readonly type: "bytes32";
|
|
1115
|
+
}, {
|
|
1116
|
+
readonly name: "draftingTimestamp";
|
|
1117
|
+
readonly type: "uint64";
|
|
1118
|
+
}];
|
|
1119
|
+
readonly OwnerGenerationResponse: readonly [{
|
|
1120
|
+
readonly name: "requester";
|
|
1121
|
+
readonly type: "address";
|
|
1122
|
+
}, {
|
|
1123
|
+
readonly name: "generation";
|
|
1124
|
+
readonly type: "uint64";
|
|
1125
|
+
}, {
|
|
1126
|
+
readonly name: "draftingHandle";
|
|
1127
|
+
readonly type: "bytes32";
|
|
1128
|
+
}, {
|
|
1129
|
+
readonly name: "draftingTimestamp";
|
|
1130
|
+
readonly type: "uint64";
|
|
1131
|
+
}];
|
|
1132
|
+
readonly PermissionInfo: readonly [{
|
|
1133
|
+
readonly name: "permissionId";
|
|
1134
|
+
readonly type: "bytes32";
|
|
1135
|
+
}, {
|
|
1136
|
+
readonly name: "terms";
|
|
1137
|
+
readonly type: "Permission";
|
|
1138
|
+
}, {
|
|
1139
|
+
readonly name: "spentInCurrentPeriod";
|
|
1140
|
+
readonly type: "uint256";
|
|
1141
|
+
}, {
|
|
1142
|
+
readonly name: "availableAllowance";
|
|
1143
|
+
readonly type: "uint256";
|
|
1144
|
+
}, {
|
|
1145
|
+
readonly name: "status";
|
|
1146
|
+
readonly type: "uint8";
|
|
1147
|
+
}, {
|
|
1148
|
+
readonly name: "currentPeriodStart";
|
|
1149
|
+
readonly type: "uint64";
|
|
1150
|
+
}];
|
|
1151
|
+
readonly PermissionDetailsResponse: readonly [{
|
|
1152
|
+
readonly name: "requester";
|
|
1153
|
+
readonly type: "address";
|
|
1154
|
+
}, {
|
|
1155
|
+
readonly name: "draftingHandle";
|
|
1156
|
+
readonly type: "bytes32";
|
|
1157
|
+
}, {
|
|
1158
|
+
readonly name: "draftingTimestamp";
|
|
1159
|
+
readonly type: "uint64";
|
|
1160
|
+
}, {
|
|
1161
|
+
readonly name: "found";
|
|
1162
|
+
readonly type: "bool";
|
|
1163
|
+
}, {
|
|
1164
|
+
readonly name: "permission";
|
|
1165
|
+
readonly type: "PermissionInfo";
|
|
1166
|
+
}];
|
|
1167
|
+
readonly PermissionListResponse: readonly [{
|
|
1168
|
+
readonly name: "requester";
|
|
1169
|
+
readonly type: "address";
|
|
1170
|
+
}, {
|
|
1171
|
+
readonly name: "byOwner";
|
|
1172
|
+
readonly type: "bool";
|
|
1173
|
+
}, {
|
|
1174
|
+
readonly name: "includeExpired";
|
|
1175
|
+
readonly type: "bool";
|
|
1176
|
+
}, {
|
|
1177
|
+
readonly name: "draftingHandle";
|
|
1178
|
+
readonly type: "bytes32";
|
|
1179
|
+
}, {
|
|
1180
|
+
readonly name: "draftingTimestamp";
|
|
1181
|
+
readonly type: "uint64";
|
|
1182
|
+
}, {
|
|
1183
|
+
readonly name: "permissions";
|
|
1184
|
+
readonly type: "PermissionInfo[]";
|
|
1185
|
+
}];
|
|
1186
|
+
readonly ViewingSession: readonly [{
|
|
1187
|
+
readonly name: "owner";
|
|
1188
|
+
readonly type: "address";
|
|
1189
|
+
}, {
|
|
1190
|
+
readonly name: "issuedAt";
|
|
1191
|
+
readonly type: "uint64";
|
|
1192
|
+
}, {
|
|
1193
|
+
readonly name: "expiresAt";
|
|
1194
|
+
readonly type: "uint64";
|
|
1195
|
+
}, {
|
|
1196
|
+
readonly name: "periodStart";
|
|
1197
|
+
readonly type: "uint64";
|
|
1198
|
+
}, {
|
|
1199
|
+
readonly name: "periodEnd";
|
|
1200
|
+
readonly type: "uint64";
|
|
1201
|
+
}, {
|
|
1202
|
+
readonly name: "responseKey";
|
|
1203
|
+
readonly type: "bytes";
|
|
1204
|
+
}, {
|
|
1205
|
+
readonly name: "salt";
|
|
1206
|
+
readonly type: "bytes32";
|
|
1207
|
+
}];
|
|
1208
|
+
readonly BalanceQuery: readonly [{
|
|
1209
|
+
readonly name: "session";
|
|
1210
|
+
readonly type: "ViewingSession";
|
|
1211
|
+
}, {
|
|
1212
|
+
readonly name: "assetId";
|
|
1213
|
+
readonly type: "bytes32";
|
|
1214
|
+
}];
|
|
1215
|
+
readonly PortfolioQuery: readonly [{
|
|
1216
|
+
readonly name: "session";
|
|
1217
|
+
readonly type: "ViewingSession";
|
|
1218
|
+
}];
|
|
1219
|
+
readonly HistoryCursor: readonly [{
|
|
1220
|
+
readonly name: "anchorHandle";
|
|
1221
|
+
readonly type: "bytes32";
|
|
1222
|
+
}, {
|
|
1223
|
+
readonly name: "afterTimestamp";
|
|
1224
|
+
readonly type: "uint64";
|
|
1225
|
+
}, {
|
|
1226
|
+
readonly name: "afterOpIndex";
|
|
1227
|
+
readonly type: "uint64";
|
|
1228
|
+
}];
|
|
1229
|
+
readonly RequestPagination: readonly [{
|
|
1230
|
+
readonly name: "cursor";
|
|
1231
|
+
readonly type: "HistoryCursor";
|
|
1232
|
+
}, {
|
|
1233
|
+
readonly name: "limit";
|
|
1234
|
+
readonly type: "uint32";
|
|
1235
|
+
}];
|
|
1236
|
+
readonly BalanceHistoryQuery: readonly [{
|
|
1237
|
+
readonly name: "session";
|
|
1238
|
+
readonly type: "ViewingSession";
|
|
1239
|
+
}, {
|
|
1240
|
+
readonly name: "assetId";
|
|
1241
|
+
readonly type: "bytes32";
|
|
1242
|
+
}, {
|
|
1243
|
+
readonly name: "pagination";
|
|
1244
|
+
readonly type: "RequestPagination";
|
|
1245
|
+
}];
|
|
1246
|
+
readonly PortfolioHistoryQuery: readonly [{
|
|
1247
|
+
readonly name: "session";
|
|
1248
|
+
readonly type: "ViewingSession";
|
|
1249
|
+
}, {
|
|
1250
|
+
readonly name: "pagination";
|
|
1251
|
+
readonly type: "RequestPagination";
|
|
1252
|
+
}];
|
|
1253
|
+
readonly HistoryEntry: readonly [{
|
|
1254
|
+
readonly name: "opIndex";
|
|
1255
|
+
readonly type: "uint64";
|
|
1256
|
+
}, {
|
|
1257
|
+
readonly name: "kind";
|
|
1258
|
+
readonly type: "uint8";
|
|
1259
|
+
}, {
|
|
1260
|
+
readonly name: "sender";
|
|
1261
|
+
readonly type: "address";
|
|
1262
|
+
}, {
|
|
1263
|
+
readonly name: "receiver";
|
|
1264
|
+
readonly type: "address";
|
|
1265
|
+
}, {
|
|
1266
|
+
readonly name: "assetId";
|
|
1267
|
+
readonly type: "bytes32";
|
|
1268
|
+
}, {
|
|
1269
|
+
readonly name: "amount";
|
|
1270
|
+
readonly type: "uint256";
|
|
1271
|
+
}, {
|
|
1272
|
+
readonly name: "balanceAfter";
|
|
1273
|
+
readonly type: "uint256";
|
|
1274
|
+
}, {
|
|
1275
|
+
readonly name: "nullifier";
|
|
1276
|
+
readonly type: "bytes32";
|
|
1277
|
+
}, {
|
|
1278
|
+
readonly name: "memo";
|
|
1279
|
+
readonly type: "bytes";
|
|
1280
|
+
}, {
|
|
1281
|
+
readonly name: "handle";
|
|
1282
|
+
readonly type: "bytes32";
|
|
1283
|
+
}, {
|
|
1284
|
+
readonly name: "blockTimestamp";
|
|
1285
|
+
readonly type: "uint64";
|
|
1286
|
+
}, {
|
|
1287
|
+
readonly name: "blockNumber";
|
|
1288
|
+
readonly type: "uint64";
|
|
1289
|
+
}, {
|
|
1290
|
+
readonly name: "blockHash";
|
|
1291
|
+
readonly type: "bytes32";
|
|
1292
|
+
}, {
|
|
1293
|
+
readonly name: "txHash";
|
|
1294
|
+
readonly type: "bytes32";
|
|
1295
|
+
}];
|
|
1296
|
+
readonly ResponsePagination: readonly [{
|
|
1297
|
+
readonly name: "anchorHandle";
|
|
1298
|
+
readonly type: "bytes32";
|
|
1299
|
+
}, {
|
|
1300
|
+
readonly name: "anchorBlockHash";
|
|
1301
|
+
readonly type: "bytes32";
|
|
1302
|
+
}, {
|
|
1303
|
+
readonly name: "anchorTimestamp";
|
|
1304
|
+
readonly type: "uint64";
|
|
1305
|
+
}, {
|
|
1306
|
+
readonly name: "nextTimestamp";
|
|
1307
|
+
readonly type: "uint64";
|
|
1308
|
+
}, {
|
|
1309
|
+
readonly name: "nextOpIndex";
|
|
1310
|
+
readonly type: "uint64";
|
|
1311
|
+
}, {
|
|
1312
|
+
readonly name: "hasMore";
|
|
1313
|
+
readonly type: "bool";
|
|
1314
|
+
}];
|
|
1315
|
+
readonly BalanceHistoryResponse: readonly [{
|
|
1316
|
+
readonly name: "owner";
|
|
1317
|
+
readonly type: "address";
|
|
1318
|
+
}, {
|
|
1319
|
+
readonly name: "assetId";
|
|
1320
|
+
readonly type: "bytes32";
|
|
1321
|
+
}, {
|
|
1322
|
+
readonly name: "pagination";
|
|
1323
|
+
readonly type: "ResponsePagination";
|
|
1324
|
+
}, {
|
|
1325
|
+
readonly name: "entries";
|
|
1326
|
+
readonly type: "HistoryEntry[]";
|
|
1327
|
+
}];
|
|
1328
|
+
readonly PortfolioHistoryResponse: readonly [{
|
|
1329
|
+
readonly name: "owner";
|
|
1330
|
+
readonly type: "address";
|
|
1331
|
+
}, {
|
|
1332
|
+
readonly name: "pagination";
|
|
1333
|
+
readonly type: "ResponsePagination";
|
|
1334
|
+
}, {
|
|
1335
|
+
readonly name: "entries";
|
|
1336
|
+
readonly type: "HistoryEntry[]";
|
|
1337
|
+
}];
|
|
1338
|
+
readonly BalanceResponse: readonly [{
|
|
1339
|
+
readonly name: "owner";
|
|
1340
|
+
readonly type: "address";
|
|
1341
|
+
}, {
|
|
1342
|
+
readonly name: "assetId";
|
|
1343
|
+
readonly type: "bytes32";
|
|
1344
|
+
}, {
|
|
1345
|
+
readonly name: "bankBalance";
|
|
1346
|
+
readonly type: "uint256";
|
|
1347
|
+
}, {
|
|
1348
|
+
readonly name: "outstandingBalance";
|
|
1349
|
+
readonly type: "uint256";
|
|
1350
|
+
}, {
|
|
1351
|
+
readonly name: "bookBalance";
|
|
1352
|
+
readonly type: "uint256";
|
|
1353
|
+
}, {
|
|
1354
|
+
readonly name: "anchorHandle";
|
|
1355
|
+
readonly type: "bytes32";
|
|
1356
|
+
}, {
|
|
1357
|
+
readonly name: "anchorBlockHash";
|
|
1358
|
+
readonly type: "bytes32";
|
|
1359
|
+
}];
|
|
1360
|
+
readonly AssetBalance: readonly [{
|
|
1361
|
+
readonly name: "assetId";
|
|
1362
|
+
readonly type: "bytes32";
|
|
1363
|
+
}, {
|
|
1364
|
+
readonly name: "bankBalance";
|
|
1365
|
+
readonly type: "uint256";
|
|
1366
|
+
}];
|
|
1367
|
+
readonly PortfolioResponse: readonly [{
|
|
1368
|
+
readonly name: "owner";
|
|
1369
|
+
readonly type: "address";
|
|
1370
|
+
}, {
|
|
1371
|
+
readonly name: "anchorHandle";
|
|
1372
|
+
readonly type: "bytes32";
|
|
1373
|
+
}, {
|
|
1374
|
+
readonly name: "anchorBlockHash";
|
|
1375
|
+
readonly type: "bytes32";
|
|
1376
|
+
}, {
|
|
1377
|
+
readonly name: "anchorTimestamp";
|
|
1378
|
+
readonly type: "uint64";
|
|
1379
|
+
}, {
|
|
1380
|
+
readonly name: "balances";
|
|
1381
|
+
readonly type: "AssetBalance[]";
|
|
1382
|
+
}];
|
|
1383
|
+
};
|
|
1384
|
+
export interface EIP712StructTypes {
|
|
1385
|
+
readonly Asset: Asset;
|
|
1386
|
+
readonly AssetMovement: AssetMovement;
|
|
1387
|
+
readonly Call: Call;
|
|
1388
|
+
readonly HandlePreimage: HandlePreimage;
|
|
1389
|
+
readonly Block: Block;
|
|
1390
|
+
readonly DepositAttestationPayload: DepositAttestationPayload;
|
|
1391
|
+
readonly DepositAttestation: DepositAttestation;
|
|
1392
|
+
readonly Deposit: Deposit;
|
|
1393
|
+
readonly Permission: Permission;
|
|
1394
|
+
readonly PermissionRequest: PermissionRequest;
|
|
1395
|
+
readonly PermissionAttestationPayload: PermissionAttestationPayload;
|
|
1396
|
+
readonly PermissionAttestation: PermissionAttestation;
|
|
1397
|
+
readonly TransferIntentOp: TransferIntentOp;
|
|
1398
|
+
readonly WithdrawalCoreIntentOp: WithdrawalCoreIntentOp;
|
|
1399
|
+
readonly WithdrawalIntentOp: WithdrawalIntentOp;
|
|
1400
|
+
readonly DefiInteractionIntentOp: DefiInteractionIntentOp;
|
|
1401
|
+
readonly IndividualRevocationIntentOp: IndividualRevocationIntentOp;
|
|
1402
|
+
readonly UserWideRevocationIntentOp: UserWideRevocationIntentOp;
|
|
1403
|
+
readonly Gas: Gas;
|
|
1404
|
+
readonly TransferIntent: TransferIntent;
|
|
1405
|
+
readonly WithdrawalIntent: WithdrawalIntent;
|
|
1406
|
+
readonly DefiInteractionIntent: DefiInteractionIntent;
|
|
1407
|
+
readonly IndividualRevocationIntent: IndividualRevocationIntent;
|
|
1408
|
+
readonly UserWideRevocationIntent: UserWideRevocationIntent;
|
|
1409
|
+
readonly DelegatedTransferIntent: DelegatedTransferIntent;
|
|
1410
|
+
readonly DelegatedWithdrawalIntent: DelegatedWithdrawalIntent;
|
|
1411
|
+
readonly DelegatedDefiInteractionIntent: DelegatedDefiInteractionIntent;
|
|
1412
|
+
readonly Transfer: Transfer;
|
|
1413
|
+
readonly WithdrawalCore: WithdrawalCore;
|
|
1414
|
+
readonly Withdrawal: Withdrawal;
|
|
1415
|
+
readonly DefiInteraction: DefiInteraction;
|
|
1416
|
+
readonly IndividualRevocation: IndividualRevocation;
|
|
1417
|
+
readonly UserWideRevocation: UserWideRevocation;
|
|
1418
|
+
readonly TransferPlaintext: TransferPlaintext;
|
|
1419
|
+
readonly WithdrawalPlaintext: WithdrawalPlaintext;
|
|
1420
|
+
readonly DepositPlaintext: DepositPlaintext;
|
|
1421
|
+
readonly IndividualRevocationPlaintext: IndividualRevocationPlaintext;
|
|
1422
|
+
readonly UserWideRevocationPlaintext: UserWideRevocationPlaintext;
|
|
1423
|
+
readonly SenderEscapePlaintext: SenderEscapePlaintext;
|
|
1424
|
+
readonly ReceiverEscapePlaintext: ReceiverEscapePlaintext;
|
|
1425
|
+
readonly GetPermissionsByOwner: GetPermissionsByOwner;
|
|
1426
|
+
readonly GetPermissionsBySpender: GetPermissionsBySpender;
|
|
1427
|
+
readonly GetPermissionDetails: GetPermissionDetails;
|
|
1428
|
+
readonly GetSpendable: GetSpendable;
|
|
1429
|
+
readonly GetOwnerGeneration: GetOwnerGeneration;
|
|
1430
|
+
readonly SpendableResponse: SpendableResponse;
|
|
1431
|
+
readonly OwnerGenerationResponse: OwnerGenerationResponse;
|
|
1432
|
+
readonly PermissionInfo: PermissionInfo;
|
|
1433
|
+
readonly PermissionDetailsResponse: PermissionDetailsResponse;
|
|
1434
|
+
readonly PermissionListResponse: PermissionListResponse;
|
|
1435
|
+
readonly ViewingSession: ViewingSession;
|
|
1436
|
+
readonly BalanceQuery: BalanceQuery;
|
|
1437
|
+
readonly PortfolioQuery: PortfolioQuery;
|
|
1438
|
+
readonly HistoryCursor: HistoryCursor;
|
|
1439
|
+
readonly RequestPagination: RequestPagination;
|
|
1440
|
+
readonly BalanceHistoryQuery: BalanceHistoryQuery;
|
|
1441
|
+
readonly PortfolioHistoryQuery: PortfolioHistoryQuery;
|
|
1442
|
+
readonly HistoryEntry: HistoryEntry;
|
|
1443
|
+
readonly ResponsePagination: ResponsePagination;
|
|
1444
|
+
readonly BalanceHistoryResponse: BalanceHistoryResponse;
|
|
1445
|
+
readonly PortfolioHistoryResponse: PortfolioHistoryResponse;
|
|
1446
|
+
readonly BalanceResponse: BalanceResponse;
|
|
1447
|
+
readonly AssetBalance: AssetBalance;
|
|
1448
|
+
readonly PortfolioResponse: PortfolioResponse;
|
|
1449
|
+
}
|