@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.
14 lines • 801 B
TypeScript
import * as Aptos from "aptos";
import * as utils from "./utils";
import Web3Provider from "./provider";
import { IWeb3Provider, IWeb3AptosSDK, IWeb3SuiSDK, IWeb3AptosToken, IWeb3Coin, Response, PublicAccount, SignMessagePayload, SignMessageResponse, PaginationArgs, OptionalTransactionArgs, SubmitTransactionRequest } from "./types";
declare class Web3 {
action: IWeb3Provider;
constructor(provider?: IWeb3Provider);
setProvider(provider: Web3Provider): this;
}
export { Aptos, utils };
export { Web3Provider };
export type { OptionalTransactionArgs, SubmitTransactionRequest, IWeb3Provider, IWeb3AptosSDK, IWeb3SuiSDK, IWeb3AptosToken, IWeb3Coin, Response, PublicAccount, SignMessagePayload, SignMessageResponse, PaginationArgs };
export default Web3;
//# sourceMappingURL=index.d.ts.map