UNPKG

@taquito/taquito

Version:

High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.

13 lines (12 loc) 532 B
import BigNumber from 'bignumber.js'; import { Context } from '../context'; import { Operation } from '../operations/operations'; import { TzProvider } from './interface'; import { Provider } from '../provider'; export declare class RpcTzProvider extends Provider implements TzProvider { constructor(context: Context); private prepare; getBalance(address: string): Promise<BigNumber>; getDelegate(address: string): Promise<string | null>; activate(pkh: string, secret: string): Promise<Operation>; }