@safik/fk-plug-controller
Version:
Internet Computer Plug wallet's controller
15 lines (14 loc) • 476 B
TypeScript
import { InferredTransaction } from './rosetta';
interface LastEvaluatedKey {
pk: string;
sk: string;
userId: string;
}
export interface GetUserTransactionResponse {
total: number;
transactions: InferredTransaction[];
lastEvaluatedKey?: LastEvaluatedKey;
}
export declare const getCapTransactions: (principalId: string, lastEvaluatedKey?: string | undefined) => Promise<GetUserTransactionResponse>;
declare const _default: {};
export default _default;