UNPKG

@celo/connect

Version:

Light Toolkit for connecting with the Celo network

10 lines (9 loc) 299 B
import { Connection } from '../connection'; import { CeloTx } from '../types'; export declare class TxParamsNormalizer { readonly connection: Connection; private chainId; constructor(connection: Connection); populate(celoTxParams: CeloTx): Promise<CeloTx>; private getChainId; }