UNPKG

ontology-ts-sdk

Version:

Comprehensive TypeScript library for the Ontology blockchain.

10 lines (9 loc) 252 B
import { Address } from '../crypto/address'; import { Transaction } from './transaction'; export declare class Transfer extends Transaction { amount: number | string; tokenType: string; from: Address; to: Address; method: string; }