Getting Started
This page walks you through the basics of installing and using the Idexo Software Development Kit (SDK) or alternatively using the idexo app to get set-up.
To set-up your smart contracts and transactions in a simple visual interface, you can register an account at https://app.idexo.com/register.
In the app you can accomplish everything from the SDK and more in a simple, intuitive and visual way.
You can also combine using the visual app and the SDK if that suits your use case.
Install the SDK using NPM:
$ npm install idexo-sdk
This installs the SDK and gives you access to simplified methods that communicate with the Idexo API for processing your multi-blockchain developer transactions.
Now that you've installed the SDK, let's create a file called index.js that will upload plain text permanently to Arweave:
const ido = require('idexo-sdk')
ido.Storage.uploadPlain('arweave', 'Hello World')
.then((res) => console.log(res.data))
Last modified 8mo ago