Vana SDK - v2.2.2
    Preparing search index...

    Interface ContractInfo<TAbi>

    Provides contract deployment information with typed ABI.

    Contains the minimum information needed to interact with a deployed contract: its address and ABI.

    interface ContractInfo<TAbi extends Abi = Abi> {
        address: `0x${string}`;
        abi: TAbi;
    }

    Type Parameters

    • TAbi extends Abi = Abi

      The contract's ABI type for full type safety

    Index

    Properties

    Properties

    address: `0x${string}`

    The contract's deployed address

    abi: TAbi

    The contract's ABI