UNPKG

myathhhh

Version:

Atomicals Javascript Library and CLI - atomicals.xyz

79 lines (78 loc) 8.46 kB
import { CommandResultInterface } from "../commands/command-result.interface"; import { AtomicalsGetFetchType } from "../commands/command.interface"; import { GetSubrealmInfoCommandResultInterface } from "../commands/get-subrealm-info-command"; import { IValidatedWalletInfo, IWalletRecord } from "../utils/validate-wallet-storage"; export interface BaseRequestOptions { rbf?: boolean; meta?: string[] | any; ctx?: string[] | any; init?: string[] | any; satsbyte?: number; satsoutput?: number; container?: string; bitworkc?: string; bitworkr?: string; parent?: string; parentOwner?: IWalletRecord; disableMiningChalk?: boolean; disableautoencode?: boolean; } export declare const BASE_REQUEST_OPTS_DEFAULTS: { satsbyte: number; satsoutput: number; rbf: boolean; }; export interface APIInterface { mintNftInteractive(options: BaseRequestOptions, files: string[], address: string, WIF: string): Promise<CommandResultInterface>; mintRealmInteractive(options: BaseRequestOptions, requestRealm: string, address: string, WIF: string): Promise<CommandResultInterface>; mintSubrealmInteractive(options: BaseRequestOptions, requestSubRealm: string, address: string, WIF: string, owner: IWalletRecord): Promise<CommandResultInterface>; mintContainerInteractive(options: BaseRequestOptions, requestContainer: string, address: string, WIF: string): Promise<CommandResultInterface>; mintContainerItemInteractive(options: BaseRequestOptions, container: string, itemId: string, manifestFile: string, address: string, WIF: string, owner: IWalletRecord): Promise<CommandResultInterface>; mintFtInteractive(options: BaseRequestOptions, file: string, supply: number, address: string, requestTicker: string, WIF: string): Promise<CommandResultInterface>; mintDftInteractive(options: BaseRequestOptions, address: string, ticker: string, WIF: string): Promise<CommandResultInterface>; initDftInteractive(options: BaseRequestOptions, file: string, address: string, requestTicker: string, mintAmount: number, maxMints: number, mintHeight: number, mintBitworkc: string, mintBitworkr: string, WIF: string): Promise<CommandResultInterface>; mintDatInteractive(options: BaseRequestOptions, filepath: string, givenFileName: string, address: string, WIF: string): Promise<CommandResultInterface>; enableSubrealmRules(options: BaseRequestOptions, realmOrSubrealm: string, file: string, funding: IWalletRecord, atomicalOwner: IWalletRecord): Promise<CommandResultInterface>; disableSubrealmRules(options: BaseRequestOptions, realmOrSubrealm: string, funding: IWalletRecord, atomicalOwner: IWalletRecord): Promise<CommandResultInterface>; setInteractive(options: BaseRequestOptions, atomicalId: string, jsonFilename: string, funding: IWalletRecord, atomicalOwner: IWalletRecord): Promise<CommandResultInterface>; deleteInteractive(options: BaseRequestOptions, atomicalId: string, keysToDelete: string[], funding: IWalletRecord, atomicalOwner: IWalletRecord): Promise<CommandResultInterface>; sealInteractive(options: BaseRequestOptions, atomicalId: string, funding: IWalletRecord, atomicalOwner: IWalletRecord): Promise<CommandResultInterface>; splatInteractive(options: BaseRequestOptions, atomicalId: string, funding: IWalletRecord, atomicalOwner: IWalletRecord): Promise<CommandResultInterface>; splitItneractive(options: BaseRequestOptions, atomicalId: string, funding: IWalletRecord, atomicalOwner: IWalletRecord): Promise<CommandResultInterface>; setContainerDmintInteractive(options: BaseRequestOptions, containerName: string, jsonFile: string, funding: IWalletRecord, atomicalOwner: IWalletRecord): Promise<CommandResultInterface>; transferInteractiveNft(options: BaseRequestOptions, atomicalId: string, owner: IWalletRecord, funding: IWalletRecord, receiveAddress: string, satsbyte: number, satsoutput: number): Promise<CommandResultInterface>; transferInteractiveFt(options: BaseRequestOptions, atomicalId: string, owner: IWalletRecord, funding: IWalletRecord, validatedWalletInfo: IValidatedWalletInfo, satsbyte: number, nofunding: boolean, atomicalIdReceipt?: string): Promise<CommandResultInterface>; transferInteractiveUtxos(options: BaseRequestOptions, owner: IWalletRecord, funding: IWalletRecord, validatedWalletInfo: IValidatedWalletInfo, satsbyte: number, nofunding: boolean, atomicalIdReceipt?: string): Promise<CommandResultInterface>; transferInteractiveBuilder(options: BaseRequestOptions, owner: IWalletRecord, funding: IWalletRecord, validatedWalletInfo: IValidatedWalletInfo, satsbyte: number, nofunding: boolean, atomicalIdReceipt?: string, atomicalIdReceiptType?: string, forceSkipValidation?: boolean): Promise<CommandResultInterface>; mergeInteractiveUtxos(options: BaseRequestOptions, owner: IWalletRecord, funding: IWalletRecord, validatedWalletInfo: IValidatedWalletInfo, satsbyte: number): Promise<CommandResultInterface>; summarySubrealms(address: string, filter: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; summaryContainers(address: string, filter: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; summaryRealms(address: string, filter: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; summaryTickers(address: string, filter: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; pendingSubrealms(options: BaseRequestOptions, address: string, funding: IWalletRecord, satsbyte: number, display: boolean, keepElectrumAlive: boolean): Promise<CommandResultInterface>; setRelationInteractive(options: BaseRequestOptions, atomicalId: string, relationName: any, values: string[], funding: IWalletRecord, atomicalOwner: IWalletRecord): Promise<CommandResultInterface>; getAtomicalFtInfo(atomicalId: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; getAtomical(atomicalId: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; getAtomicalLocation(atomicalId: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; getAtomicalHistory(atomicalId: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; getAtomicalState(atomicalId: string, verbose: boolean, keepElectrumAlive: boolean): Promise<CommandResultInterface>; getAtomicalStateHistory(atomicalId: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; getAtomicalEventHistory(atomicalId: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; searchTickers(prefix: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; searchRealms(prefix: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; searchContainers(prefix: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; getAtomicalByRealm(realm: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; getAtomicalByTicker(ticker: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; getAtomicalByContainerItem(container: string, itemId: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; getAtomicalByContainerItemValidated(container: string, itemId: string, manifestFile: string, address: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; resolveAtomical(atomicalIdOrNumberOrVariousName: string, atomicalsGetFetchType: AtomicalsGetFetchType, verbose: boolean, keepElectrumAlive: boolean): Promise<CommandResultInterface>; getRealmInfo(atomicalIdOrNumberOrVariousName: string, verbose: boolean, keepElectrumAlive: boolean): Promise<GetSubrealmInfoCommandResultInterface>; list(offset: number, limit: number, asc: boolean, verbose: boolean): Promise<CommandResultInterface>; getAtomicals(address: string): Promise<CommandResultInterface>; getAtomicalsAtLocation(address: string): Promise<CommandResultInterface>; getUtxos(address: string, keepElectrumAlive: boolean): Promise<CommandResultInterface>; broadcast(rawtx: string): Promise<CommandResultInterface>; download(locationIdOrTxId: string, name: string): Promise<CommandResultInterface>; walletInfo(address: string, verbose: boolean, keepElectrumAlive: boolean): Promise<CommandResultInterface>; serverVersion(): Promise<CommandResultInterface>; }