Skip to content

raid-guild/dapphero-core

 
 

Repository files navigation

DappHero Core

dependencies last pinned 1/8/20

Arweave Port

To view Arweave port, switch to branch port-arweave.

Listening to events

How to use

All listeners functions are defined inside dappHero object.

For example to listen after a contract method result it's outputed to the DOM you can simple call:

dappHero.listenToContractOutputChange(event => {
   console.log(`Event changed`, event)
})

Supported events currently are for:

  • Custom Contract
  • Network
  • NFT
  • ThreeBox
  • User

E2E Testing

  1. Fulfill the following env variables:
E2E_METAMASK_SEED=
E2E_METAMASK_ADDRESS=
E2E_METAMASK_PASSWORD=
  1. Run the following commands:
> yarn start // or npm run start
> yarn test:e2e  // or npm run test
  1. Since tests runs on Rinkeby network you will need Eth you can use Rinkeby Faucet

    I. Paste this twitter link into a new browser tab

    II. Change 0x0000000000000000000000000000000000000000 for your address, the one you wrote on the env file (E2E_METAMASK_ADDRESS)

Captura de Pantalla 2020-02-21 a la(s) 19.20.47

III. Copy the Twitter link from your profile to the Faucet input

Captura de Pantalla 2020-02-21 a la(s) 19.20.47

npm start

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.

npm test

Launches the test runner in the interactive watch mode.
See the section about running tests for more information.

npm run build

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

The build is minified and the filenames include the hashes.

Eslint fix example

For getBaseContractData file npx eslint --fix src/modules/eth/utils/getBaseContractData.ts

Releases

No releases published

Packages

 
 
 

Languages

  • HTML 44.1%
  • TypeScript 36.9%
  • JavaScript 17.8%
  • CSS 1.2%