soroban-hooks
Version:
Soroban smart contract watcher and transaction helper
32 lines (31 loc) • 848 B
TypeScript
export default WalletTransactionAlert;
declare class WalletTransactionAlert {
constructor(apiKey: any);
apiKey: any;
create({ webhook_url, chainType, walletAddress }: {
webhook_url: any;
chainType: any;
walletAddress: any;
}): Promise<{
webhook_url: any;
chainType: any;
walletAddress: any;
}>;
getAll({ page, limit }?: {
page?: number | undefined;
limit?: number | undefined;
}): Promise<any>;
getById(id: any): Promise<any>;
update({ id, webhook_url, chainType, walletAddress, status }: {
id: any;
webhook_url: any;
chainType: any;
walletAddress: any;
status: any;
}): Promise<{
webhook_url: any;
chainType: any;
walletAddress: any;
}>;
delete(id: any): Promise<any>;
}