@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
10 lines • 496 B
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";
//# sourceMappingURL=common.d.ts.map