Browser
A sign request in Xumm is a prompt to approve a transaction or action on the XRP Ledger. This page will show you how you can create a Sign Request, and how you can deliver the request to the end user.
Mobile
xumm.payload.create({
txjson: {
TransactionType: "Payment",
Destination: "r...",
Amount: "1000000"
},
options: {
return_url: {
app: "https://sample.test/?...",
web: "https://sample.test/?id={id}"
},
force_network: "MAINNET"
},
custom_meta: {
identifier: "123123",
instruction: "Please sign this to..."
}
}).then(payload => {
// Redirect directly to payload.next.always, or (preferable)
var btn = document.getElementById('launchXummBtn')
btn.setAttribute('href', payload.next.always)
})Desktop
Last updated
Was this helpful?