Coda by Ian Macalinao
    Preparing search index...

    Type Alias SmartWalletPluginAccounts

    type SmartWalletPluginAccounts = {
        smartWallet: ReturnType<typeof getSmartWalletCodec> & SelfFetchFunctions<
            SmartWalletArgs,
            SmartWallet,
        >;
        subaccountInfo: ReturnType<typeof getSubaccountInfoCodec> & SelfFetchFunctions<
            SubaccountInfoArgs,
            SubaccountInfo,
        >;
        transaction: ReturnType<typeof getTransactionCodec> & SelfFetchFunctions<
            TransactionArgs,
            Transaction,
        >;
    }
    Index
    smartWallet: ReturnType<typeof getSmartWalletCodec> & SelfFetchFunctions<
        SmartWalletArgs,
        SmartWallet,
    >
    subaccountInfo: ReturnType<typeof getSubaccountInfoCodec> & SelfFetchFunctions<
        SubaccountInfoArgs,
        SubaccountInfo,
    >
    transaction: ReturnType<typeof getTransactionCodec> & SelfFetchFunctions<
        TransactionArgs,
        Transaction,
    >