toMultisigBlob method

String toMultisigBlob(
  1. String address
)

Implementation

String toMultisigBlob(String address) {
  final result = STObject.fromValue(toXrpl(), true).toBytes();
  final accountIdBytes = AccountID.fromValue(address).buffer;
  return bytesToHex(Uint8List.fromList([
    ...hexToBytes(_transactionMultisigPrefix),
    ...result,
    ...accountIdBytes
  ]));
}