UNPKG

@safe-global/types-kit

Version:

Types for use with the Safe Core SDK packages

11 lines 455 B
import { Abi } from 'abitype'; import BaseContract from '../common/BaseContract'; /** * Represents the base contract type for a MultiSend contract. * * @template MultiSendContractAbi - The ABI of the MultiSend contract. * @type {MultiSendBaseContract} */ type MultiSendBaseContract<MultiSendContractAbi extends Abi> = BaseContract<MultiSendContractAbi, never>; export default MultiSendBaseContract; //# sourceMappingURL=MultiSendBaseContract.d.ts.map