@4everland/land-v6 1.0.1
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/.gitattributes +1 -0
- package/.gitmodules +3 -0
- package/README.md +9 -0
- package/package.json +96 -0
- package/tsconfig.json +11 -0
- package/types/BasicToken.d.ts +300 -0
- package/types/BlackList.d.ts +512 -0
- package/types/BlastOracleLand.d.ts +933 -0
- package/types/ChainlinkPriceFeed.d.ts +427 -0
- package/types/Console.d.ts +101 -0
- package/types/CustomPriceFeed.d.ts +214 -0
- package/types/ERC1967Proxy.d.ts +126 -0
- package/types/ERC1967Upgrade.d.ts +126 -0
- package/types/ERC20.d.ts +343 -0
- package/types/ERC20Basic.d.ts +199 -0
- package/types/ETHOracleLand.d.ts +901 -0
- package/types/FixedPriceFeed.d.ts +212 -0
- package/types/IAggregatorV3Interface.d.ts +234 -0
- package/types/IBeacon.d.ts +101 -0
- package/types/IBlast.d.ts +919 -0
- package/types/ICoin.d.ts +95 -0
- package/types/IERC1822Proxiable.d.ts +101 -0
- package/types/IERC1967.d.ts +126 -0
- package/types/IERC20.d.ts +324 -0
- package/types/IERC20Metadata.d.ts +363 -0
- package/types/IERC20Rebasing.d.ts +184 -0
- package/types/ILand.d.ts +386 -0
- package/types/ILandCore.d.ts +255 -0
- package/types/IPriceFeed.d.ts +108 -0
- package/types/IPyth.d.ts +194 -0
- package/types/IQuoter.d.ts +269 -0
- package/types/ITransparentUpgradeableProxy.d.ts +256 -0
- package/types/IUniswapV3Pool.d.ts +203 -0
- package/types/IUniswapV3PoolActions.d.ts +396 -0
- package/types/IUniswapV3PoolDerivedState.d.ts +185 -0
- package/types/IUniswapV3PoolEvents.d.ts +482 -0
- package/types/IUniswapV3PoolImmutables.d.ts +174 -0
- package/types/IUniswapV3PoolOwnerActions.d.ts +168 -0
- package/types/IUniswapV3PoolState.d.ts +438 -0
- package/types/IWETH.d.ts +374 -0
- package/types/Initializable.d.ts +92 -0
- package/types/Land.d.ts +586 -0
- package/types/LandCore.d.ts +255 -0
- package/types/LandMath.d.ts +101 -0
- package/types/LandOwnable.d.ts +134 -0
- package/types/LandOwnableUpgradeable.d.ts +148 -0
- package/types/MockDAI.d.ts +441 -0
- package/types/MockUSDC.d.ts +441 -0
- package/types/MockUSDT.d.ts +441 -0
- package/types/OracleLand.d.ts +724 -0
- package/types/Ownable.d.ts +130 -0
- package/types/Pausable.d.ts +203 -0
- package/types/Proxy.d.ts +78 -0
- package/types/ProxyAdmin.d.ts +357 -0
- package/types/PythPriceFeed.d.ts +423 -0
- package/types/StandardToken.d.ts +493 -0
- package/types/TetherToken.d.ts +1018 -0
- package/types/TransparentUpgradeableProxy.d.ts +126 -0
- package/types/UpgradedStandardToken.d.ts +630 -0
- package/types/common.d.ts +35 -0
- package/types/factories/BasicToken__factory.js +183 -0
- package/types/factories/BasicToken__factory.ts +185 -0
- package/types/factories/BlackList__factory.js +318 -0
- package/types/factories/BlackList__factory.ts +320 -0
- package/types/factories/BlastOracleLand__factory.js +656 -0
- package/types/factories/BlastOracleLand__factory.ts +649 -0
- package/types/factories/ChainlinkPriceFeed__factory.js +378 -0
- package/types/factories/ChainlinkPriceFeed__factory.ts +398 -0
- package/types/factories/Console__factory.js +76 -0
- package/types/factories/Console__factory.ts +66 -0
- package/types/factories/CustomPriceFeed__factory.js +207 -0
- package/types/factories/CustomPriceFeed__factory.ts +211 -0
- package/types/factories/ERC1967Proxy__factory.js +132 -0
- package/types/factories/ERC1967Proxy__factory.ts +137 -0
- package/types/factories/ERC1967Upgrade__factory.js +66 -0
- package/types/factories/ERC1967Upgrade__factory.ts +71 -0
- package/types/factories/ERC20Basic__factory.js +108 -0
- package/types/factories/ERC20Basic__factory.ts +110 -0
- package/types/factories/ERC20__factory.js +193 -0
- package/types/factories/ERC20__factory.ts +192 -0
- package/types/factories/ETHOracleLand__factory.js +625 -0
- package/types/factories/ETHOracleLand__factory.ts +615 -0
- package/types/factories/FixedPriceFeed__factory.js +192 -0
- package/types/factories/FixedPriceFeed__factory.ts +203 -0
- package/types/factories/IAggregatorV3Interface__factory.js +132 -0
- package/types/factories/IAggregatorV3Interface__factory.ts +141 -0
- package/types/factories/IBeacon__factory.js +34 -0
- package/types/factories/IBeacon__factory.ts +36 -0
- package/types/factories/IBlast__factory.js +439 -0
- package/types/factories/IBlast__factory.ts +438 -0
- package/types/factories/ICoin__factory.js +34 -0
- package/types/factories/ICoin__factory.ts +33 -0
- package/types/factories/IERC1822Proxiable__factory.js +34 -0
- package/types/factories/IERC1822Proxiable__factory.ts +39 -0
- package/types/factories/IERC1967__factory.js +66 -0
- package/types/factories/IERC1967__factory.ts +68 -0
- package/types/factories/IERC20Metadata__factory.js +243 -0
- package/types/factories/IERC20Metadata__factory.ts +248 -0
- package/types/factories/IERC20Rebasing__factory.js +83 -0
- package/types/factories/IERC20Rebasing__factory.ts +88 -0
- package/types/factories/IERC20__factory.js +204 -0
- package/types/factories/IERC20__factory.ts +203 -0
- package/types/factories/ILandCore__factory.js +143 -0
- package/types/factories/ILandCore__factory.ts +145 -0
- package/types/factories/ILand__factory.js +255 -0
- package/types/factories/ILand__factory.ts +254 -0
- package/types/factories/IPriceFeed__factory.js +40 -0
- package/types/factories/IPriceFeed__factory.ts +42 -0
- package/types/factories/IPyth__factory.js +103 -0
- package/types/factories/IPyth__factory.ts +102 -0
- package/types/factories/IQuoter__factory.js +147 -0
- package/types/factories/IQuoter__factory.ts +149 -0
- package/types/factories/ITransparentUpgradeableProxy__factory.js +136 -0
- package/types/factories/ITransparentUpgradeableProxy__factory.ts +145 -0
- package/types/factories/IUniswapV3PoolActions__factory.js +241 -0
- package/types/factories/IUniswapV3PoolActions__factory.ts +250 -0
- package/types/factories/IUniswapV3PoolDerivedState__factory.js +79 -0
- package/types/factories/IUniswapV3PoolDerivedState__factory.ts +88 -0
- package/types/factories/IUniswapV3PoolEvents__factory.js +348 -0
- package/types/factories/IUniswapV3PoolEvents__factory.ts +357 -0
- package/types/factories/IUniswapV3PoolImmutables__factory.js +99 -0
- package/types/factories/IUniswapV3PoolImmutables__factory.ts +108 -0
- package/types/factories/IUniswapV3PoolOwnerActions__factory.js +73 -0
- package/types/factories/IUniswapV3PoolOwnerActions__factory.ts +82 -0
- package/types/factories/IUniswapV3PoolState__factory.js +267 -0
- package/types/factories/IUniswapV3PoolState__factory.ts +272 -0
- package/types/factories/IUniswapV3Pool__factory.js +114 -0
- package/types/factories/IUniswapV3Pool__factory.ts +119 -0
- package/types/factories/IWETH__factory.js +224 -0
- package/types/factories/IWETH__factory.ts +223 -0
- package/types/factories/Initializable__factory.js +34 -0
- package/types/factories/Initializable__factory.ts +36 -0
- package/types/factories/LandCore__factory.js +201 -0
- package/types/factories/LandCore__factory.ts +199 -0
- package/types/factories/LandMath__factory.js +76 -0
- package/types/factories/LandMath__factory.ts +66 -0
- package/types/factories/LandOwnableUpgradeable__factory.js +128 -0
- package/types/factories/LandOwnableUpgradeable__factory.ts +125 -0
- package/types/factories/LandOwnable__factory.js +126 -0
- package/types/factories/LandOwnable__factory.ts +118 -0
- package/types/factories/Land__factory.js +462 -0
- package/types/factories/Land__factory.ts +449 -0
- package/types/factories/MockDAI__factory.js +338 -0
- package/types/factories/MockDAI__factory.ts +328 -0
- package/types/factories/MockUSDC__factory.js +338 -0
- package/types/factories/MockUSDC__factory.ts +328 -0
- package/types/factories/MockUSDT__factory.js +338 -0
- package/types/factories/MockUSDT__factory.ts +328 -0
- package/types/factories/OracleLand__factory.js +537 -0
- package/types/factories/OracleLand__factory.ts +527 -0
- package/types/factories/Ownable__factory.js +73 -0
- package/types/factories/Ownable__factory.ts +75 -0
- package/types/factories/Pausable__factory.js +135 -0
- package/types/factories/Pausable__factory.ts +125 -0
- package/types/factories/ProxyAdmin__factory.js +212 -0
- package/types/factories/ProxyAdmin__factory.ts +202 -0
- package/types/factories/Proxy__factory.js +29 -0
- package/types/factories/Proxy__factory.ts +28 -0
- package/types/factories/PythPriceFeed__factory.js +378 -0
- package/types/factories/PythPriceFeed__factory.ts +400 -0
- package/types/factories/StandardToken__factory.js +305 -0
- package/types/factories/StandardToken__factory.ts +307 -0
- package/types/factories/TetherToken__factory.js +732 -0
- package/types/factories/TetherToken__factory.ts +749 -0
- package/types/factories/TransparentUpgradeableProxy__factory.js +137 -0
- package/types/factories/TransparentUpgradeableProxy__factory.ts +152 -0
- package/types/factories/UpgradedStandardToken__factory.js +375 -0
- package/types/factories/UpgradedStandardToken__factory.ts +384 -0
- package/types/hardhat.d.ts +573 -0
- package/types/index.js +112 -0
- package/types/index.ts +112 -0
@@ -0,0 +1,919 @@
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
2
|
+
/* tslint:disable */
|
3
|
+
/* eslint-disable */
|
4
|
+
|
5
|
+
import {
|
6
|
+
ethers,
|
7
|
+
EventFilter,
|
8
|
+
Signer,
|
9
|
+
BigNumber,
|
10
|
+
BigNumberish,
|
11
|
+
PopulatedTransaction,
|
12
|
+
BaseContract,
|
13
|
+
ContractTransaction,
|
14
|
+
Overrides,
|
15
|
+
CallOverrides,
|
16
|
+
} from "ethers";
|
17
|
+
import { BytesLike } from "@ethersproject/bytes";
|
18
|
+
import { Listener, Provider } from "@ethersproject/providers";
|
19
|
+
import { FunctionFragment, EventFragment, Result } from "@ethersproject/abi";
|
20
|
+
import type { TypedEventFilter, TypedEvent, TypedListener } from "./common";
|
21
|
+
|
22
|
+
interface IBlastInterface extends ethers.utils.Interface {
|
23
|
+
functions: {
|
24
|
+
"claimAllGas(address,address)": FunctionFragment;
|
25
|
+
"claimAllYield(address,address)": FunctionFragment;
|
26
|
+
"claimGas(address,address,uint256,uint256)": FunctionFragment;
|
27
|
+
"claimGasAtMinClaimRate(address,address,uint256)": FunctionFragment;
|
28
|
+
"claimMaxGas(address,address)": FunctionFragment;
|
29
|
+
"claimYield(address,address,uint256)": FunctionFragment;
|
30
|
+
"configure(uint8,uint8,address)": FunctionFragment;
|
31
|
+
"configureAutomaticYield()": FunctionFragment;
|
32
|
+
"configureAutomaticYieldOnBehalf(address)": FunctionFragment;
|
33
|
+
"configureClaimableGas()": FunctionFragment;
|
34
|
+
"configureClaimableGasOnBehalf(address)": FunctionFragment;
|
35
|
+
"configureClaimableYield()": FunctionFragment;
|
36
|
+
"configureClaimableYieldOnBehalf(address)": FunctionFragment;
|
37
|
+
"configureContract(address,uint8,uint8,address)": FunctionFragment;
|
38
|
+
"configureGovernor(address)": FunctionFragment;
|
39
|
+
"configureGovernorOnBehalf(address,address)": FunctionFragment;
|
40
|
+
"configureVoidGas()": FunctionFragment;
|
41
|
+
"configureVoidGasOnBehalf(address)": FunctionFragment;
|
42
|
+
"configureVoidYield()": FunctionFragment;
|
43
|
+
"configureVoidYieldOnBehalf(address)": FunctionFragment;
|
44
|
+
"readClaimableYield(address)": FunctionFragment;
|
45
|
+
"readGasParams(address)": FunctionFragment;
|
46
|
+
"readYieldConfiguration(address)": FunctionFragment;
|
47
|
+
};
|
48
|
+
|
49
|
+
encodeFunctionData(
|
50
|
+
functionFragment: "claimAllGas",
|
51
|
+
values: [string, string]
|
52
|
+
): string;
|
53
|
+
encodeFunctionData(
|
54
|
+
functionFragment: "claimAllYield",
|
55
|
+
values: [string, string]
|
56
|
+
): string;
|
57
|
+
encodeFunctionData(
|
58
|
+
functionFragment: "claimGas",
|
59
|
+
values: [string, string, BigNumberish, BigNumberish]
|
60
|
+
): string;
|
61
|
+
encodeFunctionData(
|
62
|
+
functionFragment: "claimGasAtMinClaimRate",
|
63
|
+
values: [string, string, BigNumberish]
|
64
|
+
): string;
|
65
|
+
encodeFunctionData(
|
66
|
+
functionFragment: "claimMaxGas",
|
67
|
+
values: [string, string]
|
68
|
+
): string;
|
69
|
+
encodeFunctionData(
|
70
|
+
functionFragment: "claimYield",
|
71
|
+
values: [string, string, BigNumberish]
|
72
|
+
): string;
|
73
|
+
encodeFunctionData(
|
74
|
+
functionFragment: "configure",
|
75
|
+
values: [BigNumberish, BigNumberish, string]
|
76
|
+
): string;
|
77
|
+
encodeFunctionData(
|
78
|
+
functionFragment: "configureAutomaticYield",
|
79
|
+
values?: undefined
|
80
|
+
): string;
|
81
|
+
encodeFunctionData(
|
82
|
+
functionFragment: "configureAutomaticYieldOnBehalf",
|
83
|
+
values: [string]
|
84
|
+
): string;
|
85
|
+
encodeFunctionData(
|
86
|
+
functionFragment: "configureClaimableGas",
|
87
|
+
values?: undefined
|
88
|
+
): string;
|
89
|
+
encodeFunctionData(
|
90
|
+
functionFragment: "configureClaimableGasOnBehalf",
|
91
|
+
values: [string]
|
92
|
+
): string;
|
93
|
+
encodeFunctionData(
|
94
|
+
functionFragment: "configureClaimableYield",
|
95
|
+
values?: undefined
|
96
|
+
): string;
|
97
|
+
encodeFunctionData(
|
98
|
+
functionFragment: "configureClaimableYieldOnBehalf",
|
99
|
+
values: [string]
|
100
|
+
): string;
|
101
|
+
encodeFunctionData(
|
102
|
+
functionFragment: "configureContract",
|
103
|
+
values: [string, BigNumberish, BigNumberish, string]
|
104
|
+
): string;
|
105
|
+
encodeFunctionData(
|
106
|
+
functionFragment: "configureGovernor",
|
107
|
+
values: [string]
|
108
|
+
): string;
|
109
|
+
encodeFunctionData(
|
110
|
+
functionFragment: "configureGovernorOnBehalf",
|
111
|
+
values: [string, string]
|
112
|
+
): string;
|
113
|
+
encodeFunctionData(
|
114
|
+
functionFragment: "configureVoidGas",
|
115
|
+
values?: undefined
|
116
|
+
): string;
|
117
|
+
encodeFunctionData(
|
118
|
+
functionFragment: "configureVoidGasOnBehalf",
|
119
|
+
values: [string]
|
120
|
+
): string;
|
121
|
+
encodeFunctionData(
|
122
|
+
functionFragment: "configureVoidYield",
|
123
|
+
values?: undefined
|
124
|
+
): string;
|
125
|
+
encodeFunctionData(
|
126
|
+
functionFragment: "configureVoidYieldOnBehalf",
|
127
|
+
values: [string]
|
128
|
+
): string;
|
129
|
+
encodeFunctionData(
|
130
|
+
functionFragment: "readClaimableYield",
|
131
|
+
values: [string]
|
132
|
+
): string;
|
133
|
+
encodeFunctionData(
|
134
|
+
functionFragment: "readGasParams",
|
135
|
+
values: [string]
|
136
|
+
): string;
|
137
|
+
encodeFunctionData(
|
138
|
+
functionFragment: "readYieldConfiguration",
|
139
|
+
values: [string]
|
140
|
+
): string;
|
141
|
+
|
142
|
+
decodeFunctionResult(
|
143
|
+
functionFragment: "claimAllGas",
|
144
|
+
data: BytesLike
|
145
|
+
): Result;
|
146
|
+
decodeFunctionResult(
|
147
|
+
functionFragment: "claimAllYield",
|
148
|
+
data: BytesLike
|
149
|
+
): Result;
|
150
|
+
decodeFunctionResult(functionFragment: "claimGas", data: BytesLike): Result;
|
151
|
+
decodeFunctionResult(
|
152
|
+
functionFragment: "claimGasAtMinClaimRate",
|
153
|
+
data: BytesLike
|
154
|
+
): Result;
|
155
|
+
decodeFunctionResult(
|
156
|
+
functionFragment: "claimMaxGas",
|
157
|
+
data: BytesLike
|
158
|
+
): Result;
|
159
|
+
decodeFunctionResult(functionFragment: "claimYield", data: BytesLike): Result;
|
160
|
+
decodeFunctionResult(functionFragment: "configure", data: BytesLike): Result;
|
161
|
+
decodeFunctionResult(
|
162
|
+
functionFragment: "configureAutomaticYield",
|
163
|
+
data: BytesLike
|
164
|
+
): Result;
|
165
|
+
decodeFunctionResult(
|
166
|
+
functionFragment: "configureAutomaticYieldOnBehalf",
|
167
|
+
data: BytesLike
|
168
|
+
): Result;
|
169
|
+
decodeFunctionResult(
|
170
|
+
functionFragment: "configureClaimableGas",
|
171
|
+
data: BytesLike
|
172
|
+
): Result;
|
173
|
+
decodeFunctionResult(
|
174
|
+
functionFragment: "configureClaimableGasOnBehalf",
|
175
|
+
data: BytesLike
|
176
|
+
): Result;
|
177
|
+
decodeFunctionResult(
|
178
|
+
functionFragment: "configureClaimableYield",
|
179
|
+
data: BytesLike
|
180
|
+
): Result;
|
181
|
+
decodeFunctionResult(
|
182
|
+
functionFragment: "configureClaimableYieldOnBehalf",
|
183
|
+
data: BytesLike
|
184
|
+
): Result;
|
185
|
+
decodeFunctionResult(
|
186
|
+
functionFragment: "configureContract",
|
187
|
+
data: BytesLike
|
188
|
+
): Result;
|
189
|
+
decodeFunctionResult(
|
190
|
+
functionFragment: "configureGovernor",
|
191
|
+
data: BytesLike
|
192
|
+
): Result;
|
193
|
+
decodeFunctionResult(
|
194
|
+
functionFragment: "configureGovernorOnBehalf",
|
195
|
+
data: BytesLike
|
196
|
+
): Result;
|
197
|
+
decodeFunctionResult(
|
198
|
+
functionFragment: "configureVoidGas",
|
199
|
+
data: BytesLike
|
200
|
+
): Result;
|
201
|
+
decodeFunctionResult(
|
202
|
+
functionFragment: "configureVoidGasOnBehalf",
|
203
|
+
data: BytesLike
|
204
|
+
): Result;
|
205
|
+
decodeFunctionResult(
|
206
|
+
functionFragment: "configureVoidYield",
|
207
|
+
data: BytesLike
|
208
|
+
): Result;
|
209
|
+
decodeFunctionResult(
|
210
|
+
functionFragment: "configureVoidYieldOnBehalf",
|
211
|
+
data: BytesLike
|
212
|
+
): Result;
|
213
|
+
decodeFunctionResult(
|
214
|
+
functionFragment: "readClaimableYield",
|
215
|
+
data: BytesLike
|
216
|
+
): Result;
|
217
|
+
decodeFunctionResult(
|
218
|
+
functionFragment: "readGasParams",
|
219
|
+
data: BytesLike
|
220
|
+
): Result;
|
221
|
+
decodeFunctionResult(
|
222
|
+
functionFragment: "readYieldConfiguration",
|
223
|
+
data: BytesLike
|
224
|
+
): Result;
|
225
|
+
|
226
|
+
events: {};
|
227
|
+
}
|
228
|
+
|
229
|
+
export class IBlast extends BaseContract {
|
230
|
+
connect(signerOrProvider: Signer | Provider | string): this;
|
231
|
+
attach(addressOrName: string): this;
|
232
|
+
deployed(): Promise<this>;
|
233
|
+
|
234
|
+
listeners<EventArgsArray extends Array<any>, EventArgsObject>(
|
235
|
+
eventFilter?: TypedEventFilter<EventArgsArray, EventArgsObject>
|
236
|
+
): Array<TypedListener<EventArgsArray, EventArgsObject>>;
|
237
|
+
off<EventArgsArray extends Array<any>, EventArgsObject>(
|
238
|
+
eventFilter: TypedEventFilter<EventArgsArray, EventArgsObject>,
|
239
|
+
listener: TypedListener<EventArgsArray, EventArgsObject>
|
240
|
+
): this;
|
241
|
+
on<EventArgsArray extends Array<any>, EventArgsObject>(
|
242
|
+
eventFilter: TypedEventFilter<EventArgsArray, EventArgsObject>,
|
243
|
+
listener: TypedListener<EventArgsArray, EventArgsObject>
|
244
|
+
): this;
|
245
|
+
once<EventArgsArray extends Array<any>, EventArgsObject>(
|
246
|
+
eventFilter: TypedEventFilter<EventArgsArray, EventArgsObject>,
|
247
|
+
listener: TypedListener<EventArgsArray, EventArgsObject>
|
248
|
+
): this;
|
249
|
+
removeListener<EventArgsArray extends Array<any>, EventArgsObject>(
|
250
|
+
eventFilter: TypedEventFilter<EventArgsArray, EventArgsObject>,
|
251
|
+
listener: TypedListener<EventArgsArray, EventArgsObject>
|
252
|
+
): this;
|
253
|
+
removeAllListeners<EventArgsArray extends Array<any>, EventArgsObject>(
|
254
|
+
eventFilter: TypedEventFilter<EventArgsArray, EventArgsObject>
|
255
|
+
): this;
|
256
|
+
|
257
|
+
listeners(eventName?: string): Array<Listener>;
|
258
|
+
off(eventName: string, listener: Listener): this;
|
259
|
+
on(eventName: string, listener: Listener): this;
|
260
|
+
once(eventName: string, listener: Listener): this;
|
261
|
+
removeListener(eventName: string, listener: Listener): this;
|
262
|
+
removeAllListeners(eventName?: string): this;
|
263
|
+
|
264
|
+
queryFilter<EventArgsArray extends Array<any>, EventArgsObject>(
|
265
|
+
event: TypedEventFilter<EventArgsArray, EventArgsObject>,
|
266
|
+
fromBlockOrBlockhash?: string | number | undefined,
|
267
|
+
toBlock?: string | number | undefined
|
268
|
+
): Promise<Array<TypedEvent<EventArgsArray & EventArgsObject>>>;
|
269
|
+
|
270
|
+
interface: IBlastInterface;
|
271
|
+
|
272
|
+
functions: {
|
273
|
+
claimAllGas(
|
274
|
+
contractAddress: string,
|
275
|
+
recipientOfGas: string,
|
276
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
277
|
+
): Promise<ContractTransaction>;
|
278
|
+
|
279
|
+
claimAllYield(
|
280
|
+
contractAddress: string,
|
281
|
+
recipientOfYield: string,
|
282
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
283
|
+
): Promise<ContractTransaction>;
|
284
|
+
|
285
|
+
claimGas(
|
286
|
+
contractAddress: string,
|
287
|
+
recipientOfGas: string,
|
288
|
+
gasToClaim: BigNumberish,
|
289
|
+
gasSecondsToConsume: BigNumberish,
|
290
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
291
|
+
): Promise<ContractTransaction>;
|
292
|
+
|
293
|
+
claimGasAtMinClaimRate(
|
294
|
+
contractAddress: string,
|
295
|
+
recipientOfGas: string,
|
296
|
+
minClaimRateBips: BigNumberish,
|
297
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
298
|
+
): Promise<ContractTransaction>;
|
299
|
+
|
300
|
+
claimMaxGas(
|
301
|
+
contractAddress: string,
|
302
|
+
recipientOfGas: string,
|
303
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
304
|
+
): Promise<ContractTransaction>;
|
305
|
+
|
306
|
+
claimYield(
|
307
|
+
contractAddress: string,
|
308
|
+
recipientOfYield: string,
|
309
|
+
amount: BigNumberish,
|
310
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
311
|
+
): Promise<ContractTransaction>;
|
312
|
+
|
313
|
+
configure(
|
314
|
+
_yield: BigNumberish,
|
315
|
+
gasMode: BigNumberish,
|
316
|
+
governor: string,
|
317
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
318
|
+
): Promise<ContractTransaction>;
|
319
|
+
|
320
|
+
configureAutomaticYield(
|
321
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
322
|
+
): Promise<ContractTransaction>;
|
323
|
+
|
324
|
+
configureAutomaticYieldOnBehalf(
|
325
|
+
contractAddress: string,
|
326
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
327
|
+
): Promise<ContractTransaction>;
|
328
|
+
|
329
|
+
configureClaimableGas(
|
330
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
331
|
+
): Promise<ContractTransaction>;
|
332
|
+
|
333
|
+
configureClaimableGasOnBehalf(
|
334
|
+
contractAddress: string,
|
335
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
336
|
+
): Promise<ContractTransaction>;
|
337
|
+
|
338
|
+
configureClaimableYield(
|
339
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
340
|
+
): Promise<ContractTransaction>;
|
341
|
+
|
342
|
+
configureClaimableYieldOnBehalf(
|
343
|
+
contractAddress: string,
|
344
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
345
|
+
): Promise<ContractTransaction>;
|
346
|
+
|
347
|
+
configureContract(
|
348
|
+
contractAddress: string,
|
349
|
+
_yield: BigNumberish,
|
350
|
+
gasMode: BigNumberish,
|
351
|
+
governor: string,
|
352
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
353
|
+
): Promise<ContractTransaction>;
|
354
|
+
|
355
|
+
configureGovernor(
|
356
|
+
_governor: string,
|
357
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
358
|
+
): Promise<ContractTransaction>;
|
359
|
+
|
360
|
+
configureGovernorOnBehalf(
|
361
|
+
_newGovernor: string,
|
362
|
+
contractAddress: string,
|
363
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
364
|
+
): Promise<ContractTransaction>;
|
365
|
+
|
366
|
+
configureVoidGas(
|
367
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
368
|
+
): Promise<ContractTransaction>;
|
369
|
+
|
370
|
+
configureVoidGasOnBehalf(
|
371
|
+
contractAddress: string,
|
372
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
373
|
+
): Promise<ContractTransaction>;
|
374
|
+
|
375
|
+
configureVoidYield(
|
376
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
377
|
+
): Promise<ContractTransaction>;
|
378
|
+
|
379
|
+
configureVoidYieldOnBehalf(
|
380
|
+
contractAddress: string,
|
381
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
382
|
+
): Promise<ContractTransaction>;
|
383
|
+
|
384
|
+
readClaimableYield(
|
385
|
+
contractAddress: string,
|
386
|
+
overrides?: CallOverrides
|
387
|
+
): Promise<[BigNumber]>;
|
388
|
+
|
389
|
+
readGasParams(
|
390
|
+
contractAddress: string,
|
391
|
+
overrides?: CallOverrides
|
392
|
+
): Promise<
|
393
|
+
[BigNumber, BigNumber, BigNumber, number] & {
|
394
|
+
etherSeconds: BigNumber;
|
395
|
+
etherBalance: BigNumber;
|
396
|
+
lastUpdated: BigNumber;
|
397
|
+
}
|
398
|
+
>;
|
399
|
+
|
400
|
+
readYieldConfiguration(
|
401
|
+
contractAddress: string,
|
402
|
+
overrides?: CallOverrides
|
403
|
+
): Promise<[number]>;
|
404
|
+
};
|
405
|
+
|
406
|
+
claimAllGas(
|
407
|
+
contractAddress: string,
|
408
|
+
recipientOfGas: string,
|
409
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
410
|
+
): Promise<ContractTransaction>;
|
411
|
+
|
412
|
+
claimAllYield(
|
413
|
+
contractAddress: string,
|
414
|
+
recipientOfYield: string,
|
415
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
416
|
+
): Promise<ContractTransaction>;
|
417
|
+
|
418
|
+
claimGas(
|
419
|
+
contractAddress: string,
|
420
|
+
recipientOfGas: string,
|
421
|
+
gasToClaim: BigNumberish,
|
422
|
+
gasSecondsToConsume: BigNumberish,
|
423
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
424
|
+
): Promise<ContractTransaction>;
|
425
|
+
|
426
|
+
claimGasAtMinClaimRate(
|
427
|
+
contractAddress: string,
|
428
|
+
recipientOfGas: string,
|
429
|
+
minClaimRateBips: BigNumberish,
|
430
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
431
|
+
): Promise<ContractTransaction>;
|
432
|
+
|
433
|
+
claimMaxGas(
|
434
|
+
contractAddress: string,
|
435
|
+
recipientOfGas: string,
|
436
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
437
|
+
): Promise<ContractTransaction>;
|
438
|
+
|
439
|
+
claimYield(
|
440
|
+
contractAddress: string,
|
441
|
+
recipientOfYield: string,
|
442
|
+
amount: BigNumberish,
|
443
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
444
|
+
): Promise<ContractTransaction>;
|
445
|
+
|
446
|
+
configure(
|
447
|
+
_yield: BigNumberish,
|
448
|
+
gasMode: BigNumberish,
|
449
|
+
governor: string,
|
450
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
451
|
+
): Promise<ContractTransaction>;
|
452
|
+
|
453
|
+
configureAutomaticYield(
|
454
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
455
|
+
): Promise<ContractTransaction>;
|
456
|
+
|
457
|
+
configureAutomaticYieldOnBehalf(
|
458
|
+
contractAddress: string,
|
459
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
460
|
+
): Promise<ContractTransaction>;
|
461
|
+
|
462
|
+
configureClaimableGas(
|
463
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
464
|
+
): Promise<ContractTransaction>;
|
465
|
+
|
466
|
+
configureClaimableGasOnBehalf(
|
467
|
+
contractAddress: string,
|
468
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
469
|
+
): Promise<ContractTransaction>;
|
470
|
+
|
471
|
+
configureClaimableYield(
|
472
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
473
|
+
): Promise<ContractTransaction>;
|
474
|
+
|
475
|
+
configureClaimableYieldOnBehalf(
|
476
|
+
contractAddress: string,
|
477
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
478
|
+
): Promise<ContractTransaction>;
|
479
|
+
|
480
|
+
configureContract(
|
481
|
+
contractAddress: string,
|
482
|
+
_yield: BigNumberish,
|
483
|
+
gasMode: BigNumberish,
|
484
|
+
governor: string,
|
485
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
486
|
+
): Promise<ContractTransaction>;
|
487
|
+
|
488
|
+
configureGovernor(
|
489
|
+
_governor: string,
|
490
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
491
|
+
): Promise<ContractTransaction>;
|
492
|
+
|
493
|
+
configureGovernorOnBehalf(
|
494
|
+
_newGovernor: string,
|
495
|
+
contractAddress: string,
|
496
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
497
|
+
): Promise<ContractTransaction>;
|
498
|
+
|
499
|
+
configureVoidGas(
|
500
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
501
|
+
): Promise<ContractTransaction>;
|
502
|
+
|
503
|
+
configureVoidGasOnBehalf(
|
504
|
+
contractAddress: string,
|
505
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
506
|
+
): Promise<ContractTransaction>;
|
507
|
+
|
508
|
+
configureVoidYield(
|
509
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
510
|
+
): Promise<ContractTransaction>;
|
511
|
+
|
512
|
+
configureVoidYieldOnBehalf(
|
513
|
+
contractAddress: string,
|
514
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
515
|
+
): Promise<ContractTransaction>;
|
516
|
+
|
517
|
+
readClaimableYield(
|
518
|
+
contractAddress: string,
|
519
|
+
overrides?: CallOverrides
|
520
|
+
): Promise<BigNumber>;
|
521
|
+
|
522
|
+
readGasParams(
|
523
|
+
contractAddress: string,
|
524
|
+
overrides?: CallOverrides
|
525
|
+
): Promise<
|
526
|
+
[BigNumber, BigNumber, BigNumber, number] & {
|
527
|
+
etherSeconds: BigNumber;
|
528
|
+
etherBalance: BigNumber;
|
529
|
+
lastUpdated: BigNumber;
|
530
|
+
}
|
531
|
+
>;
|
532
|
+
|
533
|
+
readYieldConfiguration(
|
534
|
+
contractAddress: string,
|
535
|
+
overrides?: CallOverrides
|
536
|
+
): Promise<number>;
|
537
|
+
|
538
|
+
callStatic: {
|
539
|
+
claimAllGas(
|
540
|
+
contractAddress: string,
|
541
|
+
recipientOfGas: string,
|
542
|
+
overrides?: CallOverrides
|
543
|
+
): Promise<BigNumber>;
|
544
|
+
|
545
|
+
claimAllYield(
|
546
|
+
contractAddress: string,
|
547
|
+
recipientOfYield: string,
|
548
|
+
overrides?: CallOverrides
|
549
|
+
): Promise<BigNumber>;
|
550
|
+
|
551
|
+
claimGas(
|
552
|
+
contractAddress: string,
|
553
|
+
recipientOfGas: string,
|
554
|
+
gasToClaim: BigNumberish,
|
555
|
+
gasSecondsToConsume: BigNumberish,
|
556
|
+
overrides?: CallOverrides
|
557
|
+
): Promise<BigNumber>;
|
558
|
+
|
559
|
+
claimGasAtMinClaimRate(
|
560
|
+
contractAddress: string,
|
561
|
+
recipientOfGas: string,
|
562
|
+
minClaimRateBips: BigNumberish,
|
563
|
+
overrides?: CallOverrides
|
564
|
+
): Promise<BigNumber>;
|
565
|
+
|
566
|
+
claimMaxGas(
|
567
|
+
contractAddress: string,
|
568
|
+
recipientOfGas: string,
|
569
|
+
overrides?: CallOverrides
|
570
|
+
): Promise<BigNumber>;
|
571
|
+
|
572
|
+
claimYield(
|
573
|
+
contractAddress: string,
|
574
|
+
recipientOfYield: string,
|
575
|
+
amount: BigNumberish,
|
576
|
+
overrides?: CallOverrides
|
577
|
+
): Promise<BigNumber>;
|
578
|
+
|
579
|
+
configure(
|
580
|
+
_yield: BigNumberish,
|
581
|
+
gasMode: BigNumberish,
|
582
|
+
governor: string,
|
583
|
+
overrides?: CallOverrides
|
584
|
+
): Promise<void>;
|
585
|
+
|
586
|
+
configureAutomaticYield(overrides?: CallOverrides): Promise<void>;
|
587
|
+
|
588
|
+
configureAutomaticYieldOnBehalf(
|
589
|
+
contractAddress: string,
|
590
|
+
overrides?: CallOverrides
|
591
|
+
): Promise<void>;
|
592
|
+
|
593
|
+
configureClaimableGas(overrides?: CallOverrides): Promise<void>;
|
594
|
+
|
595
|
+
configureClaimableGasOnBehalf(
|
596
|
+
contractAddress: string,
|
597
|
+
overrides?: CallOverrides
|
598
|
+
): Promise<void>;
|
599
|
+
|
600
|
+
configureClaimableYield(overrides?: CallOverrides): Promise<void>;
|
601
|
+
|
602
|
+
configureClaimableYieldOnBehalf(
|
603
|
+
contractAddress: string,
|
604
|
+
overrides?: CallOverrides
|
605
|
+
): Promise<void>;
|
606
|
+
|
607
|
+
configureContract(
|
608
|
+
contractAddress: string,
|
609
|
+
_yield: BigNumberish,
|
610
|
+
gasMode: BigNumberish,
|
611
|
+
governor: string,
|
612
|
+
overrides?: CallOverrides
|
613
|
+
): Promise<void>;
|
614
|
+
|
615
|
+
configureGovernor(
|
616
|
+
_governor: string,
|
617
|
+
overrides?: CallOverrides
|
618
|
+
): Promise<void>;
|
619
|
+
|
620
|
+
configureGovernorOnBehalf(
|
621
|
+
_newGovernor: string,
|
622
|
+
contractAddress: string,
|
623
|
+
overrides?: CallOverrides
|
624
|
+
): Promise<void>;
|
625
|
+
|
626
|
+
configureVoidGas(overrides?: CallOverrides): Promise<void>;
|
627
|
+
|
628
|
+
configureVoidGasOnBehalf(
|
629
|
+
contractAddress: string,
|
630
|
+
overrides?: CallOverrides
|
631
|
+
): Promise<void>;
|
632
|
+
|
633
|
+
configureVoidYield(overrides?: CallOverrides): Promise<void>;
|
634
|
+
|
635
|
+
configureVoidYieldOnBehalf(
|
636
|
+
contractAddress: string,
|
637
|
+
overrides?: CallOverrides
|
638
|
+
): Promise<void>;
|
639
|
+
|
640
|
+
readClaimableYield(
|
641
|
+
contractAddress: string,
|
642
|
+
overrides?: CallOverrides
|
643
|
+
): Promise<BigNumber>;
|
644
|
+
|
645
|
+
readGasParams(
|
646
|
+
contractAddress: string,
|
647
|
+
overrides?: CallOverrides
|
648
|
+
): Promise<
|
649
|
+
[BigNumber, BigNumber, BigNumber, number] & {
|
650
|
+
etherSeconds: BigNumber;
|
651
|
+
etherBalance: BigNumber;
|
652
|
+
lastUpdated: BigNumber;
|
653
|
+
}
|
654
|
+
>;
|
655
|
+
|
656
|
+
readYieldConfiguration(
|
657
|
+
contractAddress: string,
|
658
|
+
overrides?: CallOverrides
|
659
|
+
): Promise<number>;
|
660
|
+
};
|
661
|
+
|
662
|
+
filters: {};
|
663
|
+
|
664
|
+
estimateGas: {
|
665
|
+
claimAllGas(
|
666
|
+
contractAddress: string,
|
667
|
+
recipientOfGas: string,
|
668
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
669
|
+
): Promise<BigNumber>;
|
670
|
+
|
671
|
+
claimAllYield(
|
672
|
+
contractAddress: string,
|
673
|
+
recipientOfYield: string,
|
674
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
675
|
+
): Promise<BigNumber>;
|
676
|
+
|
677
|
+
claimGas(
|
678
|
+
contractAddress: string,
|
679
|
+
recipientOfGas: string,
|
680
|
+
gasToClaim: BigNumberish,
|
681
|
+
gasSecondsToConsume: BigNumberish,
|
682
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
683
|
+
): Promise<BigNumber>;
|
684
|
+
|
685
|
+
claimGasAtMinClaimRate(
|
686
|
+
contractAddress: string,
|
687
|
+
recipientOfGas: string,
|
688
|
+
minClaimRateBips: BigNumberish,
|
689
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
690
|
+
): Promise<BigNumber>;
|
691
|
+
|
692
|
+
claimMaxGas(
|
693
|
+
contractAddress: string,
|
694
|
+
recipientOfGas: string,
|
695
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
696
|
+
): Promise<BigNumber>;
|
697
|
+
|
698
|
+
claimYield(
|
699
|
+
contractAddress: string,
|
700
|
+
recipientOfYield: string,
|
701
|
+
amount: BigNumberish,
|
702
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
703
|
+
): Promise<BigNumber>;
|
704
|
+
|
705
|
+
configure(
|
706
|
+
_yield: BigNumberish,
|
707
|
+
gasMode: BigNumberish,
|
708
|
+
governor: string,
|
709
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
710
|
+
): Promise<BigNumber>;
|
711
|
+
|
712
|
+
configureAutomaticYield(
|
713
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
714
|
+
): Promise<BigNumber>;
|
715
|
+
|
716
|
+
configureAutomaticYieldOnBehalf(
|
717
|
+
contractAddress: string,
|
718
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
719
|
+
): Promise<BigNumber>;
|
720
|
+
|
721
|
+
configureClaimableGas(
|
722
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
723
|
+
): Promise<BigNumber>;
|
724
|
+
|
725
|
+
configureClaimableGasOnBehalf(
|
726
|
+
contractAddress: string,
|
727
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
728
|
+
): Promise<BigNumber>;
|
729
|
+
|
730
|
+
configureClaimableYield(
|
731
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
732
|
+
): Promise<BigNumber>;
|
733
|
+
|
734
|
+
configureClaimableYieldOnBehalf(
|
735
|
+
contractAddress: string,
|
736
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
737
|
+
): Promise<BigNumber>;
|
738
|
+
|
739
|
+
configureContract(
|
740
|
+
contractAddress: string,
|
741
|
+
_yield: BigNumberish,
|
742
|
+
gasMode: BigNumberish,
|
743
|
+
governor: string,
|
744
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
745
|
+
): Promise<BigNumber>;
|
746
|
+
|
747
|
+
configureGovernor(
|
748
|
+
_governor: string,
|
749
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
750
|
+
): Promise<BigNumber>;
|
751
|
+
|
752
|
+
configureGovernorOnBehalf(
|
753
|
+
_newGovernor: string,
|
754
|
+
contractAddress: string,
|
755
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
756
|
+
): Promise<BigNumber>;
|
757
|
+
|
758
|
+
configureVoidGas(
|
759
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
760
|
+
): Promise<BigNumber>;
|
761
|
+
|
762
|
+
configureVoidGasOnBehalf(
|
763
|
+
contractAddress: string,
|
764
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
765
|
+
): Promise<BigNumber>;
|
766
|
+
|
767
|
+
configureVoidYield(
|
768
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
769
|
+
): Promise<BigNumber>;
|
770
|
+
|
771
|
+
configureVoidYieldOnBehalf(
|
772
|
+
contractAddress: string,
|
773
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
774
|
+
): Promise<BigNumber>;
|
775
|
+
|
776
|
+
readClaimableYield(
|
777
|
+
contractAddress: string,
|
778
|
+
overrides?: CallOverrides
|
779
|
+
): Promise<BigNumber>;
|
780
|
+
|
781
|
+
readGasParams(
|
782
|
+
contractAddress: string,
|
783
|
+
overrides?: CallOverrides
|
784
|
+
): Promise<BigNumber>;
|
785
|
+
|
786
|
+
readYieldConfiguration(
|
787
|
+
contractAddress: string,
|
788
|
+
overrides?: CallOverrides
|
789
|
+
): Promise<BigNumber>;
|
790
|
+
};
|
791
|
+
|
792
|
+
populateTransaction: {
|
793
|
+
claimAllGas(
|
794
|
+
contractAddress: string,
|
795
|
+
recipientOfGas: string,
|
796
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
797
|
+
): Promise<PopulatedTransaction>;
|
798
|
+
|
799
|
+
claimAllYield(
|
800
|
+
contractAddress: string,
|
801
|
+
recipientOfYield: string,
|
802
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
803
|
+
): Promise<PopulatedTransaction>;
|
804
|
+
|
805
|
+
claimGas(
|
806
|
+
contractAddress: string,
|
807
|
+
recipientOfGas: string,
|
808
|
+
gasToClaim: BigNumberish,
|
809
|
+
gasSecondsToConsume: BigNumberish,
|
810
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
811
|
+
): Promise<PopulatedTransaction>;
|
812
|
+
|
813
|
+
claimGasAtMinClaimRate(
|
814
|
+
contractAddress: string,
|
815
|
+
recipientOfGas: string,
|
816
|
+
minClaimRateBips: BigNumberish,
|
817
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
818
|
+
): Promise<PopulatedTransaction>;
|
819
|
+
|
820
|
+
claimMaxGas(
|
821
|
+
contractAddress: string,
|
822
|
+
recipientOfGas: string,
|
823
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
824
|
+
): Promise<PopulatedTransaction>;
|
825
|
+
|
826
|
+
claimYield(
|
827
|
+
contractAddress: string,
|
828
|
+
recipientOfYield: string,
|
829
|
+
amount: BigNumberish,
|
830
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
831
|
+
): Promise<PopulatedTransaction>;
|
832
|
+
|
833
|
+
configure(
|
834
|
+
_yield: BigNumberish,
|
835
|
+
gasMode: BigNumberish,
|
836
|
+
governor: string,
|
837
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
838
|
+
): Promise<PopulatedTransaction>;
|
839
|
+
|
840
|
+
configureAutomaticYield(
|
841
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
842
|
+
): Promise<PopulatedTransaction>;
|
843
|
+
|
844
|
+
configureAutomaticYieldOnBehalf(
|
845
|
+
contractAddress: string,
|
846
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
847
|
+
): Promise<PopulatedTransaction>;
|
848
|
+
|
849
|
+
configureClaimableGas(
|
850
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
851
|
+
): Promise<PopulatedTransaction>;
|
852
|
+
|
853
|
+
configureClaimableGasOnBehalf(
|
854
|
+
contractAddress: string,
|
855
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
856
|
+
): Promise<PopulatedTransaction>;
|
857
|
+
|
858
|
+
configureClaimableYield(
|
859
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
860
|
+
): Promise<PopulatedTransaction>;
|
861
|
+
|
862
|
+
configureClaimableYieldOnBehalf(
|
863
|
+
contractAddress: string,
|
864
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
865
|
+
): Promise<PopulatedTransaction>;
|
866
|
+
|
867
|
+
configureContract(
|
868
|
+
contractAddress: string,
|
869
|
+
_yield: BigNumberish,
|
870
|
+
gasMode: BigNumberish,
|
871
|
+
governor: string,
|
872
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
873
|
+
): Promise<PopulatedTransaction>;
|
874
|
+
|
875
|
+
configureGovernor(
|
876
|
+
_governor: string,
|
877
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
878
|
+
): Promise<PopulatedTransaction>;
|
879
|
+
|
880
|
+
configureGovernorOnBehalf(
|
881
|
+
_newGovernor: string,
|
882
|
+
contractAddress: string,
|
883
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
884
|
+
): Promise<PopulatedTransaction>;
|
885
|
+
|
886
|
+
configureVoidGas(
|
887
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
888
|
+
): Promise<PopulatedTransaction>;
|
889
|
+
|
890
|
+
configureVoidGasOnBehalf(
|
891
|
+
contractAddress: string,
|
892
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
893
|
+
): Promise<PopulatedTransaction>;
|
894
|
+
|
895
|
+
configureVoidYield(
|
896
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
897
|
+
): Promise<PopulatedTransaction>;
|
898
|
+
|
899
|
+
configureVoidYieldOnBehalf(
|
900
|
+
contractAddress: string,
|
901
|
+
overrides?: Overrides & { from?: string | Promise<string> }
|
902
|
+
): Promise<PopulatedTransaction>;
|
903
|
+
|
904
|
+
readClaimableYield(
|
905
|
+
contractAddress: string,
|
906
|
+
overrides?: CallOverrides
|
907
|
+
): Promise<PopulatedTransaction>;
|
908
|
+
|
909
|
+
readGasParams(
|
910
|
+
contractAddress: string,
|
911
|
+
overrides?: CallOverrides
|
912
|
+
): Promise<PopulatedTransaction>;
|
913
|
+
|
914
|
+
readYieldConfiguration(
|
915
|
+
contractAddress: string,
|
916
|
+
overrides?: CallOverrides
|
917
|
+
): Promise<PopulatedTransaction>;
|
918
|
+
};
|
919
|
+
}
|