@desig/web3
Version:
Desig: The Blockchain-Agnostic Multisig Solution
8 lines (7 loc) • 338 B
TypeScript
import { Transaction } from '@solana/web3.js';
export declare const isSolanaAddress: (address: string | undefined) => address is string;
export { toSolanaAddress } from '@desig/supported-chains';
export declare const addSolTransaction: (transaction: Transaction, { sig, addr }: {
sig: Uint8Array;
addr: string;
}) => Transaction;