@coinbase/agentkit 0.10.0 → 0.10.2
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 +195 -23
- package/dist/action-providers/across/acrossActionProvider.js +3 -3
- package/dist/action-providers/across/schemas.d.ts +1 -1
- package/dist/action-providers/baseAccount/baseAccountActionProvider.d.ts +46 -0
- package/dist/action-providers/baseAccount/baseAccountActionProvider.js +404 -0
- package/dist/action-providers/baseAccount/baseAccountActionProvider.test.d.ts +1 -0
- package/dist/action-providers/baseAccount/baseAccountActionProvider.test.js +325 -0
- package/dist/action-providers/baseAccount/index.d.ts +2 -0
- package/dist/action-providers/baseAccount/index.js +18 -0
- package/dist/action-providers/baseAccount/schemas.d.ts +43 -0
- package/dist/action-providers/baseAccount/schemas.js +62 -0
- package/dist/action-providers/baseAccount/types.d.ts +17 -0
- package/dist/action-providers/baseAccount/types.js +2 -0
- package/dist/action-providers/baseAccount/utils.d.ts +14 -0
- package/dist/action-providers/baseAccount/utils.js +57 -0
- package/dist/action-providers/cdp/cdpApiActionProvider.d.ts +3 -12
- package/dist/action-providers/cdp/cdpApiActionProvider.js +2 -81
- package/dist/action-providers/cdp/cdpApiActionProvider.test.js +0 -125
- package/dist/action-providers/cdp/cdpEvmWalletActionProvider.d.ts +18 -3
- package/dist/action-providers/cdp/cdpEvmWalletActionProvider.js +224 -23
- package/dist/action-providers/cdp/cdpEvmWalletActionProvider.test.js +280 -0
- package/dist/action-providers/cdp/cdpSmartWalletActionProvider.d.ts +17 -2
- package/dist/action-providers/cdp/cdpSmartWalletActionProvider.js +224 -18
- package/dist/action-providers/cdp/cdpSmartWalletActionProvider.test.js +267 -1
- package/dist/action-providers/cdp/schemas.d.ts +12 -12
- package/dist/action-providers/cdp/schemas.js +17 -5
- package/dist/action-providers/cdp/swapUtils.d.ts +23 -0
- package/dist/action-providers/cdp/swapUtils.js +106 -0
- package/dist/action-providers/clanker/clankerActionProvider.d.ts +43 -0
- package/dist/action-providers/clanker/clankerActionProvider.js +130 -0
- package/dist/action-providers/clanker/clankerActionProvider.test.d.ts +4 -0
- package/dist/action-providers/clanker/clankerActionProvider.test.js +119 -0
- package/dist/action-providers/clanker/index.d.ts +2 -0
- package/dist/action-providers/clanker/index.js +18 -0
- package/dist/action-providers/clanker/schemas.d.ts +56 -0
- package/dist/action-providers/clanker/schemas.js +47 -0
- package/dist/action-providers/clanker/utils.d.ts +9 -0
- package/dist/action-providers/clanker/utils.js +23 -0
- package/dist/action-providers/compound/constants.d.ts +1 -1
- package/dist/action-providers/compound/constants.js +2 -2
- package/dist/action-providers/erc20/constants.d.ts +35 -135
- package/dist/action-providers/erc20/constants.js +37 -189
- package/dist/action-providers/erc20/erc20ActionProvider.d.ts +9 -1
- package/dist/action-providers/erc20/erc20ActionProvider.js +87 -35
- package/dist/action-providers/erc20/erc20ActionProvider.test.js +115 -52
- package/dist/action-providers/erc20/schemas.d.ts +25 -12
- package/dist/action-providers/erc20/schemas.js +34 -6
- package/dist/action-providers/erc20/utils.d.ts +19 -0
- package/dist/action-providers/erc20/utils.js +54 -0
- package/dist/action-providers/flaunch/client_utils.d.ts +25 -0
- package/dist/action-providers/flaunch/client_utils.js +62 -0
- package/dist/action-providers/flaunch/constants.d.ts +42 -21
- package/dist/action-providers/flaunch/constants.js +113 -38
- package/dist/action-providers/flaunch/flaunchActionProvider.d.ts +4 -43
- package/dist/action-providers/flaunch/flaunchActionProvider.js +133 -209
- package/dist/action-providers/flaunch/flaunchActionProvider.test.js +113 -13
- package/dist/action-providers/flaunch/metadata_utils.d.ts +12 -0
- package/dist/action-providers/flaunch/metadata_utils.js +216 -0
- package/dist/action-providers/flaunch/schemas.d.ts +39 -3
- package/dist/action-providers/flaunch/schemas.js +62 -10
- package/dist/action-providers/flaunch/{utils.d.ts → swap_utils.d.ts} +17 -19
- package/dist/action-providers/flaunch/{utils.js → swap_utils.js} +137 -172
- package/dist/action-providers/index.d.ts +4 -0
- package/dist/action-providers/index.js +4 -0
- package/dist/action-providers/jupiter/schemas.d.ts +1 -1
- package/dist/action-providers/moonwell/schemas.d.ts +2 -2
- package/dist/action-providers/morpho/morphoActionProvider.js +5 -5
- package/dist/action-providers/morpho/schemas.d.ts +2 -2
- package/dist/action-providers/pyth/pythActionProvider.d.ts +2 -2
- package/dist/action-providers/pyth/pythActionProvider.js +83 -26
- package/dist/action-providers/pyth/pythActionProvider.test.js +179 -23
- package/dist/action-providers/pyth/schemas.d.ts +6 -0
- package/dist/action-providers/pyth/schemas.js +9 -1
- package/dist/action-providers/superfluid/constants.d.ts +814 -0
- package/dist/action-providers/superfluid/constants.js +2826 -0
- package/dist/action-providers/superfluid/graphQueries/endpoints.d.ts +2 -0
- package/dist/action-providers/superfluid/graphQueries/endpoints.js +5 -0
- package/dist/action-providers/superfluid/graphQueries/queries.d.ts +1 -0
- package/dist/action-providers/superfluid/graphQueries/queries.js +35 -0
- package/dist/action-providers/superfluid/graphQueries/superfluidGraphQueries.d.ts +8 -0
- package/dist/action-providers/superfluid/graphQueries/superfluidGraphQueries.js +24 -0
- package/dist/action-providers/superfluid/graphQueries/types.d.ts +27 -0
- package/dist/action-providers/superfluid/graphQueries/types.js +2 -0
- package/dist/action-providers/superfluid/index.d.ts +7 -0
- package/dist/action-providers/superfluid/index.js +23 -0
- package/dist/action-providers/superfluid/schemas.d.ts +86 -0
- package/dist/action-providers/superfluid/schemas.js +103 -0
- package/dist/action-providers/superfluid/superfluidActionProvider.d.ts +20 -0
- package/dist/action-providers/superfluid/superfluidActionProvider.js +36 -0
- package/dist/action-providers/superfluid/superfluidPoolActionProvider.d.ts +46 -0
- package/dist/action-providers/superfluid/superfluidPoolActionProvider.js +143 -0
- package/dist/action-providers/superfluid/superfluidPoolActionProvider.test.d.ts +1 -0
- package/dist/action-providers/superfluid/superfluidPoolActionProvider.test.js +92 -0
- package/dist/action-providers/superfluid/superfluidQueryActionProvider.d.ts +27 -0
- package/dist/action-providers/superfluid/superfluidQueryActionProvider.js +71 -0
- package/dist/action-providers/superfluid/superfluidQueryActionProvider.test.d.ts +1 -0
- package/dist/action-providers/superfluid/superfluidQueryActionProvider.test.js +57 -0
- package/dist/action-providers/superfluid/superfluidStreamActionProvider.d.ts +56 -0
- package/dist/action-providers/superfluid/superfluidStreamActionProvider.js +191 -0
- package/dist/action-providers/superfluid/superfluidStreamActionProvider.test.d.ts +1 -0
- package/dist/action-providers/superfluid/superfluidStreamActionProvider.test.js +80 -0
- package/dist/action-providers/superfluid/superfluidSuperTokenCreatorActionProvider.d.ts +30 -0
- package/dist/action-providers/superfluid/superfluidSuperTokenCreatorActionProvider.js +109 -0
- package/dist/action-providers/superfluid/superfluidSuperTokenCreatorActionProvider.test.d.ts +1 -0
- package/dist/action-providers/superfluid/superfluidSuperTokenCreatorActionProvider.test.js +75 -0
- package/dist/action-providers/superfluid/superfluidWrapperActionProvider.d.ts +32 -0
- package/dist/action-providers/superfluid/superfluidWrapperActionProvider.js +101 -0
- package/dist/action-providers/superfluid/superfluidWrapperActionProvider.test.d.ts +1 -0
- package/dist/action-providers/superfluid/superfluidWrapperActionProvider.test.js +85 -0
- package/dist/action-providers/superfluid/utils/parseLogs.d.ts +19 -0
- package/dist/action-providers/superfluid/utils/parseLogs.js +81 -0
- package/dist/action-providers/truemarkets/truemarketsActionProvider.d.ts +4 -16
- package/dist/action-providers/truemarkets/truemarketsActionProvider.js +20 -41
- package/dist/action-providers/truemarkets/truemarketsActionProvider.test.js +11 -33
- package/dist/action-providers/wallet/walletActionProvider.js +24 -10
- package/dist/action-providers/wallet/walletActionProvider.test.js +6 -2
- package/dist/action-providers/x402/schemas.d.ts +7 -0
- package/dist/action-providers/x402/schemas.js +11 -1
- package/dist/action-providers/x402/utils.d.ts +55 -0
- package/dist/action-providers/x402/utils.js +160 -0
- package/dist/action-providers/x402/x402ActionProvider.d.ts +9 -9
- package/dist/action-providers/x402/x402ActionProvider.js +158 -39
- package/dist/action-providers/x402/x402ActionProvider.test.js +116 -10
- package/dist/action-providers/zeroX/index.d.ts +1 -0
- package/dist/action-providers/zeroX/index.js +17 -0
- package/dist/action-providers/zeroX/schemas.d.ts +51 -0
- package/dist/action-providers/zeroX/schemas.js +82 -0
- package/dist/action-providers/zeroX/utils.d.ts +23 -0
- package/dist/action-providers/zeroX/utils.js +106 -0
- package/dist/action-providers/zeroX/zeroXActionProvider.d.ts +57 -0
- package/dist/action-providers/zeroX/zeroXActionProvider.js +407 -0
- package/dist/action-providers/zeroX/zeroXActionProvider.test.d.ts +1 -0
- package/dist/action-providers/zeroX/zeroXActionProvider.test.js +445 -0
- package/dist/utils.d.ts +10 -0
- package/dist/utils.js +43 -13
- package/dist/wallet-providers/cdpEvmWalletProvider.d.ts +27 -2
- package/dist/wallet-providers/cdpEvmWalletProvider.js +54 -36
- package/dist/wallet-providers/cdpEvmWalletProvider.test.js +7 -0
- package/dist/wallet-providers/cdpShared.d.ts +5 -0
- package/dist/wallet-providers/cdpSmartWalletProvider.d.ts +29 -3
- package/dist/wallet-providers/cdpSmartWalletProvider.js +66 -25
- package/dist/wallet-providers/cdpSmartWalletProvider.test.js +6 -10
- package/dist/wallet-providers/cdpSolanaWalletProvider.d.ts +1 -1
- package/dist/wallet-providers/cdpSolanaWalletProvider.js +7 -7
- package/dist/wallet-providers/cdpSolanaWalletProvider.test.js +15 -12
- package/dist/wallet-providers/evmWalletProvider.d.ts +13 -2
- package/dist/wallet-providers/evmWalletProvider.js +4 -0
- package/dist/wallet-providers/legacyCdpSmartWalletProvider.d.ts +18 -2
- package/dist/wallet-providers/legacyCdpSmartWalletProvider.js +23 -2
- package/dist/wallet-providers/legacyCdpWalletProvider.d.ts +19 -2
- package/dist/wallet-providers/legacyCdpWalletProvider.js +27 -2
- package/dist/wallet-providers/legacyCdpWalletProvider.test.js +6 -0
- package/dist/wallet-providers/privyEvmDelegatedEmbeddedWalletProvider.d.ts +17 -2
- package/dist/wallet-providers/privyEvmDelegatedEmbeddedWalletProvider.js +39 -3
- package/dist/wallet-providers/privyEvmDelegatedEmbeddedWalletProvider.test.js +1 -1
- package/dist/wallet-providers/privyEvmWalletProvider.d.ts +2 -0
- package/dist/wallet-providers/privyEvmWalletProvider.js +2 -1
- package/dist/wallet-providers/privyEvmWalletProvider.test.js +12 -1
- package/dist/wallet-providers/solanaKeypairWalletProvider.d.ts +1 -1
- package/dist/wallet-providers/solanaKeypairWalletProvider.js +3 -4
- package/dist/wallet-providers/solanaKeypairWalletProvider.test.js +4 -2
- package/dist/wallet-providers/viemWalletProvider.d.ts +20 -3
- package/dist/wallet-providers/viemWalletProvider.js +33 -4
- package/dist/wallet-providers/viemWalletProvider.test.js +27 -6
- package/dist/wallet-providers/walletProvider.d.ts +1 -1
- package/dist/wallet-providers/zeroDevWalletProvider.d.ts +17 -2
- package/dist/wallet-providers/zeroDevWalletProvider.js +26 -5
- package/dist/wallet-providers/zeroDevWalletProvider.test.js +12 -2
- package/package.json +8 -4
|
@@ -0,0 +1,814 @@
|
|
|
1
|
+
export declare const CFAv1ForwarderAddress: "0xcfA132E353cB4E398080B9700609bb008eceB125";
|
|
2
|
+
export declare const GDAv1ForwarderAddress: "0x6DA13Bde224A05a288748d857b9e7DDEffd1dE08";
|
|
3
|
+
export declare const CFAv1ForwarderABI: readonly [{
|
|
4
|
+
readonly inputs: readonly [{
|
|
5
|
+
readonly internalType: "contract ISuperfluid";
|
|
6
|
+
readonly name: "host";
|
|
7
|
+
readonly type: "address";
|
|
8
|
+
}];
|
|
9
|
+
readonly stateMutability: "nonpayable";
|
|
10
|
+
readonly type: "constructor";
|
|
11
|
+
}, {
|
|
12
|
+
readonly inputs: readonly [];
|
|
13
|
+
readonly name: "CFA_FWD_INVALID_FLOW_RATE";
|
|
14
|
+
readonly type: "error";
|
|
15
|
+
}, {
|
|
16
|
+
readonly inputs: readonly [{
|
|
17
|
+
readonly internalType: "contract ISuperToken";
|
|
18
|
+
readonly name: "token";
|
|
19
|
+
readonly type: "address";
|
|
20
|
+
}, {
|
|
21
|
+
readonly internalType: "address";
|
|
22
|
+
readonly name: "sender";
|
|
23
|
+
readonly type: "address";
|
|
24
|
+
}, {
|
|
25
|
+
readonly internalType: "address";
|
|
26
|
+
readonly name: "receiver";
|
|
27
|
+
readonly type: "address";
|
|
28
|
+
}, {
|
|
29
|
+
readonly internalType: "int96";
|
|
30
|
+
readonly name: "flowrate";
|
|
31
|
+
readonly type: "int96";
|
|
32
|
+
}, {
|
|
33
|
+
readonly internalType: "bytes";
|
|
34
|
+
readonly name: "userData";
|
|
35
|
+
readonly type: "bytes";
|
|
36
|
+
}];
|
|
37
|
+
readonly name: "createFlow";
|
|
38
|
+
readonly outputs: readonly [{
|
|
39
|
+
readonly internalType: "bool";
|
|
40
|
+
readonly name: "";
|
|
41
|
+
readonly type: "bool";
|
|
42
|
+
}];
|
|
43
|
+
readonly stateMutability: "nonpayable";
|
|
44
|
+
readonly type: "function";
|
|
45
|
+
}, {
|
|
46
|
+
readonly inputs: readonly [{
|
|
47
|
+
readonly internalType: "contract ISuperToken";
|
|
48
|
+
readonly name: "token";
|
|
49
|
+
readonly type: "address";
|
|
50
|
+
}, {
|
|
51
|
+
readonly internalType: "address";
|
|
52
|
+
readonly name: "sender";
|
|
53
|
+
readonly type: "address";
|
|
54
|
+
}, {
|
|
55
|
+
readonly internalType: "address";
|
|
56
|
+
readonly name: "receiver";
|
|
57
|
+
readonly type: "address";
|
|
58
|
+
}, {
|
|
59
|
+
readonly internalType: "bytes";
|
|
60
|
+
readonly name: "userData";
|
|
61
|
+
readonly type: "bytes";
|
|
62
|
+
}];
|
|
63
|
+
readonly name: "deleteFlow";
|
|
64
|
+
readonly outputs: readonly [{
|
|
65
|
+
readonly internalType: "bool";
|
|
66
|
+
readonly name: "";
|
|
67
|
+
readonly type: "bool";
|
|
68
|
+
}];
|
|
69
|
+
readonly stateMutability: "nonpayable";
|
|
70
|
+
readonly type: "function";
|
|
71
|
+
}, {
|
|
72
|
+
readonly inputs: readonly [{
|
|
73
|
+
readonly internalType: "contract ISuperToken";
|
|
74
|
+
readonly name: "token";
|
|
75
|
+
readonly type: "address";
|
|
76
|
+
}, {
|
|
77
|
+
readonly internalType: "address";
|
|
78
|
+
readonly name: "account";
|
|
79
|
+
readonly type: "address";
|
|
80
|
+
}];
|
|
81
|
+
readonly name: "getAccountFlowInfo";
|
|
82
|
+
readonly outputs: readonly [{
|
|
83
|
+
readonly internalType: "uint256";
|
|
84
|
+
readonly name: "lastUpdated";
|
|
85
|
+
readonly type: "uint256";
|
|
86
|
+
}, {
|
|
87
|
+
readonly internalType: "int96";
|
|
88
|
+
readonly name: "flowrate";
|
|
89
|
+
readonly type: "int96";
|
|
90
|
+
}, {
|
|
91
|
+
readonly internalType: "uint256";
|
|
92
|
+
readonly name: "deposit";
|
|
93
|
+
readonly type: "uint256";
|
|
94
|
+
}, {
|
|
95
|
+
readonly internalType: "uint256";
|
|
96
|
+
readonly name: "owedDeposit";
|
|
97
|
+
readonly type: "uint256";
|
|
98
|
+
}];
|
|
99
|
+
readonly stateMutability: "view";
|
|
100
|
+
readonly type: "function";
|
|
101
|
+
}, {
|
|
102
|
+
readonly inputs: readonly [{
|
|
103
|
+
readonly internalType: "contract ISuperToken";
|
|
104
|
+
readonly name: "token";
|
|
105
|
+
readonly type: "address";
|
|
106
|
+
}, {
|
|
107
|
+
readonly internalType: "address";
|
|
108
|
+
readonly name: "account";
|
|
109
|
+
readonly type: "address";
|
|
110
|
+
}];
|
|
111
|
+
readonly name: "getAccountFlowrate";
|
|
112
|
+
readonly outputs: readonly [{
|
|
113
|
+
readonly internalType: "int96";
|
|
114
|
+
readonly name: "flowrate";
|
|
115
|
+
readonly type: "int96";
|
|
116
|
+
}];
|
|
117
|
+
readonly stateMutability: "view";
|
|
118
|
+
readonly type: "function";
|
|
119
|
+
}, {
|
|
120
|
+
readonly inputs: readonly [{
|
|
121
|
+
readonly internalType: "contract ISuperToken";
|
|
122
|
+
readonly name: "token";
|
|
123
|
+
readonly type: "address";
|
|
124
|
+
}, {
|
|
125
|
+
readonly internalType: "int96";
|
|
126
|
+
readonly name: "flowrate";
|
|
127
|
+
readonly type: "int96";
|
|
128
|
+
}];
|
|
129
|
+
readonly name: "getBufferAmountByFlowrate";
|
|
130
|
+
readonly outputs: readonly [{
|
|
131
|
+
readonly internalType: "uint256";
|
|
132
|
+
readonly name: "bufferAmount";
|
|
133
|
+
readonly type: "uint256";
|
|
134
|
+
}];
|
|
135
|
+
readonly stateMutability: "view";
|
|
136
|
+
readonly type: "function";
|
|
137
|
+
}, {
|
|
138
|
+
readonly inputs: readonly [{
|
|
139
|
+
readonly internalType: "contract ISuperToken";
|
|
140
|
+
readonly name: "token";
|
|
141
|
+
readonly type: "address";
|
|
142
|
+
}, {
|
|
143
|
+
readonly internalType: "address";
|
|
144
|
+
readonly name: "sender";
|
|
145
|
+
readonly type: "address";
|
|
146
|
+
}, {
|
|
147
|
+
readonly internalType: "address";
|
|
148
|
+
readonly name: "receiver";
|
|
149
|
+
readonly type: "address";
|
|
150
|
+
}];
|
|
151
|
+
readonly name: "getFlowInfo";
|
|
152
|
+
readonly outputs: readonly [{
|
|
153
|
+
readonly internalType: "uint256";
|
|
154
|
+
readonly name: "lastUpdated";
|
|
155
|
+
readonly type: "uint256";
|
|
156
|
+
}, {
|
|
157
|
+
readonly internalType: "int96";
|
|
158
|
+
readonly name: "flowrate";
|
|
159
|
+
readonly type: "int96";
|
|
160
|
+
}, {
|
|
161
|
+
readonly internalType: "uint256";
|
|
162
|
+
readonly name: "deposit";
|
|
163
|
+
readonly type: "uint256";
|
|
164
|
+
}, {
|
|
165
|
+
readonly internalType: "uint256";
|
|
166
|
+
readonly name: "owedDeposit";
|
|
167
|
+
readonly type: "uint256";
|
|
168
|
+
}];
|
|
169
|
+
readonly stateMutability: "view";
|
|
170
|
+
readonly type: "function";
|
|
171
|
+
}, {
|
|
172
|
+
readonly inputs: readonly [{
|
|
173
|
+
readonly internalType: "contract ISuperToken";
|
|
174
|
+
readonly name: "token";
|
|
175
|
+
readonly type: "address";
|
|
176
|
+
}, {
|
|
177
|
+
readonly internalType: "address";
|
|
178
|
+
readonly name: "sender";
|
|
179
|
+
readonly type: "address";
|
|
180
|
+
}, {
|
|
181
|
+
readonly internalType: "address";
|
|
182
|
+
readonly name: "flowOperator";
|
|
183
|
+
readonly type: "address";
|
|
184
|
+
}];
|
|
185
|
+
readonly name: "getFlowOperatorPermissions";
|
|
186
|
+
readonly outputs: readonly [{
|
|
187
|
+
readonly internalType: "uint8";
|
|
188
|
+
readonly name: "permissions";
|
|
189
|
+
readonly type: "uint8";
|
|
190
|
+
}, {
|
|
191
|
+
readonly internalType: "int96";
|
|
192
|
+
readonly name: "flowrateAllowance";
|
|
193
|
+
readonly type: "int96";
|
|
194
|
+
}];
|
|
195
|
+
readonly stateMutability: "view";
|
|
196
|
+
readonly type: "function";
|
|
197
|
+
}, {
|
|
198
|
+
readonly inputs: readonly [{
|
|
199
|
+
readonly internalType: "contract ISuperToken";
|
|
200
|
+
readonly name: "token";
|
|
201
|
+
readonly type: "address";
|
|
202
|
+
}, {
|
|
203
|
+
readonly internalType: "address";
|
|
204
|
+
readonly name: "sender";
|
|
205
|
+
readonly type: "address";
|
|
206
|
+
}, {
|
|
207
|
+
readonly internalType: "address";
|
|
208
|
+
readonly name: "receiver";
|
|
209
|
+
readonly type: "address";
|
|
210
|
+
}];
|
|
211
|
+
readonly name: "getFlowrate";
|
|
212
|
+
readonly outputs: readonly [{
|
|
213
|
+
readonly internalType: "int96";
|
|
214
|
+
readonly name: "flowrate";
|
|
215
|
+
readonly type: "int96";
|
|
216
|
+
}];
|
|
217
|
+
readonly stateMutability: "view";
|
|
218
|
+
readonly type: "function";
|
|
219
|
+
}, {
|
|
220
|
+
readonly inputs: readonly [{
|
|
221
|
+
readonly internalType: "contract ISuperToken";
|
|
222
|
+
readonly name: "token";
|
|
223
|
+
readonly type: "address";
|
|
224
|
+
}, {
|
|
225
|
+
readonly internalType: "address";
|
|
226
|
+
readonly name: "flowOperator";
|
|
227
|
+
readonly type: "address";
|
|
228
|
+
}];
|
|
229
|
+
readonly name: "grantPermissions";
|
|
230
|
+
readonly outputs: readonly [{
|
|
231
|
+
readonly internalType: "bool";
|
|
232
|
+
readonly name: "";
|
|
233
|
+
readonly type: "bool";
|
|
234
|
+
}];
|
|
235
|
+
readonly stateMutability: "nonpayable";
|
|
236
|
+
readonly type: "function";
|
|
237
|
+
}, {
|
|
238
|
+
readonly inputs: readonly [{
|
|
239
|
+
readonly internalType: "contract ISuperToken";
|
|
240
|
+
readonly name: "token";
|
|
241
|
+
readonly type: "address";
|
|
242
|
+
}, {
|
|
243
|
+
readonly internalType: "address";
|
|
244
|
+
readonly name: "flowOperator";
|
|
245
|
+
readonly type: "address";
|
|
246
|
+
}];
|
|
247
|
+
readonly name: "revokePermissions";
|
|
248
|
+
readonly outputs: readonly [{
|
|
249
|
+
readonly internalType: "bool";
|
|
250
|
+
readonly name: "";
|
|
251
|
+
readonly type: "bool";
|
|
252
|
+
}];
|
|
253
|
+
readonly stateMutability: "nonpayable";
|
|
254
|
+
readonly type: "function";
|
|
255
|
+
}, {
|
|
256
|
+
readonly inputs: readonly [{
|
|
257
|
+
readonly internalType: "contract ISuperToken";
|
|
258
|
+
readonly name: "token";
|
|
259
|
+
readonly type: "address";
|
|
260
|
+
}, {
|
|
261
|
+
readonly internalType: "address";
|
|
262
|
+
readonly name: "receiver";
|
|
263
|
+
readonly type: "address";
|
|
264
|
+
}, {
|
|
265
|
+
readonly internalType: "int96";
|
|
266
|
+
readonly name: "flowrate";
|
|
267
|
+
readonly type: "int96";
|
|
268
|
+
}];
|
|
269
|
+
readonly name: "setFlowrate";
|
|
270
|
+
readonly outputs: readonly [{
|
|
271
|
+
readonly internalType: "bool";
|
|
272
|
+
readonly name: "";
|
|
273
|
+
readonly type: "bool";
|
|
274
|
+
}];
|
|
275
|
+
readonly stateMutability: "nonpayable";
|
|
276
|
+
readonly type: "function";
|
|
277
|
+
}, {
|
|
278
|
+
readonly inputs: readonly [{
|
|
279
|
+
readonly internalType: "contract ISuperToken";
|
|
280
|
+
readonly name: "token";
|
|
281
|
+
readonly type: "address";
|
|
282
|
+
}, {
|
|
283
|
+
readonly internalType: "address";
|
|
284
|
+
readonly name: "sender";
|
|
285
|
+
readonly type: "address";
|
|
286
|
+
}, {
|
|
287
|
+
readonly internalType: "address";
|
|
288
|
+
readonly name: "receiver";
|
|
289
|
+
readonly type: "address";
|
|
290
|
+
}, {
|
|
291
|
+
readonly internalType: "int96";
|
|
292
|
+
readonly name: "flowrate";
|
|
293
|
+
readonly type: "int96";
|
|
294
|
+
}];
|
|
295
|
+
readonly name: "setFlowrateFrom";
|
|
296
|
+
readonly outputs: readonly [{
|
|
297
|
+
readonly internalType: "bool";
|
|
298
|
+
readonly name: "";
|
|
299
|
+
readonly type: "bool";
|
|
300
|
+
}];
|
|
301
|
+
readonly stateMutability: "nonpayable";
|
|
302
|
+
readonly type: "function";
|
|
303
|
+
}, {
|
|
304
|
+
readonly inputs: readonly [{
|
|
305
|
+
readonly internalType: "contract ISuperToken";
|
|
306
|
+
readonly name: "token";
|
|
307
|
+
readonly type: "address";
|
|
308
|
+
}, {
|
|
309
|
+
readonly internalType: "address";
|
|
310
|
+
readonly name: "sender";
|
|
311
|
+
readonly type: "address";
|
|
312
|
+
}, {
|
|
313
|
+
readonly internalType: "address";
|
|
314
|
+
readonly name: "receiver";
|
|
315
|
+
readonly type: "address";
|
|
316
|
+
}, {
|
|
317
|
+
readonly internalType: "int96";
|
|
318
|
+
readonly name: "flowrate";
|
|
319
|
+
readonly type: "int96";
|
|
320
|
+
}, {
|
|
321
|
+
readonly internalType: "bytes";
|
|
322
|
+
readonly name: "userData";
|
|
323
|
+
readonly type: "bytes";
|
|
324
|
+
}];
|
|
325
|
+
readonly name: "updateFlow";
|
|
326
|
+
readonly outputs: readonly [{
|
|
327
|
+
readonly internalType: "bool";
|
|
328
|
+
readonly name: "";
|
|
329
|
+
readonly type: "bool";
|
|
330
|
+
}];
|
|
331
|
+
readonly stateMutability: "nonpayable";
|
|
332
|
+
readonly type: "function";
|
|
333
|
+
}, {
|
|
334
|
+
readonly inputs: readonly [{
|
|
335
|
+
readonly internalType: "contract ISuperToken";
|
|
336
|
+
readonly name: "token";
|
|
337
|
+
readonly type: "address";
|
|
338
|
+
}, {
|
|
339
|
+
readonly internalType: "address";
|
|
340
|
+
readonly name: "flowOperator";
|
|
341
|
+
readonly type: "address";
|
|
342
|
+
}, {
|
|
343
|
+
readonly internalType: "uint8";
|
|
344
|
+
readonly name: "permissions";
|
|
345
|
+
readonly type: "uint8";
|
|
346
|
+
}, {
|
|
347
|
+
readonly internalType: "int96";
|
|
348
|
+
readonly name: "flowrateAllowance";
|
|
349
|
+
readonly type: "int96";
|
|
350
|
+
}];
|
|
351
|
+
readonly name: "updateFlowOperatorPermissions";
|
|
352
|
+
readonly outputs: readonly [{
|
|
353
|
+
readonly internalType: "bool";
|
|
354
|
+
readonly name: "";
|
|
355
|
+
readonly type: "bool";
|
|
356
|
+
}];
|
|
357
|
+
readonly stateMutability: "nonpayable";
|
|
358
|
+
readonly type: "function";
|
|
359
|
+
}];
|
|
360
|
+
export declare const GDAv1ForwarderABI: readonly [{
|
|
361
|
+
readonly inputs: readonly [{
|
|
362
|
+
readonly internalType: "contract ISuperfluid";
|
|
363
|
+
readonly name: "host";
|
|
364
|
+
readonly type: "address";
|
|
365
|
+
}];
|
|
366
|
+
readonly stateMutability: "nonpayable";
|
|
367
|
+
readonly type: "constructor";
|
|
368
|
+
}, {
|
|
369
|
+
readonly inputs: readonly [{
|
|
370
|
+
readonly internalType: "contract ISuperfluidPool";
|
|
371
|
+
readonly name: "pool";
|
|
372
|
+
readonly type: "address";
|
|
373
|
+
}, {
|
|
374
|
+
readonly internalType: "address";
|
|
375
|
+
readonly name: "memberAddress";
|
|
376
|
+
readonly type: "address";
|
|
377
|
+
}, {
|
|
378
|
+
readonly internalType: "bytes";
|
|
379
|
+
readonly name: "userData";
|
|
380
|
+
readonly type: "bytes";
|
|
381
|
+
}];
|
|
382
|
+
readonly name: "claimAll";
|
|
383
|
+
readonly outputs: readonly [{
|
|
384
|
+
readonly internalType: "bool";
|
|
385
|
+
readonly name: "success";
|
|
386
|
+
readonly type: "bool";
|
|
387
|
+
}];
|
|
388
|
+
readonly stateMutability: "nonpayable";
|
|
389
|
+
readonly type: "function";
|
|
390
|
+
}, {
|
|
391
|
+
readonly inputs: readonly [{
|
|
392
|
+
readonly internalType: "contract ISuperfluidPool";
|
|
393
|
+
readonly name: "pool";
|
|
394
|
+
readonly type: "address";
|
|
395
|
+
}, {
|
|
396
|
+
readonly internalType: "bytes";
|
|
397
|
+
readonly name: "userData";
|
|
398
|
+
readonly type: "bytes";
|
|
399
|
+
}];
|
|
400
|
+
readonly name: "connectPool";
|
|
401
|
+
readonly outputs: readonly [{
|
|
402
|
+
readonly internalType: "bool";
|
|
403
|
+
readonly name: "";
|
|
404
|
+
readonly type: "bool";
|
|
405
|
+
}];
|
|
406
|
+
readonly stateMutability: "nonpayable";
|
|
407
|
+
readonly type: "function";
|
|
408
|
+
}, {
|
|
409
|
+
readonly inputs: readonly [{
|
|
410
|
+
readonly internalType: "contract ISuperfluidToken";
|
|
411
|
+
readonly name: "token";
|
|
412
|
+
readonly type: "address";
|
|
413
|
+
}, {
|
|
414
|
+
readonly internalType: "address";
|
|
415
|
+
readonly name: "admin";
|
|
416
|
+
readonly type: "address";
|
|
417
|
+
}, {
|
|
418
|
+
readonly components: readonly [{
|
|
419
|
+
readonly internalType: "bool";
|
|
420
|
+
readonly name: "transferabilityForUnitsOwner";
|
|
421
|
+
readonly type: "bool";
|
|
422
|
+
}, {
|
|
423
|
+
readonly internalType: "bool";
|
|
424
|
+
readonly name: "distributionFromAnyAddress";
|
|
425
|
+
readonly type: "bool";
|
|
426
|
+
}];
|
|
427
|
+
readonly internalType: "struct PoolConfig";
|
|
428
|
+
readonly name: "config";
|
|
429
|
+
readonly type: "tuple";
|
|
430
|
+
}];
|
|
431
|
+
readonly name: "createPool";
|
|
432
|
+
readonly outputs: readonly [{
|
|
433
|
+
readonly internalType: "bool";
|
|
434
|
+
readonly name: "success";
|
|
435
|
+
readonly type: "bool";
|
|
436
|
+
}, {
|
|
437
|
+
readonly internalType: "contract ISuperfluidPool";
|
|
438
|
+
readonly name: "pool";
|
|
439
|
+
readonly type: "address";
|
|
440
|
+
}];
|
|
441
|
+
readonly stateMutability: "nonpayable";
|
|
442
|
+
readonly type: "function";
|
|
443
|
+
}, {
|
|
444
|
+
readonly inputs: readonly [{
|
|
445
|
+
readonly internalType: "contract ISuperfluidPool";
|
|
446
|
+
readonly name: "pool";
|
|
447
|
+
readonly type: "address";
|
|
448
|
+
}, {
|
|
449
|
+
readonly internalType: "bytes";
|
|
450
|
+
readonly name: "userData";
|
|
451
|
+
readonly type: "bytes";
|
|
452
|
+
}];
|
|
453
|
+
readonly name: "disconnectPool";
|
|
454
|
+
readonly outputs: readonly [{
|
|
455
|
+
readonly internalType: "bool";
|
|
456
|
+
readonly name: "";
|
|
457
|
+
readonly type: "bool";
|
|
458
|
+
}];
|
|
459
|
+
readonly stateMutability: "nonpayable";
|
|
460
|
+
readonly type: "function";
|
|
461
|
+
}, {
|
|
462
|
+
readonly inputs: readonly [{
|
|
463
|
+
readonly internalType: "contract ISuperfluidToken";
|
|
464
|
+
readonly name: "token";
|
|
465
|
+
readonly type: "address";
|
|
466
|
+
}, {
|
|
467
|
+
readonly internalType: "address";
|
|
468
|
+
readonly name: "from";
|
|
469
|
+
readonly type: "address";
|
|
470
|
+
}, {
|
|
471
|
+
readonly internalType: "contract ISuperfluidPool";
|
|
472
|
+
readonly name: "pool";
|
|
473
|
+
readonly type: "address";
|
|
474
|
+
}, {
|
|
475
|
+
readonly internalType: "uint256";
|
|
476
|
+
readonly name: "requestedAmount";
|
|
477
|
+
readonly type: "uint256";
|
|
478
|
+
}, {
|
|
479
|
+
readonly internalType: "bytes";
|
|
480
|
+
readonly name: "userData";
|
|
481
|
+
readonly type: "bytes";
|
|
482
|
+
}];
|
|
483
|
+
readonly name: "distribute";
|
|
484
|
+
readonly outputs: readonly [{
|
|
485
|
+
readonly internalType: "bool";
|
|
486
|
+
readonly name: "";
|
|
487
|
+
readonly type: "bool";
|
|
488
|
+
}];
|
|
489
|
+
readonly stateMutability: "nonpayable";
|
|
490
|
+
readonly type: "function";
|
|
491
|
+
}, {
|
|
492
|
+
readonly inputs: readonly [{
|
|
493
|
+
readonly internalType: "contract ISuperfluidToken";
|
|
494
|
+
readonly name: "token";
|
|
495
|
+
readonly type: "address";
|
|
496
|
+
}, {
|
|
497
|
+
readonly internalType: "address";
|
|
498
|
+
readonly name: "from";
|
|
499
|
+
readonly type: "address";
|
|
500
|
+
}, {
|
|
501
|
+
readonly internalType: "contract ISuperfluidPool";
|
|
502
|
+
readonly name: "pool";
|
|
503
|
+
readonly type: "address";
|
|
504
|
+
}, {
|
|
505
|
+
readonly internalType: "int96";
|
|
506
|
+
readonly name: "requestedFlowRate";
|
|
507
|
+
readonly type: "int96";
|
|
508
|
+
}, {
|
|
509
|
+
readonly internalType: "bytes";
|
|
510
|
+
readonly name: "userData";
|
|
511
|
+
readonly type: "bytes";
|
|
512
|
+
}];
|
|
513
|
+
readonly name: "distributeFlow";
|
|
514
|
+
readonly outputs: readonly [{
|
|
515
|
+
readonly internalType: "bool";
|
|
516
|
+
readonly name: "";
|
|
517
|
+
readonly type: "bool";
|
|
518
|
+
}];
|
|
519
|
+
readonly stateMutability: "nonpayable";
|
|
520
|
+
readonly type: "function";
|
|
521
|
+
}, {
|
|
522
|
+
readonly inputs: readonly [{
|
|
523
|
+
readonly internalType: "contract ISuperfluidToken";
|
|
524
|
+
readonly name: "token";
|
|
525
|
+
readonly type: "address";
|
|
526
|
+
}, {
|
|
527
|
+
readonly internalType: "address";
|
|
528
|
+
readonly name: "from";
|
|
529
|
+
readonly type: "address";
|
|
530
|
+
}, {
|
|
531
|
+
readonly internalType: "contract ISuperfluidPool";
|
|
532
|
+
readonly name: "to";
|
|
533
|
+
readonly type: "address";
|
|
534
|
+
}, {
|
|
535
|
+
readonly internalType: "uint256";
|
|
536
|
+
readonly name: "requestedAmount";
|
|
537
|
+
readonly type: "uint256";
|
|
538
|
+
}];
|
|
539
|
+
readonly name: "estimateDistributionActualAmount";
|
|
540
|
+
readonly outputs: readonly [{
|
|
541
|
+
readonly internalType: "uint256";
|
|
542
|
+
readonly name: "actualAmount";
|
|
543
|
+
readonly type: "uint256";
|
|
544
|
+
}];
|
|
545
|
+
readonly stateMutability: "view";
|
|
546
|
+
readonly type: "function";
|
|
547
|
+
}, {
|
|
548
|
+
readonly inputs: readonly [{
|
|
549
|
+
readonly internalType: "contract ISuperfluidToken";
|
|
550
|
+
readonly name: "token";
|
|
551
|
+
readonly type: "address";
|
|
552
|
+
}, {
|
|
553
|
+
readonly internalType: "address";
|
|
554
|
+
readonly name: "from";
|
|
555
|
+
readonly type: "address";
|
|
556
|
+
}, {
|
|
557
|
+
readonly internalType: "contract ISuperfluidPool";
|
|
558
|
+
readonly name: "to";
|
|
559
|
+
readonly type: "address";
|
|
560
|
+
}, {
|
|
561
|
+
readonly internalType: "int96";
|
|
562
|
+
readonly name: "requestedFlowRate";
|
|
563
|
+
readonly type: "int96";
|
|
564
|
+
}];
|
|
565
|
+
readonly name: "estimateFlowDistributionActualFlowRate";
|
|
566
|
+
readonly outputs: readonly [{
|
|
567
|
+
readonly internalType: "int96";
|
|
568
|
+
readonly name: "actualFlowRate";
|
|
569
|
+
readonly type: "int96";
|
|
570
|
+
}, {
|
|
571
|
+
readonly internalType: "int96";
|
|
572
|
+
readonly name: "totalDistributionFlowRate";
|
|
573
|
+
readonly type: "int96";
|
|
574
|
+
}];
|
|
575
|
+
readonly stateMutability: "view";
|
|
576
|
+
readonly type: "function";
|
|
577
|
+
}, {
|
|
578
|
+
readonly inputs: readonly [{
|
|
579
|
+
readonly internalType: "contract ISuperfluidToken";
|
|
580
|
+
readonly name: "token";
|
|
581
|
+
readonly type: "address";
|
|
582
|
+
}, {
|
|
583
|
+
readonly internalType: "address";
|
|
584
|
+
readonly name: "from";
|
|
585
|
+
readonly type: "address";
|
|
586
|
+
}, {
|
|
587
|
+
readonly internalType: "contract ISuperfluidPool";
|
|
588
|
+
readonly name: "to";
|
|
589
|
+
readonly type: "address";
|
|
590
|
+
}];
|
|
591
|
+
readonly name: "getFlowDistributionFlowRate";
|
|
592
|
+
readonly outputs: readonly [{
|
|
593
|
+
readonly internalType: "int96";
|
|
594
|
+
readonly name: "";
|
|
595
|
+
readonly type: "int96";
|
|
596
|
+
}];
|
|
597
|
+
readonly stateMutability: "view";
|
|
598
|
+
readonly type: "function";
|
|
599
|
+
}, {
|
|
600
|
+
readonly inputs: readonly [{
|
|
601
|
+
readonly internalType: "contract ISuperfluidToken";
|
|
602
|
+
readonly name: "token";
|
|
603
|
+
readonly type: "address";
|
|
604
|
+
}, {
|
|
605
|
+
readonly internalType: "address";
|
|
606
|
+
readonly name: "account";
|
|
607
|
+
readonly type: "address";
|
|
608
|
+
}];
|
|
609
|
+
readonly name: "getNetFlow";
|
|
610
|
+
readonly outputs: readonly [{
|
|
611
|
+
readonly internalType: "int96";
|
|
612
|
+
readonly name: "";
|
|
613
|
+
readonly type: "int96";
|
|
614
|
+
}];
|
|
615
|
+
readonly stateMutability: "view";
|
|
616
|
+
readonly type: "function";
|
|
617
|
+
}, {
|
|
618
|
+
readonly inputs: readonly [{
|
|
619
|
+
readonly internalType: "contract ISuperfluidPool";
|
|
620
|
+
readonly name: "pool";
|
|
621
|
+
readonly type: "address";
|
|
622
|
+
}];
|
|
623
|
+
readonly name: "getPoolAdjustmentFlowInfo";
|
|
624
|
+
readonly outputs: readonly [{
|
|
625
|
+
readonly internalType: "address";
|
|
626
|
+
readonly name: "";
|
|
627
|
+
readonly type: "address";
|
|
628
|
+
}, {
|
|
629
|
+
readonly internalType: "bytes32";
|
|
630
|
+
readonly name: "";
|
|
631
|
+
readonly type: "bytes32";
|
|
632
|
+
}, {
|
|
633
|
+
readonly internalType: "int96";
|
|
634
|
+
readonly name: "";
|
|
635
|
+
readonly type: "int96";
|
|
636
|
+
}];
|
|
637
|
+
readonly stateMutability: "view";
|
|
638
|
+
readonly type: "function";
|
|
639
|
+
}, {
|
|
640
|
+
readonly inputs: readonly [{
|
|
641
|
+
readonly internalType: "address";
|
|
642
|
+
readonly name: "pool";
|
|
643
|
+
readonly type: "address";
|
|
644
|
+
}];
|
|
645
|
+
readonly name: "getPoolAdjustmentFlowRate";
|
|
646
|
+
readonly outputs: readonly [{
|
|
647
|
+
readonly internalType: "int96";
|
|
648
|
+
readonly name: "";
|
|
649
|
+
readonly type: "int96";
|
|
650
|
+
}];
|
|
651
|
+
readonly stateMutability: "view";
|
|
652
|
+
readonly type: "function";
|
|
653
|
+
}, {
|
|
654
|
+
readonly inputs: readonly [{
|
|
655
|
+
readonly internalType: "contract ISuperfluidPool";
|
|
656
|
+
readonly name: "pool";
|
|
657
|
+
readonly type: "address";
|
|
658
|
+
}, {
|
|
659
|
+
readonly internalType: "address";
|
|
660
|
+
readonly name: "member";
|
|
661
|
+
readonly type: "address";
|
|
662
|
+
}];
|
|
663
|
+
readonly name: "isMemberConnected";
|
|
664
|
+
readonly outputs: readonly [{
|
|
665
|
+
readonly internalType: "bool";
|
|
666
|
+
readonly name: "";
|
|
667
|
+
readonly type: "bool";
|
|
668
|
+
}];
|
|
669
|
+
readonly stateMutability: "view";
|
|
670
|
+
readonly type: "function";
|
|
671
|
+
}, {
|
|
672
|
+
readonly inputs: readonly [{
|
|
673
|
+
readonly internalType: "contract ISuperfluidToken";
|
|
674
|
+
readonly name: "token";
|
|
675
|
+
readonly type: "address";
|
|
676
|
+
}, {
|
|
677
|
+
readonly internalType: "address";
|
|
678
|
+
readonly name: "account";
|
|
679
|
+
readonly type: "address";
|
|
680
|
+
}];
|
|
681
|
+
readonly name: "isPool";
|
|
682
|
+
readonly outputs: readonly [{
|
|
683
|
+
readonly internalType: "bool";
|
|
684
|
+
readonly name: "";
|
|
685
|
+
readonly type: "bool";
|
|
686
|
+
}];
|
|
687
|
+
readonly stateMutability: "view";
|
|
688
|
+
readonly type: "function";
|
|
689
|
+
}, {
|
|
690
|
+
readonly inputs: readonly [{
|
|
691
|
+
readonly internalType: "contract ISuperfluidPool";
|
|
692
|
+
readonly name: "pool";
|
|
693
|
+
readonly type: "address";
|
|
694
|
+
}, {
|
|
695
|
+
readonly internalType: "address";
|
|
696
|
+
readonly name: "memberAddress";
|
|
697
|
+
readonly type: "address";
|
|
698
|
+
}, {
|
|
699
|
+
readonly internalType: "uint128";
|
|
700
|
+
readonly name: "newUnits";
|
|
701
|
+
readonly type: "uint128";
|
|
702
|
+
}, {
|
|
703
|
+
readonly internalType: "bytes";
|
|
704
|
+
readonly name: "userData";
|
|
705
|
+
readonly type: "bytes";
|
|
706
|
+
}];
|
|
707
|
+
readonly name: "updateMemberUnits";
|
|
708
|
+
readonly outputs: readonly [{
|
|
709
|
+
readonly internalType: "bool";
|
|
710
|
+
readonly name: "success";
|
|
711
|
+
readonly type: "bool";
|
|
712
|
+
}];
|
|
713
|
+
readonly stateMutability: "nonpayable";
|
|
714
|
+
readonly type: "function";
|
|
715
|
+
}];
|
|
716
|
+
export declare const SuperTokenFactoryAddress: "0xe20B9a38E0c96F61d1bA6b42a61512D56Fea1Eb3";
|
|
717
|
+
export declare const SuperTokenFactoryAddress_Base_Sepolia: "0x7447E94Dfe3d804a9f46Bf12838d467c912C8F6C";
|
|
718
|
+
export declare const SuperTokenFactoryABI: ({
|
|
719
|
+
inputs: {
|
|
720
|
+
internalType: string;
|
|
721
|
+
name: string;
|
|
722
|
+
type: string;
|
|
723
|
+
}[];
|
|
724
|
+
stateMutability: string;
|
|
725
|
+
type: string;
|
|
726
|
+
name?: undefined;
|
|
727
|
+
anonymous?: undefined;
|
|
728
|
+
outputs?: undefined;
|
|
729
|
+
} | {
|
|
730
|
+
inputs: never[];
|
|
731
|
+
name: string;
|
|
732
|
+
type: string;
|
|
733
|
+
stateMutability?: undefined;
|
|
734
|
+
anonymous?: undefined;
|
|
735
|
+
outputs?: undefined;
|
|
736
|
+
} | {
|
|
737
|
+
anonymous: boolean;
|
|
738
|
+
inputs: {
|
|
739
|
+
indexed: boolean;
|
|
740
|
+
internalType: string;
|
|
741
|
+
name: string;
|
|
742
|
+
type: string;
|
|
743
|
+
}[];
|
|
744
|
+
name: string;
|
|
745
|
+
type: string;
|
|
746
|
+
stateMutability?: undefined;
|
|
747
|
+
outputs?: undefined;
|
|
748
|
+
} | {
|
|
749
|
+
inputs: {
|
|
750
|
+
internalType: string;
|
|
751
|
+
name: string;
|
|
752
|
+
type: string;
|
|
753
|
+
}[];
|
|
754
|
+
name: string;
|
|
755
|
+
outputs: {
|
|
756
|
+
internalType: string;
|
|
757
|
+
name: string;
|
|
758
|
+
type: string;
|
|
759
|
+
}[];
|
|
760
|
+
stateMutability: string;
|
|
761
|
+
type: string;
|
|
762
|
+
anonymous?: undefined;
|
|
763
|
+
} | {
|
|
764
|
+
inputs: {
|
|
765
|
+
components: {
|
|
766
|
+
internalType: string;
|
|
767
|
+
name: string;
|
|
768
|
+
type: string;
|
|
769
|
+
}[];
|
|
770
|
+
internalType: string;
|
|
771
|
+
name: string;
|
|
772
|
+
type: string;
|
|
773
|
+
}[];
|
|
774
|
+
name: string;
|
|
775
|
+
outputs: never[];
|
|
776
|
+
stateMutability: string;
|
|
777
|
+
type: string;
|
|
778
|
+
anonymous?: undefined;
|
|
779
|
+
})[];
|
|
780
|
+
export declare const ISuperTokenAbi: ({
|
|
781
|
+
inputs: never[];
|
|
782
|
+
name: string;
|
|
783
|
+
type: string;
|
|
784
|
+
anonymous?: undefined;
|
|
785
|
+
outputs?: undefined;
|
|
786
|
+
stateMutability?: undefined;
|
|
787
|
+
} | {
|
|
788
|
+
anonymous: boolean;
|
|
789
|
+
inputs: {
|
|
790
|
+
indexed: boolean;
|
|
791
|
+
internalType: string;
|
|
792
|
+
name: string;
|
|
793
|
+
type: string;
|
|
794
|
+
}[];
|
|
795
|
+
name: string;
|
|
796
|
+
type: string;
|
|
797
|
+
outputs?: undefined;
|
|
798
|
+
stateMutability?: undefined;
|
|
799
|
+
} | {
|
|
800
|
+
inputs: {
|
|
801
|
+
internalType: string;
|
|
802
|
+
name: string;
|
|
803
|
+
type: string;
|
|
804
|
+
}[];
|
|
805
|
+
name: string;
|
|
806
|
+
outputs: {
|
|
807
|
+
internalType: string;
|
|
808
|
+
name: string;
|
|
809
|
+
type: string;
|
|
810
|
+
}[];
|
|
811
|
+
stateMutability: string;
|
|
812
|
+
type: string;
|
|
813
|
+
anonymous?: undefined;
|
|
814
|
+
})[];
|