mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
28 lines
736 B
TypeScript
28 lines
736 B
TypeScript
/* Generated by ts-generator ver. 0.0.8 */
|
|
/* tslint:disable */
|
|
import {
|
|
BigNumberish,
|
|
EventDescription,
|
|
FunctionDescription
|
|
} from "ethers/utils";
|
|
|
|
export class TransactionOverrides {
|
|
nonce?: BigNumberish | Promise<BigNumberish>;
|
|
gasLimit?: BigNumberish | Promise<BigNumberish>;
|
|
gasPrice?: BigNumberish | Promise<BigNumberish>;
|
|
value?: BigNumberish | Promise<BigNumberish>;
|
|
chainId?: number | Promise<number>;
|
|
}
|
|
|
|
export interface TypedEventDescription<
|
|
T extends Pick<EventDescription, "encodeTopics">
|
|
> extends EventDescription {
|
|
encodeTopics: T["encodeTopics"];
|
|
}
|
|
|
|
export interface TypedFunctionDescription<
|
|
T extends Pick<FunctionDescription, "encode">
|
|
> extends FunctionDescription {
|
|
encode: T["encode"];
|
|
}
|