import type { Signer } from "arbundles"; import type Transaction from "arweave/node/lib/transaction"; import BigNumber from "bignumber.js"; import type { TokenConfig, Tx } from "../../common/types"; import { BaseNodeToken } from "./base"; import { Arweave } from "../utils"; export default class ArweaveConfig extends BaseNodeToken { protected providerInstance?: Arweave; constructor(config: TokenConfig); private getProvider; getTx(txId: string): Promise; ownerToAddress(owner: any): string; sign(data: Uint8Array): Promise; getSigner(): Signer; verify(pub: any, data: Uint8Array, signature: Uint8Array): Promise; getCurrentHeight(): Promise; getFee(_amount: BigNumber.Value, to?: string): Promise; sendTx(data: Transaction): Promise; createTx(amount: BigNumber.Value, to: string, fee?: string): Promise<{ txId: string | undefined; tx: any; }>; getPublicKey(): string; }