Giter Site home page Giter Site logo

blaize-tech / snglsdao-smartcontracts Goto Github PK

View Code? Open in Web Editor NEW

This project forked from singulardtv/snglsdao-smartcontracts

0.0 1.0 2.0 13.52 MB

Home Page: http://app.snglsdao.io

License: The Unlicense

JavaScript 19.63% TypeScript 65.48% Dockerfile 0.08% Shell 0.67% CSS 13.96% HTML 0.18%

snglsdao-smartcontracts's Introduction

Image description

snglsDao

snglsDao contracts

Pre Requirements

Use Node.js 10.16.0

nvm use 10.16.0

Alse you need python 2.7 intalled to prevent scrypt dependency compilation error

DAOstack Migration:

npm install --global @daostack/migration

Download

git clone https://github.com/blaize-tech/snglsDAO-smartcontracts.git

Install

cd snglsDAO-smartcontracts/dao-contracts
npm install
cd ../dao-web-app
npm install
cd ../token/airdrop
npm install
cd ../contracts
npm install

Run environment

Run the following command to spin up ganache (with the migrated contracts), the caching server and the alchemy server:

docker-compose up graph-node

Now, in a separate terminal run the following command to run web application:

npm run start-staging-rinkeby # rinkeby web version
npm run start-private # ganache (private net)web version

Access it on http://127.0.0.1:3000

Deploy DAO

Run migrations (in another tab)

cd ../dao-contracts
nvm use 8.10.0
npm run start

Testing

npm run test

Trouble shootings

Access errors on npm install

sudo chown -R $(whoami) ~/.npm
npm cache clean # or
npm cache verify # for npm@5 version and up

Deploy errors

Ensure that you use correct Node.js version in each window

โœ– Transaction failed: Error: Returned error: VM Exception while processing transaction: revert often occurs if the contract is already deployed on the network, do not forget to terminate docker-compose (in dao-web-app terminal window) and run

    docker-compose down

before a new launch.

snglsDAO web-app

Dependencies:

Installation

sudo apt-get install -y libsecret-1-dev
git clone https://github.com/daostack/alchemy.git
cd alchemy
npm ci

Run app locally

There are two ways to work with the snglsDAO. There is docker-compose file for quick setup. Alternatively, you can recreate the docker environment by installing an starting all services locally.

Working with docker

The easiest way to start developing is to work with docker. Here is a quick setup; there are more detailed instructions in here.

After you have installed docker, run the following command to spin up ganache (with the migrated contracts), the caching server and the alchemy server:

docker-compose up graph-node

Now, in a separate terminal run the following command to run snglsDAO:

npm run start

At this point you should be able to access snglsDAO web-app on http://127.0.0.1:3000.

See working with docker for details and troubleshooting.

snglsDAO Subgraph

snglsDAO subgraph for TheGraph project.

Our latest subgraph (https://thegraph.com/explorer/subgraph/singulardtv/sngls-dao).

Getting started

  1. git clone https://github.com/blaize-tech/snglsDAO-smartcontracts.git && cd s2
  2. npm install

Testing

Run the tests in the host container:

npm run docker:run
npm run test
npm run docker:stop

The tests are run with jest, which takes a number of options that may be useful when developing:

npm run test -- --watch # re-run the tests after each change
npm run test -- test/integration/Avatar.spec.js # run a single test file

Commands

  1. migrate - migrate contracts to ganache and write result to migration.json.
  2. codegen - (requires migration.json) automatically generate abi, subgraph, schema and type definitions for required contracts.
  3. test - run integration test.
  4. deploy - deploy subgraph.
  5. deploy:watch - redeploy on file change.

Docker commands (requires installing docker and docker-compose):

  1. docker <command> - start a command running inside the docker container. Example: npm run docker test (run intergation tests).
  2. docker:stop - stop all running docker services.
  3. docker:rebuild <command> - rebuild the docker container after changes to package.json.
  4. docker:logs <subgraph|graph-node|ganache|ipfs|postgres> - display logs from a running docker service.
  5. docker:run - run all services in detached mode (i.e. in the background).

Exposed endpoints

After running a command with docker-compose, the following endpoints will be exposed on your local machine:

  • http://localhost:8000/subgraphs/name/daostack - GraphiQL graphical user interface.
  • http://localhost:8000/subgraphs/name/daostack/graphql - GraphQL api endpoint.
  • http://localhost:8001/subgraphs/name/daostack - graph-node's websockets endpoint
  • http://localhost:8020 - graph-node's RPC endpoint
  • http://localhost:5001 - ipfs endpoint.
  • (if using development) http://localhost:8545 - ganache RPC endpoint.
  • http://localhost:5432 - postgresql connection endpoint.

Add a new contract tracker

In order to add support for a new contract follow these steps:

  1. Create a new directory src/mappings/<contract name>/

  2. Create 4 files:

    1. src/mappings/<contract name>/mapping.ts - mapping code.
    2. src/mappings/<contract name>/schema.graphql - GraphQL schema for that contract.
    3. src/mappings/<contract name>/datasource.yaml - a yaml fragment with:
      1. abis - optional - list of contract names that are required by the mapping.
      2. entities - list of entities that are written by the the mapping.
      3. eventHandlers - map of solidity event signatures to event handlers in mapping code.
    4. test/integration/<contract name>.spec.ts
  3. Add your contract to ops/mappings.json. Under the JSON object for the network your contract is located at, under the "mappings" JSON array, add the following.

    1. If your contract information is in the migration.json file specified (default is the file under @daostack/migration folder, as defined in the ops/settings.js file):

      {
         "name": "<contract name as appears in `abis/arcVersion` folder>",
         "contractName": "<contract name as appears in migration.json file>",
         "dao": "<section label where contract is defined in migration.json file (base/ dao/ test/ organs)>",
         "mapping": "<contract name from step 2>",
         "arcVersion": "<contract arc version>"
      }
    2. If your contract does not appear in the migration file:

      {
         "name": "<contract name as appears in `abis/arcVersion` folder>",
         "dao": "address",
         "mapping": "<contract name from step 2>",
         "arcVersion": "<contract arc version under which the abi is located in the `abis` folder>",
         "address": "<the contract address>"
      }
  4. (Optionally) add a deployment step for your contract in ops/migrate.js that will run before testing.

Add a new dao tracker

To index a DAO please follow the instructions here: https://github.com/daostack/subgraph/blob/master/documentations/Deployment.md#indexing-a-new-dao

Add a new datasource template

Datasource templates allow you to index blockchain data from addresses the subgraph finds out about at runtime. This is used to dynamically index newly deployed DAOs. To add a new contract ABI that can be used as a template within your mappings, modify the ops/templates.json file like so:

{
   "templates": [
      ...,
      {
         "name": "<contract name as appears in `abis/arcVersion` folder>",
         "mapping": "<name of the `src/mappings/...` folder to be used with this contract>",
         "start_arcVersion": "<contract arc version under which the abi is located in the `abis` folder>",
         "end_arcVersion": "(optional) <contract arc version under which the abi is located in the `abis` folder> if not given, all future versions of this `name`'s contract ABI will be added as a template for this mapping"
      }
   ]
}

Deploy Subgraph

To deploy the subgraph, please follow the instructions below:

  1. If you are deploying to The Graph for the first time, start with installing the Graph CLI: npm install -g @graphprotocol/graph-cli Then follow this by logging into your Graph Explorer account using: graph auth https://api.thegraph.com/deploy/ <ACCESS_TOKEN>

    It is also recommended to read this guide: https://thegraph.com/docs/deploy-a-subgraph

  2. Create a .env file containing the following:

    network="<TARGET_NETWORK>"
    subgraph="<YOUR_SUBGAPH_NAME>"
    
    # Not necessary for Docker deployment
    graph_node="https://api.thegraph.com/deploy/"
    ipfs_node="https://api.thegraph.com/ipfs/"
    access_token=<YOUR_ACCESS_TOKEN>
    
    # Not necessary for The Graph server
    postgres_password=<YOUR_PASSWORD>
    ethereum_node="https://<TARGET_NETWORK>.infura.io/<INFURA-KEY>"
    start_block=<START INDEX BLOCK> (default is 0)
  3. Run: npm run deploy

Release subgraph images on docker hub

The repository provides a release.sh script that will:

  • (re)start the docker containers and deploy the subgraph
  • commit the images for ipfs and postgres and push these to docker hub

The docker images are available as:

daostack/subgraph-postgres:${network}-${migration-version}-${subgraph-version} daostack/subgraph-ipfs:${network}-${migration-version}-${subgraph-version}

Blacklist a malicious DAO

Add the DAO's Avatar address to the ops/blacklist.json file in the proper network array. For example, blacklisting 0xF7074b67B4B7830694a6f58Df06375F00365d2c2 on mainnet would look like:

{
  "private": [],
  "kovan": [],
  "rinkeby": [],
  "mainnet": [
     "0xF7074b67B4B7830694a6f58Df06375F00365d2c2"
  ]
}

snglsdao-smartcontracts's People

Contributors

obaranni-blaize avatar nickber avatar alexanderosadchyy avatar koroqe avatar kostantinblaize avatar gofsd avatar tbot-olexiyb avatar stkostyantin avatar dannydesert avatar olexiyb avatar dependabot[bot] avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.