@etherspot/remote-signer
Version:
Etherspot Permissioned Signer SDK - signs the UserOp with SessionKey and sends it to the Bundler
12 lines (9 loc) • 320 B
TypeScript
import { BigNumberish } from '../types/bignumber.js';
import { PublicClient } from 'viem';
import '../types/common-types.js';
interface Gas {
maxFeePerGas: BigNumberish;
maxPriorityFeePerGas: BigNumberish;
}
declare function getGasFee(publicClient: PublicClient): Promise<Gas>;
export { type Gas, getGasFee };