Skip to main content

Prepare Your Development Environment

To run the code in this tutorial, you will need the following:

(optional) Download the Code

You can download the tutorials codebase to follow while you read the next sections.

Running Code Examples

If you plan on using the provided code example, please read the article How To Run Code Examples.

Shimmer Addresses and Outputs

The tutorial's codebase uses several predefined Shimmer addresses and outputs. If you are going to use other addresses, you will need to update the code accordingly. Likewise, the tutorial codebase assumes a particular state of the addresses and outputs. Before executing the code, please ensure your addresses and outputs are in the expected state.

Available Commands

Generate Addresses

You can run the generate-addresses script by running the following command from the example's directory:

npm run address

Send a Value Transaction

You can run the send-value-transaction script by running the following command from the example's directory:

npm run transaction

Sweep Outputs

You can run the sweep-outputs script by running the following command from the example's directory:

npm run sweep

Create Your package.json File

You can create your package.json file from the example below and place it in your projects base directory:

{
"name": "tutorial",
"version": "1.0.0",
"scripts": {
"dist": "tsc",
"address": "node dist/generate-addresses",
"transaction": "node dist/send-value-transactions",
"sweep": "node dist/sweep-outputs"
},
"dependencies": {
"@iota/crypto.js": "2.0.0-rc.1",
"@iota/iota.js": "2.0.0-rc.2",
"@iota/util.js": "2.0.0-rc.1",
"@iota/pow-neon.js": "2.0.0-rc.2"
},
"devDependencies": {
"typescript": "^4.4.3",
"@types/node": "18.7.23"
}
}

After you have created the package.json file, you can install all the necessary dependencies by running the following command from the same directory:

npm install

Troubleshooting

If you are getting any errors during the installation process please make sure your system is using Node.js 16. You can check your node version by running the following command:

node -v