UNPKG

@safe-global/types-kit

Version:

Types for use with the Safe Core SDK packages

13 lines 702 B
import { Abi } from 'abitype'; import BaseContract, { EstimateGasFunction } from '../common/BaseContract'; /** * Represents the base contract type for a Safe WebAuthn Shared Signer contract. * * @template SafeWebAuthnSharedSignerContractAbi - The ABI of the Safe WebAuthn Shared Signer contract. * @type {SafeWebAuthnSahredSignerBaseContract} */ export type SafeWebAuthnSharedSignerBaseContract<SafeWebAuthnSharedSignerContractAbi extends Abi> = BaseContract<SafeWebAuthnSharedSignerContractAbi> & { estimateGas: EstimateGasFunction<SafeWebAuthnSharedSignerContractAbi>; }; export default SafeWebAuthnSharedSignerBaseContract; //# sourceMappingURL=SafeWebAuthnSharedSignerBaseContract.d.ts.map