You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

signer.d.ts 413B

1234567
  1. import { Transaction } from '../models/transactions';
  2. import Wallet from '.';
  3. declare function multisign(transactions: Array<Transaction | string>): string;
  4. declare function authorizeChannel(wallet: Wallet, channelId: string, amount: string): string;
  5. declare function verifySignature(tx: Transaction | string): boolean;
  6. export { authorizeChannel, verifySignature, multisign };
  7. //# sourceMappingURL=signer.d.ts.map