import type { BaseContract, BigNumber, BigNumberish, BytesLike, CallOverrides, ContractTransaction, Overrides, PopulatedTransaction, Signer, utils } from "ethers"; import type { FunctionFragment, Result, EventFragment } from "@ethersproject/abi"; import type { Listener, Provider } from "@ethersproject/providers"; import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue } from "./common"; export declare namespace LibPart { type PartStruct = { account: PromiseOrValue; value: PromiseOrValue; }; type PartStructOutput = [string, BigNumber] & { account: string; value: BigNumber; }; } export declare namespace LibERC1155LazyMint { type Mint1155DataStruct = { tokenId: PromiseOrValue; tokenURI: PromiseOrValue; supply: PromiseOrValue; creators: LibPart.PartStruct[]; royalties: LibPart.PartStruct[]; signatures: PromiseOrValue[]; }; type Mint1155DataStructOutput = [ BigNumber, string, BigNumber, LibPart.PartStructOutput[], LibPart.PartStructOutput[], string[] ] & { tokenId: BigNumber; tokenURI: string; supply: BigNumber; creators: LibPart.PartStructOutput[]; royalties: LibPart.PartStructOutput[]; signatures: string[]; }; } export interface ERC1155LazyInterface extends utils.Interface { functions: { "balanceOf(address,uint256)": FunctionFragment; "balanceOfBatch(address[],uint256[])": FunctionFragment; "baseURI()": FunctionFragment; "getRaribleV2Royalties(uint256)": FunctionFragment; "isApprovedForAll(address,address)": FunctionFragment; "royaltyInfo(uint256,uint256)": FunctionFragment; "safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)": FunctionFragment; "safeTransferFrom(address,address,uint256,uint256,bytes)": FunctionFragment; "setApprovalForAll(address,bool)": FunctionFragment; "uri(uint256)": FunctionFragment; "supportsInterface(bytes4)": FunctionFragment; "transferFromOrMint((uint256,string,uint256,(address,uint96)[],(address,uint96)[],bytes[]),address,address,uint256)": FunctionFragment; "mintAndTransfer((uint256,string,uint256,(address,uint96)[],(address,uint96)[],bytes[]),address,uint256)": FunctionFragment; "updateAccount(uint256,address,address)": FunctionFragment; "getCreators(uint256)": FunctionFragment; }; getFunction(nameOrSignatureOrTopic: "balanceOf" | "balanceOfBatch" | "baseURI" | "getRaribleV2Royalties" | "isApprovedForAll" | "royaltyInfo" | "safeBatchTransferFrom" | "safeTransferFrom" | "setApprovalForAll" | "uri" | "supportsInterface" | "transferFromOrMint" | "mintAndTransfer" | "updateAccount" | "getCreators"): FunctionFragment; encodeFunctionData(functionFragment: "balanceOf", values: [PromiseOrValue, PromiseOrValue]): string; encodeFunctionData(functionFragment: "balanceOfBatch", values: [PromiseOrValue[], PromiseOrValue[]]): string; encodeFunctionData(functionFragment: "baseURI", values?: undefined): string; encodeFunctionData(functionFragment: "getRaribleV2Royalties", values: [PromiseOrValue]): string; encodeFunctionData(functionFragment: "isApprovedForAll", values: [PromiseOrValue, PromiseOrValue]): string; encodeFunctionData(functionFragment: "royaltyInfo", values: [PromiseOrValue, PromiseOrValue]): string; encodeFunctionData(functionFragment: "safeBatchTransferFrom", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue[], PromiseOrValue[], PromiseOrValue ]): string; encodeFunctionData(functionFragment: "safeTransferFrom", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue ]): string; encodeFunctionData(functionFragment: "setApprovalForAll", values: [PromiseOrValue, PromiseOrValue]): string; encodeFunctionData(functionFragment: "uri", values: [PromiseOrValue]): string; encodeFunctionData(functionFragment: "supportsInterface", values: [PromiseOrValue]): string; encodeFunctionData(functionFragment: "transferFromOrMint", values: [ LibERC1155LazyMint.Mint1155DataStruct, PromiseOrValue, PromiseOrValue, PromiseOrValue ]): string; encodeFunctionData(functionFragment: "mintAndTransfer", values: [ LibERC1155LazyMint.Mint1155DataStruct, PromiseOrValue, PromiseOrValue ]): string; encodeFunctionData(functionFragment: "updateAccount", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue ]): string; encodeFunctionData(functionFragment: "getCreators", values: [PromiseOrValue]): string; decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result; decodeFunctionResult(functionFragment: "balanceOfBatch", data: BytesLike): Result; decodeFunctionResult(functionFragment: "baseURI", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getRaribleV2Royalties", data: BytesLike): Result; decodeFunctionResult(functionFragment: "isApprovedForAll", data: BytesLike): Result; decodeFunctionResult(functionFragment: "royaltyInfo", data: BytesLike): Result; decodeFunctionResult(functionFragment: "safeBatchTransferFrom", data: BytesLike): Result; decodeFunctionResult(functionFragment: "safeTransferFrom", data: BytesLike): Result; decodeFunctionResult(functionFragment: "setApprovalForAll", data: BytesLike): Result; decodeFunctionResult(functionFragment: "uri", data: BytesLike): Result; decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result; decodeFunctionResult(functionFragment: "transferFromOrMint", data: BytesLike): Result; decodeFunctionResult(functionFragment: "mintAndTransfer", data: BytesLike): Result; decodeFunctionResult(functionFragment: "updateAccount", data: BytesLike): Result; decodeFunctionResult(functionFragment: "getCreators", data: BytesLike): Result; events: { "ApprovalForAll(address,address,bool)": EventFragment; "Creators(uint256,tuple[])": EventFragment; "RoyaltiesSet(uint256,tuple[])": EventFragment; "Supply(uint256,uint256)": EventFragment; "TransferBatch(address,address,address,uint256[],uint256[])": EventFragment; "TransferSingle(address,address,address,uint256,uint256)": EventFragment; "URI(string,uint256)": EventFragment; }; getEvent(nameOrSignatureOrTopic: "ApprovalForAll"): EventFragment; getEvent(nameOrSignatureOrTopic: "Creators"): EventFragment; getEvent(nameOrSignatureOrTopic: "RoyaltiesSet"): EventFragment; getEvent(nameOrSignatureOrTopic: "Supply"): EventFragment; getEvent(nameOrSignatureOrTopic: "TransferBatch"): EventFragment; getEvent(nameOrSignatureOrTopic: "TransferSingle"): EventFragment; getEvent(nameOrSignatureOrTopic: "URI"): EventFragment; } export interface ApprovalForAllEventObject { account: string; operator: string; approved: boolean; } export type ApprovalForAllEvent = TypedEvent<[ string, string, boolean ], ApprovalForAllEventObject>; export type ApprovalForAllEventFilter = TypedEventFilter; export interface CreatorsEventObject { tokenId: BigNumber; creators: LibPart.PartStructOutput[]; } export type CreatorsEvent = TypedEvent<[ BigNumber, LibPart.PartStructOutput[] ], CreatorsEventObject>; export type CreatorsEventFilter = TypedEventFilter; export interface RoyaltiesSetEventObject { tokenId: BigNumber; royalties: LibPart.PartStructOutput[]; } export type RoyaltiesSetEvent = TypedEvent<[ BigNumber, LibPart.PartStructOutput[] ], RoyaltiesSetEventObject>; export type RoyaltiesSetEventFilter = TypedEventFilter; export interface SupplyEventObject { tokenId: BigNumber; value: BigNumber; } export type SupplyEvent = TypedEvent<[BigNumber, BigNumber], SupplyEventObject>; export type SupplyEventFilter = TypedEventFilter; export interface TransferBatchEventObject { operator: string; from: string; to: string; ids: BigNumber[]; values: BigNumber[]; } export type TransferBatchEvent = TypedEvent<[ string, string, string, BigNumber[], BigNumber[] ], TransferBatchEventObject>; export type TransferBatchEventFilter = TypedEventFilter; export interface TransferSingleEventObject { operator: string; from: string; to: string; id: BigNumber; value: BigNumber; } export type TransferSingleEvent = TypedEvent<[ string, string, string, BigNumber, BigNumber ], TransferSingleEventObject>; export type TransferSingleEventFilter = TypedEventFilter; export interface URIEventObject { value: string; id: BigNumber; } export type URIEvent = TypedEvent<[string, BigNumber], URIEventObject>; export type URIEventFilter = TypedEventFilter; export interface ERC1155Lazy extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: ERC1155LazyInterface; queryFilter(event: TypedEventFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>; listeners(eventFilter?: TypedEventFilter): Array>; listeners(eventName?: string): Array; removeAllListeners(eventFilter: TypedEventFilter): this; removeAllListeners(eventName?: string): this; off: OnEvent; on: OnEvent; once: OnEvent; removeListener: OnEvent; functions: { /** * See {IERC1155-balanceOf}. Requirements: - `account` cannot be the zero address. */ balanceOf(account: PromiseOrValue, id: PromiseOrValue, overrides?: CallOverrides): Promise<[BigNumber]>; /** * See {IERC1155-balanceOfBatch}. Requirements: - `accounts` and `ids` must have the same length. */ balanceOfBatch(accounts: PromiseOrValue[], ids: PromiseOrValue[], overrides?: CallOverrides): Promise<[BigNumber[]]>; /** * Returns the base URI set via {_setBaseURI}. This will be automatically added as a prefix in {tokenURI} to each token's URI, or to the token ID if no specific URI is set for that token ID. */ baseURI(overrides?: CallOverrides): Promise<[string]>; getRaribleV2Royalties(id: PromiseOrValue, overrides?: CallOverrides): Promise<[LibPart.PartStructOutput[]]>; /** * See {IERC1155-isApprovedForAll}. */ isApprovedForAll(account: PromiseOrValue, operator: PromiseOrValue, overrides?: CallOverrides): Promise<[boolean]>; royaltyInfo(id: PromiseOrValue, _salePrice: PromiseOrValue, overrides?: CallOverrides): Promise<[ string, BigNumber ] & { receiver: string; royaltyAmount: BigNumber; }>; /** * See {IERC1155-safeBatchTransferFrom}. */ safeBatchTransferFrom(from: PromiseOrValue, to: PromiseOrValue, ids: PromiseOrValue[], amounts: PromiseOrValue[], data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; /** * See {IERC1155-safeTransferFrom}. */ safeTransferFrom(from: PromiseOrValue, to: PromiseOrValue, id: PromiseOrValue, amount: PromiseOrValue, data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; /** * See {IERC1155-setApprovalForAll}. */ setApprovalForAll(operator: PromiseOrValue, approved: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; uri(id: PromiseOrValue, overrides?: CallOverrides): Promise<[string]>; supportsInterface(interfaceId: PromiseOrValue, overrides?: CallOverrides): Promise<[boolean]>; transferFromOrMint(data: LibERC1155LazyMint.Mint1155DataStruct, from: PromiseOrValue, to: PromiseOrValue, amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; mintAndTransfer(data: LibERC1155LazyMint.Mint1155DataStruct, to: PromiseOrValue, _amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; updateAccount(_id: PromiseOrValue, _from: PromiseOrValue, _to: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; getCreators(_id: PromiseOrValue, overrides?: CallOverrides): Promise<[LibPart.PartStructOutput[]]>; }; /** * See {IERC1155-balanceOf}. Requirements: - `account` cannot be the zero address. */ balanceOf(account: PromiseOrValue, id: PromiseOrValue, overrides?: CallOverrides): Promise; /** * See {IERC1155-balanceOfBatch}. Requirements: - `accounts` and `ids` must have the same length. */ balanceOfBatch(accounts: PromiseOrValue[], ids: PromiseOrValue[], overrides?: CallOverrides): Promise; /** * Returns the base URI set via {_setBaseURI}. This will be automatically added as a prefix in {tokenURI} to each token's URI, or to the token ID if no specific URI is set for that token ID. */ baseURI(overrides?: CallOverrides): Promise; getRaribleV2Royalties(id: PromiseOrValue, overrides?: CallOverrides): Promise; /** * See {IERC1155-isApprovedForAll}. */ isApprovedForAll(account: PromiseOrValue, operator: PromiseOrValue, overrides?: CallOverrides): Promise; royaltyInfo(id: PromiseOrValue, _salePrice: PromiseOrValue, overrides?: CallOverrides): Promise<[ string, BigNumber ] & { receiver: string; royaltyAmount: BigNumber; }>; /** * See {IERC1155-safeBatchTransferFrom}. */ safeBatchTransferFrom(from: PromiseOrValue, to: PromiseOrValue, ids: PromiseOrValue[], amounts: PromiseOrValue[], data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; /** * See {IERC1155-safeTransferFrom}. */ safeTransferFrom(from: PromiseOrValue, to: PromiseOrValue, id: PromiseOrValue, amount: PromiseOrValue, data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; /** * See {IERC1155-setApprovalForAll}. */ setApprovalForAll(operator: PromiseOrValue, approved: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; uri(id: PromiseOrValue, overrides?: CallOverrides): Promise; supportsInterface(interfaceId: PromiseOrValue, overrides?: CallOverrides): Promise; transferFromOrMint(data: LibERC1155LazyMint.Mint1155DataStruct, from: PromiseOrValue, to: PromiseOrValue, amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; mintAndTransfer(data: LibERC1155LazyMint.Mint1155DataStruct, to: PromiseOrValue, _amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; updateAccount(_id: PromiseOrValue, _from: PromiseOrValue, _to: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; getCreators(_id: PromiseOrValue, overrides?: CallOverrides): Promise; callStatic: { /** * See {IERC1155-balanceOf}. Requirements: - `account` cannot be the zero address. */ balanceOf(account: PromiseOrValue, id: PromiseOrValue, overrides?: CallOverrides): Promise; /** * See {IERC1155-balanceOfBatch}. Requirements: - `accounts` and `ids` must have the same length. */ balanceOfBatch(accounts: PromiseOrValue[], ids: PromiseOrValue[], overrides?: CallOverrides): Promise; /** * Returns the base URI set via {_setBaseURI}. This will be automatically added as a prefix in {tokenURI} to each token's URI, or to the token ID if no specific URI is set for that token ID. */ baseURI(overrides?: CallOverrides): Promise; getRaribleV2Royalties(id: PromiseOrValue, overrides?: CallOverrides): Promise; /** * See {IERC1155-isApprovedForAll}. */ isApprovedForAll(account: PromiseOrValue, operator: PromiseOrValue, overrides?: CallOverrides): Promise; royaltyInfo(id: PromiseOrValue, _salePrice: PromiseOrValue, overrides?: CallOverrides): Promise<[ string, BigNumber ] & { receiver: string; royaltyAmount: BigNumber; }>; /** * See {IERC1155-safeBatchTransferFrom}. */ safeBatchTransferFrom(from: PromiseOrValue, to: PromiseOrValue, ids: PromiseOrValue[], amounts: PromiseOrValue[], data: PromiseOrValue, overrides?: CallOverrides): Promise; /** * See {IERC1155-safeTransferFrom}. */ safeTransferFrom(from: PromiseOrValue, to: PromiseOrValue, id: PromiseOrValue, amount: PromiseOrValue, data: PromiseOrValue, overrides?: CallOverrides): Promise; /** * See {IERC1155-setApprovalForAll}. */ setApprovalForAll(operator: PromiseOrValue, approved: PromiseOrValue, overrides?: CallOverrides): Promise; uri(id: PromiseOrValue, overrides?: CallOverrides): Promise; supportsInterface(interfaceId: PromiseOrValue, overrides?: CallOverrides): Promise; transferFromOrMint(data: LibERC1155LazyMint.Mint1155DataStruct, from: PromiseOrValue, to: PromiseOrValue, amount: PromiseOrValue, overrides?: CallOverrides): Promise; mintAndTransfer(data: LibERC1155LazyMint.Mint1155DataStruct, to: PromiseOrValue, _amount: PromiseOrValue, overrides?: CallOverrides): Promise; updateAccount(_id: PromiseOrValue, _from: PromiseOrValue, _to: PromiseOrValue, overrides?: CallOverrides): Promise; getCreators(_id: PromiseOrValue, overrides?: CallOverrides): Promise; }; filters: { "ApprovalForAll(address,address,bool)"(account?: PromiseOrValue | null, operator?: PromiseOrValue | null, approved?: null): ApprovalForAllEventFilter; ApprovalForAll(account?: PromiseOrValue | null, operator?: PromiseOrValue | null, approved?: null): ApprovalForAllEventFilter; "Creators(uint256,tuple[])"(tokenId?: null, creators?: null): CreatorsEventFilter; Creators(tokenId?: null, creators?: null): CreatorsEventFilter; "RoyaltiesSet(uint256,tuple[])"(tokenId?: null, royalties?: null): RoyaltiesSetEventFilter; RoyaltiesSet(tokenId?: null, royalties?: null): RoyaltiesSetEventFilter; "Supply(uint256,uint256)"(tokenId?: null, value?: null): SupplyEventFilter; Supply(tokenId?: null, value?: null): SupplyEventFilter; "TransferBatch(address,address,address,uint256[],uint256[])"(operator?: PromiseOrValue | null, from?: PromiseOrValue | null, to?: PromiseOrValue | null, ids?: null, values?: null): TransferBatchEventFilter; TransferBatch(operator?: PromiseOrValue | null, from?: PromiseOrValue | null, to?: PromiseOrValue | null, ids?: null, values?: null): TransferBatchEventFilter; "TransferSingle(address,address,address,uint256,uint256)"(operator?: PromiseOrValue | null, from?: PromiseOrValue | null, to?: PromiseOrValue | null, id?: null, value?: null): TransferSingleEventFilter; TransferSingle(operator?: PromiseOrValue | null, from?: PromiseOrValue | null, to?: PromiseOrValue | null, id?: null, value?: null): TransferSingleEventFilter; "URI(string,uint256)"(value?: null, id?: PromiseOrValue | null): URIEventFilter; URI(value?: null, id?: PromiseOrValue | null): URIEventFilter; }; estimateGas: { /** * See {IERC1155-balanceOf}. Requirements: - `account` cannot be the zero address. */ balanceOf(account: PromiseOrValue, id: PromiseOrValue, overrides?: CallOverrides): Promise; /** * See {IERC1155-balanceOfBatch}. Requirements: - `accounts` and `ids` must have the same length. */ balanceOfBatch(accounts: PromiseOrValue[], ids: PromiseOrValue[], overrides?: CallOverrides): Promise; /** * Returns the base URI set via {_setBaseURI}. This will be automatically added as a prefix in {tokenURI} to each token's URI, or to the token ID if no specific URI is set for that token ID. */ baseURI(overrides?: CallOverrides): Promise; getRaribleV2Royalties(id: PromiseOrValue, overrides?: CallOverrides): Promise; /** * See {IERC1155-isApprovedForAll}. */ isApprovedForAll(account: PromiseOrValue, operator: PromiseOrValue, overrides?: CallOverrides): Promise; royaltyInfo(id: PromiseOrValue, _salePrice: PromiseOrValue, overrides?: CallOverrides): Promise; /** * See {IERC1155-safeBatchTransferFrom}. */ safeBatchTransferFrom(from: PromiseOrValue, to: PromiseOrValue, ids: PromiseOrValue[], amounts: PromiseOrValue[], data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; /** * See {IERC1155-safeTransferFrom}. */ safeTransferFrom(from: PromiseOrValue, to: PromiseOrValue, id: PromiseOrValue, amount: PromiseOrValue, data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; /** * See {IERC1155-setApprovalForAll}. */ setApprovalForAll(operator: PromiseOrValue, approved: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; uri(id: PromiseOrValue, overrides?: CallOverrides): Promise; supportsInterface(interfaceId: PromiseOrValue, overrides?: CallOverrides): Promise; transferFromOrMint(data: LibERC1155LazyMint.Mint1155DataStruct, from: PromiseOrValue, to: PromiseOrValue, amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; mintAndTransfer(data: LibERC1155LazyMint.Mint1155DataStruct, to: PromiseOrValue, _amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; updateAccount(_id: PromiseOrValue, _from: PromiseOrValue, _to: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; getCreators(_id: PromiseOrValue, overrides?: CallOverrides): Promise; }; populateTransaction: { /** * See {IERC1155-balanceOf}. Requirements: - `account` cannot be the zero address. */ balanceOf(account: PromiseOrValue, id: PromiseOrValue, overrides?: CallOverrides): Promise; /** * See {IERC1155-balanceOfBatch}. Requirements: - `accounts` and `ids` must have the same length. */ balanceOfBatch(accounts: PromiseOrValue[], ids: PromiseOrValue[], overrides?: CallOverrides): Promise; /** * Returns the base URI set via {_setBaseURI}. This will be automatically added as a prefix in {tokenURI} to each token's URI, or to the token ID if no specific URI is set for that token ID. */ baseURI(overrides?: CallOverrides): Promise; getRaribleV2Royalties(id: PromiseOrValue, overrides?: CallOverrides): Promise; /** * See {IERC1155-isApprovedForAll}. */ isApprovedForAll(account: PromiseOrValue, operator: PromiseOrValue, overrides?: CallOverrides): Promise; royaltyInfo(id: PromiseOrValue, _salePrice: PromiseOrValue, overrides?: CallOverrides): Promise; /** * See {IERC1155-safeBatchTransferFrom}. */ safeBatchTransferFrom(from: PromiseOrValue, to: PromiseOrValue, ids: PromiseOrValue[], amounts: PromiseOrValue[], data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; /** * See {IERC1155-safeTransferFrom}. */ safeTransferFrom(from: PromiseOrValue, to: PromiseOrValue, id: PromiseOrValue, amount: PromiseOrValue, data: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; /** * See {IERC1155-setApprovalForAll}. */ setApprovalForAll(operator: PromiseOrValue, approved: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; uri(id: PromiseOrValue, overrides?: CallOverrides): Promise; supportsInterface(interfaceId: PromiseOrValue, overrides?: CallOverrides): Promise; transferFromOrMint(data: LibERC1155LazyMint.Mint1155DataStruct, from: PromiseOrValue, to: PromiseOrValue, amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; mintAndTransfer(data: LibERC1155LazyMint.Mint1155DataStruct, to: PromiseOrValue, _amount: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; updateAccount(_id: PromiseOrValue, _from: PromiseOrValue, _to: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue; }): Promise; getCreators(_id: PromiseOrValue, overrides?: CallOverrides): Promise; }; }