-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment_memo.js
79 lines (62 loc) · 1.87 KB
/
payment_memo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
Submit a payment with a memo field entry
in this case the base64 representation of the local file image.js
*/
var Remote = require('ripple-lib').Remote;
var Amount = require('ripple-lib').Amount;
var ripple = require('ripple-lib');
var sjcl = require('sjcl');
var fromAccount = '';
var fromAccountSecret = '';
var toAccount = '';
var remote = new Remote({
trace : false,
trusted: true,
local_signing: true,
servers: [
{ host: 's-west.ripple.com', port: 443, secure: true }
]
});
remote.connect(function() {
console.log('connected to rippled\n');
submitXRPPayment(fromAccount, toAccount, 1);
});
function submitXRPPayment(fromAccount, toAccount, xrpAmount) {
// construct transaction
var transaction = new ripple.Transaction(remote);
transaction.payment(
fromAccount,
toAccount,
xrpAmount
);
// set secret
transaction.secret(fromAccountSecret);
var someString = ""
for (i=0; i<250; i++) {
someString += "𦨴";
}
// 1000 bytes, for 250 utf-8 characters that take up 4 bytes each
console.log(Buffer.byteLength(someString, 'utf-8'));
console.log(sjcl.codec.hex.fromBits(sjcl.codec.utf8String.toBits(someString)).length/2);
// set memo
transaction.addMemo(void(0), someString);
console.log('\nSubmitting transaction\n');
var request = transaction.submit(function(err, res) {
if (err) {
console.error('Error occurred while submitting', err);
} else {
console.log(JSON.stringify(res, null, 2));
}
});
request.on('error', function(message) {
console.log('error', message);
});
request.on('success', function(message) {
console.log('success', message);
// var memo = message.tx_json.Memos[0].Memo.MemoData;
// console.log(sjcl.codec.utf8String.fromBits(sjcl.codec.hex.toBits(memo)));
});
request.on('state', function(message) {
console.log('state', message);
});
}