btc-wallet
Version:
BTC Wallet is a toolkit that enables Bitcoin usage on the NEAR blockchain through the Satoshi protocol.
11 lines (10 loc) • 417 B
TypeScript
import { type WalletMetadata } from './base';
import { InjectedConnector } from './injected';
export declare class GateConnector extends InjectedConnector {
readonly metadata: WalletMetadata;
constructor();
sendBitcoin(toAddress: string, satoshis: number, options?: {
feeRate: number;
}): Promise<string>;
signMessage(signStr: string, type?: 'ecdsa' | 'bip322-simple'): Promise<string>;
}