All Projects → shapeshift → web

shapeshift / web

Licence: MIT License
ShapeShift Web

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to web

aragon.js
(Aragon 1) A monorepo of JavaScript libraries for interacting with Aragon
Stars: ✭ 84 (+110%)
Mutual labels:  web3
borg
Client-server stack for Web3! Turn your Raspberry Pi to a BAS server in minutes and enjoy the freedom of decentralized Web with a superior user experience!
Stars: ✭ 25 (-37.5%)
Mutual labels:  web3
awesome-waves
Curated list of awesome things for development on Waves blockchain.
Stars: ✭ 60 (+50%)
Mutual labels:  web3
is-valid-signature
EIP1271 signature checker implementation in JavaScript
Stars: ✭ 18 (-55%)
Mutual labels:  web3
spectrum
💠 Full Gamut Ethereum Lightsuite
Stars: ✭ 56 (+40%)
Mutual labels:  web3
go-ethutil
Ethereum utility functions for Go.
Stars: ✭ 17 (-57.5%)
Mutual labels:  web3
Wallet3
A secure mobile wallet for web3
Stars: ✭ 13 (-67.5%)
Mutual labels:  web3
use-onboard
🛹 React Web3 wallet hook for the Onboard.js library.
Stars: ✭ 42 (+5%)
Mutual labels:  web3
synthetic-loot-viewer
browse synthetic loot
Stars: ✭ 21 (-47.5%)
Mutual labels:  web3
add-to-web3
⁂ Github Action to upload your website to web3.storage
Stars: ✭ 22 (-45%)
Mutual labels:  web3
foundation
for the Great Civilization
Stars: ✭ 54 (+35%)
Mutual labels:  web3
expo-solana-wallet
Cross-Platform Solana Wallet built with Expo and Solana/web3.js
Stars: ✭ 122 (+205%)
Mutual labels:  web3
pancakeswap-lottery
🥞 A Python client for accessing PancakeSwap Lottery smart contract information through Web3.py
Stars: ✭ 30 (-25%)
Mutual labels:  web3
web3-is-going-great
A timeline of some of the greatest hits in cryptocurrencies, NFTs, and other web3 projects since the beginning of 2021
Stars: ✭ 334 (+735%)
Mutual labels:  web3
Skill-Tree
Skill tree for the Freshman Track at LearnWeb3DAO
Stars: ✭ 57 (+42.5%)
Mutual labels:  web3
babel-preset-react-native-web3
deprecated: babel preset for react native, web3 and babel 6
Stars: ✭ 22 (-45%)
Mutual labels:  web3
nina
a self-publishing protocol for musicians - on solana
Stars: ✭ 27 (-32.5%)
Mutual labels:  web3
nft-website
NFT School: Community education platform for developers in the non-fungible token space.
Stars: ✭ 260 (+550%)
Mutual labels:  web3
0x-tracker-api
NodeJS API built for 0x Tracker which exposes 0x protocol data and metrics for consumption by the 0x Tracker Client application.
Stars: ✭ 19 (-52.5%)
Mutual labels:  web3
trust-api
No description or website provided.
Stars: ✭ 20 (-50%)
Mutual labels:  web3

ShapeShift DAO Web Interface

This project was bootstrapped with Create React App.

ShapeShift ShapeShift ShapeShift ShapeShift

ShapeShift's OSS 2nd generation Web application. (Under Development)

Table Of Contents

Helpful Docs

Resources

Dependencies

Quick Start

On Linux and MacOS it works out of the box following the steps.
⚠️ On Windows you should use the Windows Subsystem for Linux (WSL).

  • Clone the repo

  • (optional) Make sure you're using the right Node.js version.

    nvm use
  • Install Dependencies:

    # This is short for `yarn install`; be sure to use `yarn install --frozen-lockfile` instead if you're setting up a CI pipeline or trying to duplicate a historical build.
    yarn
  • Copy sample.env to .env, and configure it according to the .env section below.

    cp sample.env .env

.env

The .env file contains environment variables that the program needs to function properly.

  • REACT_APP_PORTIS_DAPP_ID

    Allows you to connect a Portis wallet. Without this the program will hang after choosing Portis and clicking the "Pair" button. Portis Dapp IDs aren't secret, but they are domain-specific.

  • REACT_APP_ETHEREUM_NODE_URL

    Needed for certain Defi integrations such as Yearn; the app will malfunction when connecting a wallet without it.

    Any Ethereum node should do, but you can get your own node URL for testing by doing the following:

    1. Go to https://infura.io/dashboard

    2. Set up a free account

    3. Make a new project

      Your key should use "JSON-RPC over HTTPS" and look like this: https://mainnet.infura.io/v3/<your project id>

Commands

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

    yarn dev

Launches the test runner in the interactive watch mode.
See the section about running tests for more information. It also creates a html page you can interact with at the root level of the project in /coverage.

    yarn test

Starts Cypress E2E testing with GUI.

yarn test:cypress

Or run Cypress headless

test:cypress:headless

Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.
Your app is ready to be deployed!

See the section about deployment for more information.

    yarn build

Runs the component documentation.
Open http://localhost:6006 to view it in the browser.

    yarn storybook

Linking

If you're developing locally in this web repository, and need to make changes affecting packages in lib or unchained (backend), use the following steps to link packages locally for developing. If your changes only touch web these steps are not necessary.

Initial, one-off setup:

  1. Clone the lib repo, cd into it, and run yarn build
  2. From lib, run yarn link
  3. Clone unchained, cd into it, and run yarn build
  4. From unchained, cd packages/client and yarn link, then do the same from packages/parser

When working in web, and using local changes in lib or unchained:

  1. Run yarn link-packages in web to use local versions of lib and unchained - now your web's chain-adapters have a symlink to your lib's.
  2. yarn show-linked-packages will show what's currently linked
  3. Once you're done developing locally, run yarn unlink-packages to use published upstream versions

Developer Onboarding

  1. Create a pull request on GitHub. (You can do this at https://github.com/<username>/<fork name>/pull/new/<branch name>.)
  2. Ensure you've followed the guidelines in CONTRIBUTING.md; in particular, make sure that the title of your PR conforms to the Conventional Commits format.
  3. Post a link to your new pull request in #engineering-prs in the Discord
  4. (optional) Return to the develop branch to get ready to start another task.

Releases

The script ./scripts/release.sh helps to automate the release process.

Create a release branch

yarn create-release v1.1.1 or ./scripts/release.sh release v1.1.1

This creates a releases/v1.1.1 branch based on origin/develop and pushes it to origin

Merge a release into main

yarn merge-release v1.1.1 or ./scripts/release.sh main v1.1.1

This does a checkout of origin/releases/v1.1.1 then merges that to main. After a confirmation prompt, it pushes that to origin/main.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].