Type Alias ContractInfoOf

ContractInfoOf: StorageDescriptor<
    [Key: SS58String],
    {
        code_hash: FixedSizeBinary<32>;
        delegate_dependencies: [FixedSizeBinary<32>, bigint][];
        storage_base_deposit: bigint;
        storage_byte_deposit: bigint;
        storage_bytes: number;
        storage_item_deposit: bigint;
        storage_items: number;
        trie_id: Binary;
    },
    true,
    never,
>

The code associated with a given account.

TWOX-NOTE: SAFE since AccountId is a secure hash.