@avalanche-sdk/client
Version:
A TypeScript SDK for interacting with the Avalanche network through JSON-RPC APIs. This SDK provides a comprehensive set of tools to interact with all Avalanche chains (P-Chain, X-Chain, C-Chain) and various APIs, including wallet functionality for transa
14 lines (13 loc) • 470 B
text/typescript
/**
* The status of an atomic transaction
*
* - Accepted: The transaction is (or will be) accepted by every node. Check the blockHeight property
* - Processing: The transaction is being voted on by this node
* - Dropped: The transaction was dropped by this node because it thought the transaction invalid
* - Unknown: The transaction hasn't been seen by this node
*/
export type CChainAtomicTxStatus =
| "Accepted"
| "Processing"
| "Dropped"
| "Unknown";