UNPKG

@safe-global/protocol-kit

Version:

SDK that facilitates the interaction with Safe Smart Accounts

26 lines 1.91 kB
import MultiSendBaseContract from '../../../contracts/MultiSend/MultiSendBaseContract'; import SafeProvider from '../../../SafeProvider'; import { DeploymentType } from '../../../types'; import { MultiSendContract_v1_1_1_Abi, MultiSendContract_v1_1_1_Contract } from '@safe-global/types-kit'; /** * MultiSendContract_v1_1_1 is the implementation specific to the MultiSend contract version 1.1.1. * * This class specializes in handling interactions with the MultiSend contract version 1.1.1 using Ethers.js v6. * * @extends MultiSendBaseContract<MultiSendContract_v1_1_1_Abi> - Inherits from MultiSendBaseContract with ABI specific to MultiSend contract version 1.1.1. * @implements MultiSendContract_v1_1_1_Contract - Implements the interface specific to MultiSend contract version 1.1.1. */ declare class MultiSendContract_v1_1_1 extends MultiSendBaseContract<MultiSendContract_v1_1_1_Abi> implements MultiSendContract_v1_1_1_Contract { /** * Constructs an instance of MultiSendContract_v1_1_1 * * @param chainId - The chain ID where the contract resides. * @param safeProvider - An instance of SafeProvider. * @param customContractAddress - Optional custom address for the contract. If not provided, the address is derived from the MultiSend deployments based on the chainId and safeVersion. * @param customContractAbi - Optional custom ABI for the contract. If not provided, the default ABI for version 1.1.1 is used. * @param deploymentType - Optional deployment type for the contract. If not provided, the first deployment retrieved from the safe-deployments array will be used. */ constructor(chainId: bigint, safeProvider: SafeProvider, customContractAddress?: string, customContractAbi?: MultiSendContract_v1_1_1_Abi, deploymentType?: DeploymentType); } export default MultiSendContract_v1_1_1; //# sourceMappingURL=MultiSendContract_v1_1_1.d.ts.map