With Spark Token, we will observe the effects of deflationary tokens on long term price stability. We followed the Bomb Token’s model of burning a percentage of transacted amounts, steadily and gradually decreasing the total token supply to achieve our token’s deflationary nature. Deployed on the Tezos platform with an initial supply of one million tokens, Spark will burn 2% of transactions. No new coins will be minted. This project is still in very early development phase. The token is yet to be released to the public.
Whitepaper: Link
Reddit: Link
Contract: Not deployed on the mainnet yet.
On Linux
- Update system:
$ sudo apt-get update
- Install libraries:
$ sudo apt install -y rsync git m4 build-essential patch unzip bubblewrap wget
- Download opam compiler:
$ https://github.com/ocaml/opam/releases/download/2.0.5/opam-2.0.5-x86_64-linux
- Copy opam compiler into bin:
$ sudo cp opam-2.0.5-x86_64-linux /usr/local/bin/opam
- Run tezos node:
$ docker run --rm -it tezos/tezos:mainnet tezos-node
- Give permission to use the compiler:
$ sudo chmod a+x /usr/local/bin/opam
- Fetch Gitlab Tezos Folder:
$ git clone https://gitlab.com/Tezos/Tezos.git
- Change your directory to the Tezos folder:
$ cd Tezos
$ opam init --bare
- The client will now prompt you to answer 2 questions, simply enter 'n' for both:
$ make build-deps
- Ignore the warning 'No repository Tezos found' and continue:
$ eval $(opam env)
$ make
$ export PATH=~/Tezos:$PATH
$ source ./src/bin_client/bash-completion.sh
$ export TEZOS_CLIENT_UNSAFE_DISABLE_DISCLAIMER=Y
Using Docker Images
Please refer to this guide, but to summarize the key points:
-
You will need a working installation of Docker and docker-compose on a machine with architecture x86_64. If you wish to install via terminal, refer to this guide on installing docker via terminal on various operating systems.
-
In your terminal, run the following commands:
$ wget -O carthagenet.sh https://gitlab.com/tezos/tezos/raw/latest-release/scripts/tezos-docker-manager.sh
$ chmod +x carthagenet.sh
$ ./carthagenet.sh start
This should download the carthage testnet on your machine. Locate it on your computer and place it in a directory of your choice. Note that test networks are updated regularly, so please ensure that you are getting the latest test network in the future instead of carthagenet. Alphanet and babylonnet were the test networks before carthagenet, and carthagenet will be replaced like those old networks later in time.
- You should be able to run your Tezos node and Michelson scripts on carthagenet now.