export interface Transaction { readonly hash: Hash256; readonly version: number; readonly nonce: number; readonly sender: Address; readonly systemFee: number; readonly networkFee: number; readonly validUntilBlock: number; readonly height: number; readonly script: Buffer; readonly [OpaqueTagSymbol0]: unique symbol; }
(hash: Hash256) => Transaction
const transactionHash = Hash256.from('0xd6572a459b95d9136b7a713c5485ca709f9efa4f08f1c25dd792672d2bd75bfb'); const transaction = Transaction.for(transactionHash);