blockfrost-js-ratelimited
Version:
A JavaScript/TypeScript SDK for interacting with the https://blockfrost.io API
15 lines (14 loc) • 1.61 kB
TypeScript
import { components } from '../../../types/OpenApi';
import { BlockFrostAPI } from '../../../index';
export declare function txs(this: BlockFrostAPI, hash: string): Promise<components['schemas']['tx_content']>;
export declare function txsUtxos(this: BlockFrostAPI, hash: string): Promise<components['schemas']['tx_content_utxo']>;
export declare function txsStakes(this: BlockFrostAPI, hash: string): Promise<components['schemas']['tx_content_stake_addr']>;
export declare function txsDelegations(this: BlockFrostAPI, hash: string): Promise<components['schemas']['tx_content_delegations']>;
export declare function txsWithdrawals(this: BlockFrostAPI, hash: string): Promise<components['schemas']['tx_content_withdrawals']>;
export declare function txsMirs(this: BlockFrostAPI, hash: string): Promise<components['schemas']['tx_content_mirs']>;
export declare function txsPoolUpdates(this: BlockFrostAPI, hash: string): Promise<components['schemas']['tx_content_pool_certs']>;
export declare function txsPoolRetires(this: BlockFrostAPI, hash: string): Promise<components['schemas']['tx_content_pool_retires']>;
export declare function txsMetadata(this: BlockFrostAPI, hash: string): Promise<components['schemas']['tx_metadata_label_json']>;
export declare function txsMetadataCbor(this: BlockFrostAPI, hash: string): Promise<components['schemas']['tx_content_metadata_cbor']>;
export declare function txsRedeemers(this: BlockFrostAPI, hash: string): Promise<components['schemas']['tx_content_redeemers']>;
export declare function txSubmit(this: BlockFrostAPI, transaction: Uint8Array | string): Promise<string>;