UNPKG

@mavrykdynamics/taquito

Version:

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

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