All Projects → ethjs → Examples

ethjs / Examples

A set of example dApps and apps using ethjs.

Programming Languages

javascript
184084 projects - #8 most used programming language
solidity
1140 projects

Projects that are alternatives of or similar to Examples

full-blockchain-solidity-course-py
Ultimate Solidity, Blockchain, and Smart Contract - Beginner to Expert Full Course | Python Edition
Stars: ✭ 5,349 (+5249%)
Mutual labels:  dapp, web3
Angular Truffle Dapp
Angular + Truffle = Beautiful Material Dapp that can be scaled
Stars: ✭ 12 (-88%)
Mutual labels:  dapp, web3
Eth Crypto
Cryptographic javascript-functions for ethereum and tutorials to use them with web3js and solidity
Stars: ✭ 420 (+320%)
Mutual labels:  dapp, web3
spectrum
💠 Full Gamut Ethereum Lightsuite
Stars: ✭ 56 (-44%)
Mutual labels:  dapp, web3
Trace
Supply chain transparency platform proof-of-concept based on the Ethereum blockchain ✍️
Stars: ✭ 52 (-48%)
Mutual labels:  dapp, web3
go-ethutil
Ethereum utility functions for Go.
Stars: ✭ 17 (-83%)
Mutual labels:  dapp, web3
Eth.social
An Ethereum dApp for posting social events.
Stars: ✭ 17 (-83%)
Mutual labels:  dapp, web3
web3-starter
An opinionated web3 starter for building dApps
Stars: ✭ 67 (-33%)
Mutual labels:  dapp, web3
Web3e
Web3E Ethereum for Embedded devices running Arduino framework
Stars: ✭ 50 (-50%)
Mutual labels:  dapp, web3
Commons
⛲️ Commons Marketplace client & server to explore, download, and publish open data sets in the Ocean Protocol Network.
Stars: ✭ 34 (-66%)
Mutual labels:  dapp, web3
ar-nft
👾 A React Native app to visualize your NFTs in AR
Stars: ✭ 71 (-29%)
Mutual labels:  dapp, web3
Trust Wallet Ios
📱 Trust - Ethereum Wallet and Web3 DApp Browser for iOS
Stars: ✭ 1,228 (+1128%)
Mutual labels:  dapp, web3
web3
⚡️ Web3 PHP is a supercharged PHP API client that allows you to interact with a generic Ethereum RPC.
Stars: ✭ 609 (+509%)
Mutual labels:  dapp, web3
awesome-waves
Curated list of awesome things for development on Waves blockchain.
Stars: ✭ 60 (-40%)
Mutual labels:  dapp, web3
dApp-Builder
No description or website provided.
Stars: ✭ 108 (+8%)
Mutual labels:  dapp, web3
Web3 React
🧰 A simple, maximally extensible, dependency minimized framework for building modern Ethereum dApps
Stars: ✭ 788 (+688%)
Mutual labels:  dapp, web3
Astar
The dApp hub for blockchains of the future
Stars: ✭ 533 (+433%)
Mutual labels:  dapp, web3
wagmi
React Hooks for Ethereum
Stars: ✭ 1,691 (+1591%)
Mutual labels:  dapp, web3
Web3studio Sojourn
A React Native DevKit with code for a Web3 Decentralized Data Storage Pattern.
Stars: ✭ 29 (-71%)
Mutual labels:  dapp, web3
Web Sdk
Portis Web SDK
Stars: ✭ 65 (-35%)
Mutual labels:  dapp, web3

ethjs-examples

A set of example dApps and apps using ethjs.

Install

git clone http://github.com/ethjs/examples
cd examples

Hosted

ethjs-examples.surge.sh

Usage

Open any of the .html files in Chrome or Firefox. Everything runs out of the box.

Available Examples

About

This is a small set of dApps and apps using ethjs. Each example is meant to demonstrate correct usage of ethjs modules, namely, the ethjs module.

Many of these examples use ethereumjs-testrpc to simulate an Ethereum node running in the browser. This is meant to get you up and running with Ethereum, so configuration is kept to a minimum. Once you feel ready to go to an actual node or client, please use any one of the available nodes or clients listed below.

Libraries Used

  • TestRPC - An entire Ethereum node simulator written in Javascript
  • ethjs - A simple JS utility library for Ethereum

Enable Metamask Support

Once your ready to go live on the Ethereum mainnet or testnet, simply add this script to make your dApp to make it MetaMask ready (note every example has this script commented off by default, simply uncomment it to enable support).

if (typeof window.web3 !== 'undefined' && typeof window.web3.currentProvider !== 'undefined') {
  eth.setProvider(window.web3.currentProvider);
} else {
  eth.setProvider(provider);
}

Contributing

Please help better the ecosystem by submitting issues and pull requests to default. We need all the help we can get to build the absolute best linting standards and utilities. We follow the AirBNB linting standard and the unix philosophy.

Guides

Please see the Ethereum RPC specification hosted on their github:

https://github.com/ethereum/wiki/wiki/JSON-RPC

Help out

There is always a lot of work to do, and will have many rules to maintain. So please help out in any way that you can:

  • Create, enhance, and debug ethjs rules (see our guide to "Working on rules").
  • Improve documentation.
  • Chime in on any open issue or pull request.
  • Open new issues about your ideas for making ethjs-schema better, and pull requests to show us how your idea works.
  • Add new tests to absolutely anything.
  • Spread the word.

Please consult our Code of Conduct docs before helping out.

We communicate via issues and pull requests.

Important documents

Licence

This project is licensed under the MIT license, Copyright (c) 2016 Nick Dodson. For more information see LICENSE.md.

The MIT License

Copyright (c) 2016 Nick Dodson. nickdodson.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
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].