@safe-global/protocol-kit
Version:
SDK that facilitates the interaction with Safe Smart Accounts
36 lines • 2.63 kB
TypeScript
import { Abi } from 'abitype';
import SafeProvider from '../../SafeProvider';
import { DeploymentType } from '../../types';
import BaseContract from '../../contracts/BaseContract';
import { SafeVersion } from '@safe-global/types-kit';
import { contractName } from '../../contracts/config';
/**
* Abstract class SafeWebAuthnSignerFactoryBaseContract extends BaseContract to specifically integrate with the SafeWebAuthnSignerFactory contract.
* It is designed to be instantiated for different versions of the Safe contract.
*
* Subclasses of SafeWebAuthnSignerFactoryBaseContract are expected to represent specific versions of the contract.
*
* @template SafeWebAuthnSignerFactoryContractAbiType - The ABI type specific to the version of the Safe WebAuthn Signer Factory contract, extending InterfaceAbi from Ethers.
* @extends BaseContract<SafeWebAuthnSignerFactoryContractAbiType> - Extends the generic BaseContract.
*
* Example subclasses:
* - SafeWebAuthnSignerFactoryContract_v0_2_1 extends SafeWebAuthnSignerFactoryBaseContract<SafeWebAuthnSignerFactoryContract_v0_2_1_Abi>
*/
declare abstract class SafeWebAuthnSignerFactoryBaseContract<SafeWebAuthnSignerFactoryContractAbiType extends Abi> extends BaseContract<SafeWebAuthnSignerFactoryContractAbiType> {
contractName: contractName;
/**
* @constructor
* Constructs an instance of SafeWebAuthnSignerFactoryBaseContract.
*
* @param chainId - The chain ID of the contract.
* @param safeProvider - An instance of SafeProvider.
* @param defaultAbi - The default ABI for the Safe contract. It should be compatible with the specific version of the contract.
* @param safeVersion - The version of the Safe contract.
* @param customContractAddress - Optional custom address for the contract. If not provided, the address is derived from the Safe deployments based on the chainId and safeVersion.
* @param customContractAbi - Optional custom ABI for the contract. If not provided, the ABI is derived from the Safe deployments or the defaultAbi 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, defaultAbi: SafeWebAuthnSignerFactoryContractAbiType, safeVersion: SafeVersion, customContractAddress?: string, customContractAbi?: SafeWebAuthnSignerFactoryContractAbiType, deploymentType?: DeploymentType);
}
export default SafeWebAuthnSignerFactoryBaseContract;
//# sourceMappingURL=SafeWebAuthnSignerFactoryBaseContract.d.ts.map