/** * This code was AUTOGENERATED using the kinobi library. * Please DO NOT EDIT THIS FILE, instead use visitors * to add features, then rerun kinobi to update it. * * @see https://github.com/metaplex-foundation/kinobi */ import { Account, Context, Pda, PublicKey, RpcAccount, RpcGetAccountOptions, RpcGetAccountsOptions } from '@metaplex-foundation/umi'; import { Serializer } from '@metaplex-foundation/umi/serializers'; import { Key, KeyArgs } from '../types'; export type HashedAssetV1 = Account; export type HashedAssetV1AccountData = { key: Key; hash: Uint8Array; }; export type HashedAssetV1AccountDataArgs = { key: KeyArgs; hash: Uint8Array; }; export declare function getHashedAssetV1AccountDataSerializer(): Serializer; export declare function deserializeHashedAssetV1(rawAccount: RpcAccount): HashedAssetV1; export declare function fetchHashedAssetV1(context: Pick, publicKey: PublicKey | Pda, options?: RpcGetAccountOptions): Promise; export declare function safeFetchHashedAssetV1(context: Pick, publicKey: PublicKey | Pda, options?: RpcGetAccountOptions): Promise; export declare function fetchAllHashedAssetV1(context: Pick, publicKeys: Array, options?: RpcGetAccountsOptions): Promise; export declare function safeFetchAllHashedAssetV1(context: Pick, publicKeys: Array, options?: RpcGetAccountsOptions): Promise; export declare function getHashedAssetV1GpaBuilder(context: Pick): import("@metaplex-foundation/umi").GpaBuilder; export declare function getHashedAssetV1Size(): number;