-
Notifications
You must be signed in to change notification settings - Fork 0
/
4trust.js
65 lines (53 loc) · 1.92 KB
/
4trust.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
const {XummSdk} = require('xumm-sdk')
const Sdk = new XummSdk('26e827d2-a3ff-43e7-aa49-149cfce70396', '7fe8f030-80e5-4481-b20f-c46087e9bc54')
const main = async () => {
//console.log(`Hi! This is where we'll be writing some code`)
///const appInfo = await Sdk.ping()
///console.log(appInfo.application.name)
const appInfo = await Sdk.ping()
console.log(appInfo.application.name)
const request = {
"txjson": {
"TransactionType": "TrustSet",
"Account": "rN8Ww2gWMsriJTCnJztSmgjfjmziETk1T3",
"Fee": "12",
"Flags": 131072,
"LimitAmount": {
"currency": "POP",
"issuer": "rJkNwMsXjbM1FcpkXjSowDnh2Am46EP1eW",
"value": "1000000000000000e-94"
}
},
"user_token": "5decf1d6-cc29-4859-9d5e-0a33d10da79a"
}
const subscription = await Sdk.payload.createAndSubscribe(request, event => {
console.log('New payload event:', event.data)
if (event.data.signed === true) {
// No need to console.log here, we'll do that below
return event.data
}
if (event.data.signed === false) {
// No need to console.log here, we'll do that below
return false
}
})
console.log(subscription.created)
/**
* Now let's wait until the subscription resolved (by returning something)
* in the callback function.
*/
const resolveData = await subscription.resolved
if (resolveData.signed === false) {
console.log('The sign request was rejected :(')
}
if (resolveData.signed === true) {
console.log('Woohoo! The sign request was signed :)')
/**
* Let's fetch the full payload end result, and get the issued
* user token, we can use to send our next payload per Push notification
*/
const result = await Sdk.payload.get(resolveData.payload_uuidv4)
console.log('User token:', result.application.issued_user_token)
}
}
main()