Technical requirements

You can access the code files of this chapter on the following GitHub link:

https://github.com/PacktPublishing/Blockchain-Development-for-Finance-Projects/tree/master/Chapter%205/Cross%20Border

For this project, we'll be working with the Stellar/quickstart Docker container provided by the Stellar Foundation for trying out the Stellar platform. The details of the Docker image can be found at the following link: https://hub.docker.com/r/stellar/quickstart/.

I'm using Ubuntu 18.04.2 LTS for running the applications and deploying my blockchain. This project assumes that you are working on a UNIX operating system. Additionally, this project assumes you have node.js and npm installed. I'm using node version 13.0.1 annpm version 6.12.0. You would also need the latest version of Docker and Docker Compose.

We'll be launching a Docker container with a single node, single client-server private instance of the Stellar platform. 

To download the Docker image and launch the container, run the following command in a Terminal window:

docker run --rm -it -p "8000:8000" --name stellar stellar/quickstart --standalone

This runs a standalone instance of the Stellar network with a single client and single node that will act as our development environment. It also runs a Postgres instance that stores transaction data that can be retrieved using the Horizon client.

We'll be configuring this network instance further in the Setting up a Test Network section.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.191.5.239