@xlink-network/xlink-sdk
Version:
14 lines (11 loc) • 449 B
TypeScript
import { KnownChainId } from '../utils/types/knownIds.js';
import '../xlinkSdkUtils/types.js';
import '../utils/BigNumber.js';
import 'big.js';
import '../utils/typeHelpers.js';
interface BitcoinAddress {
address: string;
scriptPubKey: Uint8Array;
}
declare function getBTCPegInAddress(fromChain: KnownChainId.BitcoinChain, toChain: KnownChainId.KnownChain): undefined | BitcoinAddress;
export { type BitcoinAddress, getBTCPegInAddress };