mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 19:55:54 +00:00
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
'use strict'
|
|
const RippleAPI = require('ripple-lib').RippleAPI
|
|
|
|
// This example connects to a public Test Net server
|
|
const api = new RippleAPI({server: 'wss://s.altnet.rippletest.net:51233'})
|
|
api.connect().then(() => {
|
|
console.log('Connected')
|
|
|
|
const sender = 'rBXsgNkPcDN2runsvWmwxk3Lh97zdgo9za'
|
|
const options = {
|
|
// Allow up to 60 ledger versions (~5 min) instead of the default 3 versions
|
|
// before this transaction fails permanently.
|
|
"maxLedgerVersionOffset": 60
|
|
}
|
|
return api.prepareCheckCancel(sender, {
|
|
"checkID": "2E0AD0740B79BE0AAE5EDD1D5FC79E3C5C221D23C6A7F771D85569B5B91195C2"
|
|
}, options)
|
|
|
|
}).then(prepared => {
|
|
console.log("txJSON:", prepared.txJSON);
|
|
|
|
// Disconnect and return
|
|
}).then(() => {
|
|
api.disconnect().then(() => {
|
|
console.log('Disconnected')
|
|
process.exit()
|
|
})
|
|
}).catch(console.error)
|
|
|
|
|
|
// Example output:
|
|
//
|
|
// Connected
|
|
// txJSON: {"Account":"rBXsgNkPcDN2runsvWmwxk3Lh97zdgo9za",
|
|
// "TransactionType":"CheckCancel",
|
|
// "CheckID":"2E0AD0740B79BE0AAE5EDD1D5FC79E3C5C221D23C6A7F771D85569B5B91195C2",
|
|
// "Flags":2147483648,
|
|
// "LastLedgerSequence":8004884,
|
|
// "Fee":"12",
|
|
// "Sequence":7}
|
|
// Disconnected
|