AppleSauce
    Preparing search index...

    Type Alias WalletServiceHandlers<Methods>

    WalletServiceHandlers: {
        [K in Methods["method"]]?: WalletMethodHandler<
            Extract<Methods, { method: K }>,
        >
    }

    Map of method handlers for the wallet service for a specific set of methods

    Type Parameters