@circle-fin/usdckit - v0.18.0
    Preparing search index...

    Type Alias Actions<transport, chain, account>

    type Actions<
        transport extends Transport = Transport,
        chain extends Chain | undefined = Chain | undefined,
        account extends Account | undefined = Account | undefined,
    > = {
        createContractExecutionTransaction: (
            params: Parameters<typeof createContractExecutionTransaction>[1],
        ) => ReturnType<typeof createContractExecutionTransaction>;
        estimateContractExecutionFee: (
            params: Parameters<typeof estimateContractExecutionFee>[1],
        ) => ReturnType<typeof estimateContractExecutionFee>;
        getContract: (
            params: Parameters<typeof getContract>[1],
        ) => ReturnType<typeof getContract>;
        getContractAbi: (
            params: Parameters<typeof getContractAbi>[1],
        ) => ReturnType<typeof getContractAbi>;
        importContract: (
            params: Parameters<typeof importContract>[1],
        ) => ReturnType<typeof importContract>;
        writeContract: (params: any) => ReturnType<typeof writeContract>;
    }

    Type Parameters

    • transport extends Transport = Transport
    • chain extends Chain | undefined = Chain | undefined
    • account extends Account | undefined = Account | undefined
    Index

    Properties

    createContractExecutionTransaction: (
        params: Parameters<typeof createContractExecutionTransaction>[1],
    ) => ReturnType<typeof createContractExecutionTransaction>
    estimateContractExecutionFee: (
        params: Parameters<typeof estimateContractExecutionFee>[1],
    ) => ReturnType<typeof estimateContractExecutionFee>
    getContract: (
        params: Parameters<typeof getContract>[1],
    ) => ReturnType<typeof getContract>

    See getContract action

    getContractAbi: (
        params: Parameters<typeof getContractAbi>[1],
    ) => ReturnType<typeof getContractAbi>

    See getContractAbi action

    importContract: (
        params: Parameters<typeof importContract>[1],
    ) => ReturnType<typeof importContract>

    See importContract action

    writeContract: (params: any) => ReturnType<typeof writeContract>

    See writeContract action