Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.26 KB

README.md

File metadata and controls

50 lines (33 loc) · 1.26 KB

Verify Smart Contract Application

Target

Source code verification provides transparency for users interacting with smart contracts. By uploading the source code, AuraScan will match the compiled code with that on the blockchain. Just like contracts, a "smart contract" should provide end users with more information on what they are "digitally signing" for and give users an opportunity to audit the code to independently verify that it actually does what it is supposed to do.

Method

This project is built following the flow of verifying a smart contract of CosmWasm documentation.

Main Flow

image

Getting started

1. Clone the repository.

git clone https://github.com/aura-nw/verify-contract

2. Enter your newly-cloned folder.

cd verify-contract

3. Create Environment variables file.

cp .env.example .env

4. Install dependencies. (Make sure nodejs is installed: https://nodejs.org/en/)

npm i

Setup for development

Multisignature backend use MySQL and Nodejs. Make sure installed them.

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev