scripts
This repository contains example scripts in JS for xx network basic interactions.
localnet
This directory includes a makefile and binaries to run a single-node local xx network blockchain in dev mode.
In order to download the binaries, git lfs is used. Refer to https://git-lfs.github.com/ in order to install this tool.
You can also compile the chain binary directly from the source xxchain.
You can run the local network using the Makefile:
cd localnet
make run
To stop the network, simply do make stop
.
walletgen
This directory contains a script with an example of how to generate an xx network Sleeve wallet.
It uses golang code compiled to WASM to generate the quantum-secure wallet, and
@polkadot/keyring
to create a standard xx network wallet from the Sleeve's output mnemonic.
address-validation
This directory contains a script with address validation logic for xx network. It has examples of valid and invalid xx network addresses, and valid addresses on other networks, which are invalid in xx network.
get-transfers
This directory contains a script with logic to detect a transfer starting from a specified address.
In order to run this script, first start the local network as described above.
transactions + offline-sign
These two directories contain scripts that should be used together. The scripts demonstrate a way to generate transactions connected to a node, but doing the actual signing on a separate offline machine.
The transactions script has an example of creating a transfer extrinsic, sending 1000 coins from Alice to Bob. These 2 accounts are included in the dev network. The script will output the signing payload to the console and wait for the signature to proceed.
The offline-sing script simply waits for a signing payload to be input into the console, and will sign it using Alice's wallet. Then it outputs the signature, which can be input into the first script.
In order to run these script, first start the local network as described above.