UNPKG

@fewcha/web3

Version:

The `@fewcha/web3` library aims to be an all-in-one toolkit to enable developers interact with Aptos Blockchain and its ecosystem.

15 lines (10 loc) 287 B
// Copyright 2022 Fewcha. All rights reserved. import { IWeb3Provider } from "./types"; class Web3Provider { public provider: IWeb3Provider; constructor(provider: IWeb3Provider) { this.provider = provider as IWeb3Provider; return this; } } export default Web3Provider;