sequence-sdk
v2.2.4
Published
SDK for Sequence
Readme
Sequence Node SDK
Usage
Get the module
The Sequence SDK is available via npm. Node 4 or greater is required.
To install, add the sequence-sdk NPM module to your package.json:
{
"dependencies": {
"sequence-sdk": "~2.2.4"
}
}TypeScript
If you're using TypeScript, include the following in your tsconfig.json:
{
"compilerOptions": {
"lib": ["es2015", "es2016", "esnext"],
"types": ["node"]
}
}Also, run:
npm i --save-dev @types/nodeIn your code
const sequence = require('sequence-sdk')
const ledger = new sequence.Client({
ledgerName: 'ledger',
credential: '...',
})Calling convention
Most SDK methods return Promise objects, which you can use with async/await, or consume directly.
With async/await:
async function main() {
try {
const account = await ledger.accounts.create({...})
// operate on account
} catch (err) {
// handle errors
}
}With the Promise object itself:
function main() {
return ledger.accounts.create({...}).then(account => {
// operate on account
}).catch(err => {
// handle errors
})
}Documentation
Comprehensive instructions and examples are available in the developer documentation.
