-
Notifications
You must be signed in to change notification settings - Fork 162
- accounts
- accountsAddresses
- accountsDelegations
- accountsHistory
- accountsRegistrations
- accountsRewards
- addresses
- addressesTotal
- addressesTransactions
- addressesTransactionsAll
- addressesTxs
- addressesTxsAll
- addressesUtxos
- addressesUtxosAll
- apiUrl
- assets
- assetsAddresses
- assetsById
- assetsHistory
- assetsPolicyById
- assetsTransactions
- assetsTxs
- blocks
- blocksLatest
- blocksNext
- blocksPrevious
- blocksTxs
- blocksTxsAll
- epochs
- epochsBlocks
- epochsBlocksByPoolId
- epochsLatest
- epochsNext
- epochsParameters
- epochsPrevious
- epochsStakes
- epochsStakesByPoolId
- health
- healthClock
- ledger
- metadataTxsLabel
- metadataTxsLabelCbor
- metadataTxsLabels
- metrics
- metricsEndpoints
- poolMetadata
- pools
- poolsById
- poolsByIdBlocks
- poolsByIdDelegators
- poolsByIdHistory
- poolsByIdRelays
- poolsByIdUpdates
- poolsRetired
- poolsRetiring
- projectId
- root
- txSubmit
- txs
- txsDelegations
- txsMetadata
- txsMetadataCbor
- txsPoolRetires
- txsPoolUpdates
- txsStakes
- txsUtxos
- txsWithdrawals
- userAgent
• new BlockFrostAPI(options?
)
Name | Type |
---|---|
options? |
Options |
• accounts: (stakeAddress
: string
) => Promise
<components
["schemas"
]["account_content"
]>
▸ (stakeAddress
): Promise
<components
["schemas"
]["account_content"
]>
accounts - Obtain information about a specific stake account.
Name | Type | Description |
---|---|---|
stakeAddress |
string |
Bech32 stake address |
Promise
<components
["schemas"
]["account_content"
]>
Information about a specific stake account.
• accountsAddresses: (stakeAddress
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["account_addresses_content"
]>
▸ (stakeAddress
, page
, count?
, order?
): Promise
<components
["schemas"
]["account_addresses_content"
]>
accountsAddresses - Obtain information about the addresses of a specific account.
Name | Type | Description |
---|---|---|
stakeAddress |
string |
Bech32 stake address |
page |
number |
- |
count |
number |
- |
order |
"asc" | "desc"
|
- |
Promise
<components
["schemas"
]["account_addresses_content"
]>
Information about the addresses of a specific account.
• accountsDelegations: (stakeAddress
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["account_delegation_content"
]>
▸ (stakeAddress
, page
, count?
, order?
): Promise
<components
["schemas"
]["account_delegation_content"
]>
accountsDelegations - Obtain information about the delegation of a specific account.
Name | Type | Description |
---|---|---|
stakeAddress |
string |
Bech32 stake address |
page |
number |
- |
count |
number |
- |
order |
"asc" | "desc"
|
- |
Promise
<components
["schemas"
]["account_delegation_content"
]>
Information about the delegation of a specific account.
• accountsHistory: (stakeAddress
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["account_history_content"
]>
▸ (stakeAddress
, page
, count?
, order?
): Promise
<components
["schemas"
]["account_history_content"
]>
accountsHistory - Obtain information about the history of a specific account.
Name | Type | Description |
---|---|---|
stakeAddress |
string |
Bech32 stake address |
page |
number |
- |
count |
number |
- |
order |
"asc" | "desc"
|
- |
Promise
<components
["schemas"
]["account_history_content"
]>
Information about the history of a specific account.
• accountsRegistrations: (stakeAddress
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["account_registration_content"
]>
▸ (stakeAddress
, page
, count?
, order?
): Promise
<components
["schemas"
]["account_registration_content"
]>
accountsRegistrations - Obtain information about the registrations and deregistrations of a specific account.
Name | Type | Description |
---|---|---|
stakeAddress |
string |
Bech32 stake address |
page |
number |
- |
count |
number |
- |
order |
"asc" | "desc"
|
- |
Promise
<components
["schemas"
]["account_registration_content"
]>
Information about the registrations and deregistrations of a specific account.
• accountsRewards: (stakeAddress
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["account_reward_content"
]>
▸ (stakeAddress
, page
, count?
, order?
): Promise
<components
["schemas"
]["account_reward_content"
]>
accountsRewards - Obtain information about the history of a specific account.
Name | Type | Description |
---|---|---|
stakeAddress |
string |
Bech32 stake address |
page |
number |
- |
count |
number |
- |
order |
"asc" | "desc"
|
- |
Promise
<components
["schemas"
]["account_reward_content"
]>
Information about the history of a specific account.
• addresses: (address
: string
) => Promise
<components
["schemas"
]["address_content"
]>
▸ (address
): Promise
<components
["schemas"
]["address_content"
]>
addresses
Name | Type |
---|---|
address |
string |
Promise
<components
["schemas"
]["address_content"
]>
xxx
• addressesTotal: (address
: string
) => Promise
<components
["schemas"
]["address_content_total"
]>
▸ (address
): Promise
<components
["schemas"
]["address_content_total"
]>
addressesTotal
Name | Type |
---|---|
address |
string |
Promise
<components
["schemas"
]["address_content_total"
]>
xxx
• addressesTransactions: (address
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
, from
: null
, to
: null
) => Promise
<components
["schemas"
]["address_transactions_content"
] | []>
▸ (address
, page
, count?
, order?
, from?
, to?
): Promise
<components
["schemas"
]["address_transactions_content"
] | []>
addressesTransactions
Name | Type | Default value |
---|---|---|
address |
string |
undefined |
page |
number |
undefined |
count |
number |
undefined |
order |
"asc" | "desc"
|
undefined |
from |
null |
undefined |
to |
null |
null |
Promise
<components
["schemas"
]["address_transactions_content"
] | []>
xxx
• addressesTransactionsAll: (address
: string
, order
: "asc"
| "desc"
, batchSize
: number
) => Promise
<components
["schemas"
]["address_transactions_content"
] | []>
▸ (address
, order
, batchSize?
): Promise
<components
["schemas"
]["address_transactions_content"
] | []>
addressesTransactionsAll
Name | Type |
---|---|
address |
string |
order |
"asc" | "desc"
|
batchSize |
number |
Promise
<components
["schemas"
]["address_transactions_content"
] | []>
xxx
• addressesTxs: (address
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["address_txs_content"
] | []>
▸ (address
, page
, count?
, order?
): Promise
<components
["schemas"
]["address_txs_content"
] | []>
addressesTxs
Name | Type |
---|---|
address |
string |
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["address_txs_content"
] | []>
xxx
• addressesTxsAll: (address
: string
, order
: "asc"
| "desc"
, batchSize
: number
) => Promise
<components
["schemas"
]["address_txs_content"
] | []>
▸ (address
, order
, batchSize?
): Promise
<components
["schemas"
]["address_txs_content"
] | []>
addressesTxsAll
Name | Type |
---|---|
address |
string |
order |
"asc" | "desc"
|
batchSize |
number |
Promise
<components
["schemas"
]["address_txs_content"
] | []>
xxx
• addressesUtxos: (address
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["address_utxo_content"
]>
▸ (address
, page
, count?
, order?
): Promise
<components
["schemas"
]["address_utxo_content"
]>
addressesUtxos
Name | Type |
---|---|
address |
string |
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["address_utxo_content"
]>
xxx
• addressesUtxosAll: (address
: string
, order
: "asc"
| "desc"
, batchSize
: number
) => Promise
<components
["schemas"
]["address_utxo_content"
]>
▸ (address
, order
, batchSize?
): Promise
<components
["schemas"
]["address_utxo_content"
]>
addressesUtxosAll
Name | Type |
---|---|
address |
string |
order |
"asc" | "desc"
|
batchSize |
number |
Promise
<components
["schemas"
]["address_utxo_content"
]>
xxx
• apiUrl: string
• assets: (page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["assets"
]>
▸ (page
, count?
, order?
): Promise
<components
["schemas"
]["assets"
]>
assets - List of assets.
Name | Type |
---|---|
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["assets"
]>
List of assets.
• assetsAddresses: (asset
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["asset_addresses"
]>
▸ (asset
, page
, count?
, order?
): Promise
<components
["schemas"
]["asset_addresses"
]>
assetsAddresses - List of a addresses containing a specific asset.
Name | Type | Description |
---|---|---|
asset |
string |
Concatenation of the policy_id and hex-encoded asset_name |
page |
number |
- |
count |
number |
- |
order |
"asc" | "desc"
|
- |
Promise
<components
["schemas"
]["asset_addresses"
]>
List of a addresses containing a specific asset.
• assetsById: (asset
: string
) => Promise
<components
["schemas"
]["asset"
]>
▸ (asset
): Promise
<components
["schemas"
]["asset"
]>
assetsById - Information about a specific asset.
Name | Type | Description |
---|---|---|
asset |
string |
Concatenation of the policy_id and hex-encoded asset_name |
Promise
<components
["schemas"
]["asset"
]>
Information about a specific asset.
• assetsHistory: (asset
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["asset_history"
]>
▸ (asset
, page
, count?
, order?
): Promise
<components
["schemas"
]["asset_history"
]>
assetsHistory - History of a specific asset.
Name | Type | Description |
---|---|---|
asset |
string |
Concatenation of the policy_id and hex-encoded asset_name |
page |
number |
- |
count |
number |
- |
order |
"asc" | "desc"
|
- |
Promise
<components
["schemas"
]["asset_history"
]>
History of a specific asset.
• assetsPolicyById: (policy
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["asset_addresses"
]>
▸ (policy
, page
, count?
, order?
): Promise
<components
["schemas"
]["asset_addresses"
]>
assetsPolicyById - List of asset minted under a specific policy.
Name | Type |
---|---|
policy |
string |
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["asset_addresses"
]>
List of asset minted under a specific policy.
• assetsTransactions: (asset
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["asset_transactions"
]>
▸ (asset
, page
, count?
, order?
): Promise
<components
["schemas"
]["asset_transactions"
]>
assetsTransactions - List of a specific asset transactions.
Name | Type | Description |
---|---|---|
asset |
string |
Concatenation of the policy_id and hex-encoded asset_name |
page |
number |
- |
count |
number |
- |
order |
"asc" | "desc"
|
- |
Promise
<components
["schemas"
]["asset_transactions"
]>
List of a specific asset transactions.
• assetsTxs: (asset
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["asset_txs"
]>
▸ (asset
, page
, count?
, order?
): Promise
<components
["schemas"
]["asset_txs"
]>
assetsTxs - List of a specific asset transactions.
Name | Type | Description |
---|---|---|
asset |
string |
Concatenation of the policy_id and hex-encoded asset_name |
page |
number |
- |
count |
number |
- |
order |
"asc" | "desc"
|
- |
Promise
<components
["schemas"
]["asset_txs"
]>
List of a specific asset transactions.
• blocks: (hashOrNumber
: HashOrNumber
) => Promise
<components
["schemas"
]["block_content"
]>
▸ (hashOrNumber
): Promise
<components
["schemas"
]["block_content"
]>
addressesUtxos
Name | Type |
---|---|
hashOrNumber |
HashOrNumber |
Promise
<components
["schemas"
]["block_content"
]>
xxx
• blocksLatest: () => Promise
<components
["schemas"
]["block_content"
]>
▸ (): Promise
<components
["schemas"
]["block_content"
]>
blocksLatest
Promise
<components
["schemas"
]["block_content"
]>
xxx
• blocksNext: (hashOrNumber
: HashOrNumber
, page
: number
, count
: number
) => Promise
<components
["schemas"
]["block_content_array"
]>
▸ (hashOrNumber
, page
, count?
): Promise
<components
["schemas"
]["block_content_array"
]>
blocksNext
Name | Type |
---|---|
hashOrNumber |
HashOrNumber |
page |
number |
count |
number |
Promise
<components
["schemas"
]["block_content_array"
]>
xxx
• blocksPrevious: (hashOrNumber
: HashOrNumber
, page
: number
, count
: number
) => Promise
<components
["schemas"
]["block_content_array"
]>
▸ (hashOrNumber
, page
, count?
): Promise
<components
["schemas"
]["block_content_array"
]>
blockPrevious
Name | Type |
---|---|
hashOrNumber |
HashOrNumber |
page |
number |
count |
number |
Promise
<components
["schemas"
]["block_content_array"
]>
xxx
• blocksTxs: (hashOrNumber
: HashOrNumber
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["block_content_txs"
]>
▸ (hashOrNumber
, page
, count?
, order?
): Promise
<components
["schemas"
]["block_content_txs"
]>
addressesUtxos
Name | Type |
---|---|
hashOrNumber |
HashOrNumber |
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["block_content_txs"
]>
xxx
• blocksTxsAll: (hashOrNumber
: string
| number
, order
: "asc"
| "desc"
, batchSize
: number
) => Promise
<components
["schemas"
]["block_content_txs"
]>
▸ (hashOrNumber
, order
, batchSize?
): Promise
<components
["schemas"
]["block_content_txs"
]>
blocksTxsAll
Name | Type |
---|---|
hashOrNumber |
string | number
|
order |
"asc" | "desc"
|
batchSize |
number |
Promise
<components
["schemas"
]["block_content_txs"
]>
xxx
• epochs: (number
: number
) => Promise
<components
["schemas"
]["epoch_content"
]>
▸ (number
): Promise
<components
["schemas"
]["epoch_content"
]>
epochs
Name | Type |
---|---|
number |
number |
Promise
<components
["schemas"
]["epoch_content"
]>
xxx
• epochsBlocks: (number
: number
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["epoch_block_content"
]>
▸ (number
, page
, count?
, order?
): Promise
<components
["schemas"
]["epoch_block_content"
]>
epochsBlocks
Name | Type |
---|---|
number |
number |
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["epoch_block_content"
]>
xxx
• epochsBlocksByPoolId: (number
: number
, poolId
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["epoch_stake_pool_content"
]>
▸ (number
, poolId
, page
, count?
, order?
): Promise
<components
["schemas"
]["epoch_stake_pool_content"
]>
epochsBlocksByPoolId
Name | Type |
---|---|
number |
number |
poolId |
string |
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["epoch_stake_pool_content"
]>
xxx
• epochsLatest: () => Promise
<components
["schemas"
]["epoch_content"
]>
▸ (): Promise
<components
["schemas"
]["epoch_content"
]>
epochsLatest
Promise
<components
["schemas"
]["epoch_content"
]>
xxx
• epochsNext: (number
: number
, page
: number
, count
: number
) => Promise
<components
["schemas"
]["epoch_content_array"
]>
▸ (number
, page
, count?
): Promise
<components
["schemas"
]["epoch_content_array"
]>
epochsNext
Name | Type |
---|---|
number |
number |
page |
number |
count |
number |
Promise
<components
["schemas"
]["epoch_content_array"
]>
xxx
• epochsParameters: (number
: number
) => Promise
<components
["schemas"
]["epoch_param_content"
]>
▸ (number
): Promise
<components
["schemas"
]["epoch_param_content"
]>
epochsParameters
Name | Type |
---|---|
number |
number |
Promise
<components
["schemas"
]["epoch_param_content"
]>
xxx
• epochsPrevious: (number
: number
, page
: number
, count
: number
) => Promise
<components
["schemas"
]["epoch_content_array"
]>
▸ (number
, page
, count?
): Promise
<components
["schemas"
]["epoch_content_array"
]>
epochsPrevious
Name | Type |
---|---|
number |
number |
page |
number |
count |
number |
Promise
<components
["schemas"
]["epoch_content_array"
]>
xxx
• epochsStakes: (number
: number
, page
: number
, count
: number
) => Promise
<components
["schemas"
]["epoch_stake_content"
]>
▸ (number
, page
, count?
): Promise
<components
["schemas"
]["epoch_stake_content"
]>
epochsStakes
Name | Type |
---|---|
number |
number |
page |
number |
count |
number |
Promise
<components
["schemas"
]["epoch_stake_content"
]>
xxx
• epochsStakesByPoolId: (number
: number
, poolId
: string
, page
: number
, count
: number
) => Promise
<components
["schemas"
]["epoch_block_content"
]>
▸ (number
, poolId
, page
, count?
): Promise
<components
["schemas"
]["epoch_block_content"
]>
epochsStakesByPoolId
Name | Type |
---|---|
number |
number |
poolId |
string |
page |
number |
count |
number |
Promise
<components
["schemas"
]["epoch_block_content"
]>
xxx
• health: () => Promise
<Object
>
▸ (): Promise
<Object
>
health
Promise
<Object
>
xxx
• healthClock: () => Promise
<Object
>
▸ (): Promise
<Object
>
healthClock
Promise
<Object
>
xxx
• ledger: () => Promise
<components
["schemas"
]["genesis_content"
]>
▸ (): Promise
<components
["schemas"
]["genesis_content"
]>
ledger
Promise
<components
["schemas"
]["genesis_content"
]>
xxx
• metadataTxsLabel: (label
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["tx_metadata_labels"
]>
▸ (label
, page
, count?
, order?
): Promise
<components
["schemas"
]["tx_metadata_labels"
]>
metadataTxsLabel
Name | Type |
---|---|
label |
string |
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["tx_metadata_labels"
]>
xxx
• metadataTxsLabelCbor: (label
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["tx_metadata_label_cbor"
]>
▸ (label
, page
, count?
, order?
): Promise
<components
["schemas"
]["tx_metadata_label_cbor"
]>
metadataTxsLabelCbor
Name | Type |
---|---|
label |
string |
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["tx_metadata_label_cbor"
]>
xxx
• metadataTxsLabels: (page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["tx_metadata_label_json"
]>
▸ (page
, count?
, order?
): Promise
<components
["schemas"
]["tx_metadata_label_json"
]>
metadataTxsLabels
Name | Type |
---|---|
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["tx_metadata_label_json"
]>
xxx
• metrics: () => Promise
<components
["schemas"
]["metrics"
]>
▸ (): Promise
<components
["schemas"
]["metrics"
]>
metrics
Promise
<components
["schemas"
]["metrics"
]>
xxx
• metricsEndpoints: () => Promise
<components
["schemas"
]["metrics"
]>
▸ (): Promise
<components
["schemas"
]["metrics"
]>
metricsEndpoints
Promise
<components
["schemas"
]["metrics"
]>
xxx
• poolMetadata: (poolId
: string
) => Promise
<components
["schemas"
]["pool_metadata"
]>
▸ (poolId
): Promise
<components
["schemas"
]["pool_metadata"
]>
poolMetadata
Name | Type |
---|---|
poolId |
string |
Promise
<components
["schemas"
]["pool_metadata"
]>
xxx
• pools: (page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["pool_list"
]>
▸ (page
, count?
, order?
): Promise
<components
["schemas"
]["pool_list"
]>
pools
Name | Type |
---|---|
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["pool_list"
]>
xxx
• poolsById: (poolId
: string
) => Promise
<components
["schemas"
]["pool"
]>
▸ (poolId
): Promise
<components
["schemas"
]["pool"
]>
poolsById
Name | Type |
---|---|
poolId |
string |
Promise
<components
["schemas"
]["pool"
]>
xxx
• poolsByIdBlocks: (poolId
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["pool_blocks"
]>
▸ (poolId
, page
, count?
, order?
): Promise
<components
["schemas"
]["pool_blocks"
]>
poolsByIdBlocks
Name | Type |
---|---|
poolId |
string |
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["pool_blocks"
]>
xxx
• poolsByIdDelegators: (poolId
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["pool_delegators"
]>
▸ (poolId
, page
, count?
, order?
): Promise
<components
["schemas"
]["pool_delegators"
]>
poolsByIdDelegators
Name | Type |
---|---|
poolId |
string |
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["pool_delegators"
]>
xxx
• poolsByIdHistory: (poolId
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["pool_history"
]>
▸ (poolId
, page
, count?
, order?
): Promise
<components
["schemas"
]["pool_history"
]>
poolsByIdHistory
Name | Type |
---|---|
poolId |
string |
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["pool_history"
]>
xxx
• poolsByIdRelays: (poolId
: string
) => Promise
<components
["schemas"
]["pool_relays"
]>
▸ (poolId
): Promise
<components
["schemas"
]["pool_relays"
]>
poolsByIdRelays
Name | Type |
---|---|
poolId |
string |
Promise
<components
["schemas"
]["pool_relays"
]>
xxx
• poolsByIdUpdates: (poolId
: string
, page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["pool_updates"
]>
▸ (poolId
, page
, count?
, order?
): Promise
<components
["schemas"
]["pool_updates"
]>
poolsByIdUpdates
Name | Type |
---|---|
poolId |
string |
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["pool_updates"
]>
xxx
• poolsRetired: (page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["pool_list_retire"
]>
▸ (page
, count?
, order?
): Promise
<components
["schemas"
]["pool_list_retire"
]>
poolsRetired
Name | Type |
---|---|
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["pool_list_retire"
]>
xxx
• poolsRetiring: (page
: number
, count
: number
, order
: "asc"
| "desc"
) => Promise
<components
["schemas"
]["pool_list_retire"
]>
▸ (page
, count?
, order?
): Promise
<components
["schemas"
]["pool_list_retire"
]>
poolsRetiring
Name | Type |
---|---|
page |
number |
count |
number |
order |
"asc" | "desc"
|
Promise
<components
["schemas"
]["pool_list_retire"
]>
xxx
• Optional
projectId: string
• root: () => Promise
<Object
>
▸ (): Promise
<Object
>
root
Promise
<Object
>
xxx
• txSubmit: (transaction
: Uint8Array
) => Promise
<string>
▸ (transaction
): Promise
<string>
txSubmit
Name | Type |
---|---|
transaction |
Uint8Array |
Promise
<string>
xxx
• txs: (hash
: string
) => Promise
<components
["schemas"
]["tx_content"
]>
▸ (hash
): Promise
<components
["schemas"
]["tx_content"
]>
txs
Name | Type |
---|---|
hash |
string |
Promise
<components
["schemas"
]["tx_content"
]>
xxx
• txsDelegations: (hash
: string
) => Promise
<components
["schemas"
]["tx_content_delegations"
]>
▸ (hash
): Promise
<components
["schemas"
]["tx_content_delegations"
]>
txsDelegations
Name | Type |
---|---|
hash |
string |
Promise
<components
["schemas"
]["tx_content_delegations"
]>
xxx
• txsMetadata: (hash
: string
) => Promise
<components
["schemas"
]["tx_metadata_label_json"
]>
▸ (hash
): Promise
<components
["schemas"
]["tx_metadata_label_json"
]>
txsMetadata
Name | Type |
---|---|
hash |
string |
Promise
<components
["schemas"
]["tx_metadata_label_json"
]>
xxx
• txsMetadataCbor: (hash
: string
) => Promise
<components
["schemas"
]["tx_content_metadata_cbor"
]>
▸ (hash
): Promise
<components
["schemas"
]["tx_content_metadata_cbor"
]>
txsMetadataCbor
Name | Type |
---|---|
hash |
string |
Promise
<components
["schemas"
]["tx_content_metadata_cbor"
]>
xxx
• txsPoolRetires: (hash
: string
) => Promise
<components
["schemas"
]["tx_content_pool_retires"
]>
▸ (hash
): Promise
<components
["schemas"
]["tx_content_pool_retires"
]>
txsPoolRetires
Name | Type |
---|---|
hash |
string |
Promise
<components
["schemas"
]["tx_content_pool_retires"
]>
xxx
• txsPoolUpdates: (hash
: string
) => Promise
<components
["schemas"
]["tx_content_pool_certs"
]>
▸ (hash
): Promise
<components
["schemas"
]["tx_content_pool_certs"
]>
txsPoolUpdates
Name | Type |
---|---|
hash |
string |
Promise
<components
["schemas"
]["tx_content_pool_certs"
]>
xxx
• txsStakes: (hash
: string
) => Promise
<components
["schemas"
]["tx_content_stake_addr"
]>
▸ (hash
): Promise
<components
["schemas"
]["tx_content_stake_addr"
]>
txsStakes
Name | Type |
---|---|
hash |
string |
Promise
<components
["schemas"
]["tx_content_stake_addr"
]>
xxx
• txsUtxos: (hash
: string
) => Promise
<components
["schemas"
]["tx_content_utxo"
]>
▸ (hash
): Promise
<components
["schemas"
]["tx_content_utxo"
]>
txsUtxos
Name | Type |
---|---|
hash |
string |
Promise
<components
["schemas"
]["tx_content_utxo"
]>
xxx
• txsWithdrawals: (hash
: string
) => Promise
<components
["schemas"
]["tx_content_withdrawals"
]>
▸ (hash
): Promise
<components
["schemas"
]["tx_content_withdrawals"
]>
txsWithdrawals
Name | Type |
---|---|
hash |
string |
Promise
<components
["schemas"
]["tx_content_withdrawals"
]>
xxx
• Optional
userAgent: string