postchain-client
Version:
Client library for accessing a Postchain node through REST.
12 lines (11 loc) • 350 B
TypeScript
/// <reference types="node" />
export interface ICCFOperationArgsIntraCluster {
sourceBlockchainRid: Buffer;
transactionHash: Buffer;
transactionProof: Buffer;
}
export interface ICCFOperationArgsIntraNetwork extends ICCFOperationArgsIntraCluster {
transactionData: Buffer;
transactionIndex: number;
anchoringProof: Buffer;
}