Actions

Tendermint Deployments: Difference between revisions

From Chainlink Community Wiki

(Created page with "First, we need to clone the Chainlink Terra repository. <code>git clone https://github.com/smartcontractkit/chainlink-terra.git</code> Then we'll navigate into that newly downloaded directory <code> cd chainlink-terra</code> Next, we will create a <code>.env</code> file <code>touch .env</code> and update it with our 12 pnemonic words <code>nano .env</code> `MNEMONIC=your twelve words` Then we will want to build gauntlet <code>yarn</code> To test/confirm o...")
 
No edit summary
 
Line 1: Line 1:
Dependencies:
Rust and Cargo
<code>curl https://sh.rustup.rs -sSf | sh</code>
First, we need to clone the Chainlink Terra repository.
First, we need to clone the Chainlink Terra repository.


Line 9: Line 15:




Next, we will create a <code>.env</code> file  
We'll go ahead and compile and run the necessary contracts before continuing.
 
<code>cargo wasm</code>
 
 
Next, we will start getting gauntlet configured by creating a <code>.env</code> file  


<code>touch .env</code>
<code>touch .env</code>

Latest revision as of 20:52, 1 July 2022

Dependencies: Rust and Cargo

curl https://sh.rustup.rs -sSf | sh


First, we need to clone the Chainlink Terra repository.

git clone https://github.com/smartcontractkit/chainlink-terra.git


Then we'll navigate into that newly downloaded directory

cd chainlink-terra


We'll go ahead and compile and run the necessary contracts before continuing.

cargo wasm


Next, we will start getting gauntlet configured by creating a .env file

touch .env


and update it with our 12 pnemonic words

nano .env `MNEMONIC=your twelve words`


Then we will want to build gauntlet

yarn


To test/confirm our installation, we can run

yarn gauntlet -h

The above should print out the supported functions.


Once we've got the gauntlet tool installed and confirmed working, we will need to create an environment file for the desired network. In this example, we'll use agoricdev-13.


we'll first need to create a networks directory

mkdir networks

Then we'll create out .env file

nano networks/.env.agoricdev-13

We'll just need to provide the following information `NODE_URL=` `CHAIN_ID=agoricdev-13` `DEFAULT_GAS_PRICE=20` For the Node_URL, just put in your desired HTTP RPC endpoint.