mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 13:54:05 -06:00
31 lines
673 B
TypeScript
31 lines
673 B
TypeScript
import { BaseContract, BigNumber } from "ethers";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const ForwardRequest: {
|
|
name: string;
|
|
type: string;
|
|
}[];
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const BiconomyForwarderAbi: {
|
|
inputs: {
|
|
internalType: string;
|
|
name: string;
|
|
type: string;
|
|
}[];
|
|
name: string;
|
|
outputs: {
|
|
internalType: string;
|
|
name: string;
|
|
type: string;
|
|
}[];
|
|
stateMutability: string;
|
|
type: string;
|
|
}[];
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare function getAndIncrementNonce(forwarder: BaseContract, forwarderFunction: string, forwarderArgs: any[]): Promise<BigNumber>;
|