@etherspot/prime-sdk
Version:
Etherspot Prime (Account Abstraction) SDK
14 lines (13 loc) • 327 B
TypeScript
import { BigNumberish, BytesLike } from 'ethers';
export declare class StepTransaction {
to?: string;
data?: BytesLike;
value?: BigNumberish;
gasLimit?: BigNumberish;
gasPrice?: BigNumberish;
chainId?: number;
type?: number;
}
export declare class StepTransactions {
items: StepTransaction[];
}