UNPKG

@dioxide-js/silas

Version:

RPC utility for Silas

21 lines (20 loc) 588 B
import Address from '../api/address'; import { Transaction, TxOption, SignMethod } from './transaction'; import Account from './account'; import Contract from './contract'; import Blocks from '../api/block'; import Overview from '../api/overview'; import Proof from './proof'; declare class Web3 { private net; address: Address; txn: Transaction; block: Blocks; overview: Overview; proof: Proof; account: Account; contract: Contract; constructor(net: Provider, opts: TxOption); setProvider(net: Provider): void; } export { Web3, type SignMethod };