We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement fetcher capability for maestro and blockfrost.
Fetcher type on mesh:
export interface IFetcher { fetchAccountInfo(address: string): Promise<AccountInfo>; fetchAddressUTxOs(address: string, asset?: string): Promise<UTxO[]>; fetchAssetAddresses( asset: string, ): Promise<{ address: string; quantity: string }[]>; fetchAssetMetadata(asset: string): Promise<AssetMetadata>; fetchBlockInfo(hash: string): Promise<BlockInfo>; fetchCollectionAssets( policyId: string, cursor?: number | string, ): Promise<{ assets: Asset[]; next?: string | number | null }>; fetchHandle(handle: string): Promise<object>; fetchHandleAddress(handle: string): Promise<string>; fetchProtocolParameters(epoch: number): Promise<Protocol>; fetchTxInfo(hash: string): Promise<TransactionInfo>; fetchUTxOs(hash: string): Promise<UTxO[]>; get(url: string): Promise<any>; } export interface ISubmitter { submitTx(tx: string): Promise<string>; } export interface IEvaluator { evaluateTx(tx: string): Promise<Omit<Action, "data">[]>; }
The text was updated successfully, but these errors were encountered:
twwu123
No branches or pull requests
Objective
Implement fetcher capability for maestro and blockfrost.
Reference
Fetcher type on mesh:
Tasks
The text was updated successfully, but these errors were encountered: