Converts an array of big integers into a hex string representation used to pass as messageHex sent to the contract (in TransactionObj) or as binary hex message attachment on real transactions.
messageHex
{ blockheight: 2, amount: 5000_0000n, messageHex: asHexMessage([1n, 100n]), sender: 1000n, recipient: 2000n,} Copy
{ blockheight: 2, amount: 5000_0000n, messageHex: asHexMessage([1n, 100n]), sender: 1000n, recipient: 2000n,}
The array of big integers to convert.
The hex string representation of the array of big integers.
Converts an array of big integers into a hex string representation used to pass as
messageHex
sent to the contract (in TransactionObj) or as binary hex message attachment on real transactions.