UNPKG

@coolwallet/ton

Version:
10 lines (9 loc) 561 B
import { coin as COIN, Transport } from '@coolwallet/core'; import { SignTransferTxType, SignTransferTokenTxType } from './config/types'; export { TOKENS } from './config/tokenInfos'; export default class TON extends COIN.EDDSACoin implements COIN.Coin { constructor(); getAddress(transport: Transport, appPrivateKey: string, appId: string, addressIndex: number, isBounceable?: boolean): Promise<string>; signTransaction(data: SignTransferTxType): Promise<string>; signTransferTokenTransaction(data: SignTransferTokenTxType): Promise<string>; }