Coda by Ian Macalinao
    Preparing search index...

    Interface QuarryRegistryPluginInstructions

    interface QuarryRegistryPluginInstructions {
        newRegistry: (
            input: MakeOptional<
                NewRegistryAsyncInput<string, string, string, string>,
                "payer",
            >,
        ) => Promise<
            NewRegistryInstruction<Address, string, string, string, string, []>,
        > & SelfPlanAndSendFunctions;
        syncQuarry: (
            input: SyncQuarryInput,
        ) => Instruction<
            Address,
            readonly (AccountMeta<string> | AccountLookupMeta<string, string>)[],
        > & InstructionWithData<ReadonlyUint8Array<ArrayBufferLike>> & InstructionWithAccounts<
            [ReadonlyAccount<string>, WritableAccount<string>],
        > & SelfPlanAndSendFunctions;
    }
    Index

    Properties

    newRegistry: (
        input: MakeOptional<
            NewRegistryAsyncInput<string, string, string, string>,
            "payer",
        >,
    ) => Promise<
        NewRegistryInstruction<Address, string, string, string, string, []>,
    > & SelfPlanAndSendFunctions
    syncQuarry: (
        input: SyncQuarryInput,
    ) => Instruction<
        Address,
        readonly (AccountMeta<string> | AccountLookupMeta<string, string>)[],
    > & InstructionWithData<ReadonlyUint8Array<ArrayBufferLike>> & InstructionWithAccounts<
        [ReadonlyAccount<string>, WritableAccount<string>],
    > & SelfPlanAndSendFunctions