📂Backend (SDK / API)
Use your API key and secret obtained from the Xumm Developer Console & off you go. Using our SDK's, or building your own integration on top of our well documented APIs.
Backend integration intro here...
Sample code
import { Xumm } from "xumm";
const xumm = new Xumm("some-api-key", "some-secret-key");
(async () => {
console.log("pong", await xumm.ping());
const transaction = { TransactionType: 'SignIn' };
console.log("payload", await xumm.payload?.create(transaction))
})()
Last updated
Was this helpful?