Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adrianmcli/eth95
🛠️ A smart contract UI for your Ethereum dapp project
https://github.com/adrianmcli/eth95
blockchain dapp defi ethereum smart-contracts solidity
Last synced: 1 day ago
JSON representation
🛠️ A smart contract UI for your Ethereum dapp project
- Host: GitHub
- URL: https://github.com/adrianmcli/eth95
- Owner: adrianmcli
- Created: 2020-05-18T10:46:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-22T06:28:57.000Z (over 1 year ago)
- Last Synced: 2024-04-14T07:12:07.306Z (8 months ago)
- Topics: blockchain, dapp, defi, ethereum, smart-contracts, solidity
- Language: TypeScript
- Homepage: https://eth95.dev
- Size: 1.78 MB
- Stars: 517
- Watchers: 11
- Forks: 90
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
███████╗████████╗██╗ ██╗ █████╗ ███████╗
██╔════╝╚══██╔══╝██║ ██║██╔══██╗██╔════╝
█████╗ ██║ ███████║╚██████║███████╗
██╔══╝ ██║ ██╔══██║ ╚═══██║╚════██║
███████╗ ██║ ██║ ██║ █████╔╝███████║
╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚════╝ ╚══════╝
```[![circle ci](https://badgen.net/circleci/github/adrianmcli/eth95)](https://circleci.com/gh/adrianmcli/eth95)
[![npm version](https://badgen.net/npm/v/eth95)](https://www.npmjs.com/package/eth95)
![MIT licensed](https://badgen.net/badge/license/MIT/blue)---
![screenshot](./assets/screenshot.png)
_**Instant retro UI for calling any contract function you want**_
See it online @ [eth95.dev](https://eth95.dev/) here's an example with DAI:
```
https://eth95.dev/?network=1&address=0x6b175474e89094c44da98b954eedeac495271d0f
```[Direct Link](https://eth95.dev/?network=1&address=0x6b175474e89094c44da98b954eedeac495271d0f)
## Features
- 🤙 Call any contract function as long as you have the ABI
- 🔌 Connect via localhost:8545, MetaMask, or a custom node URL
- ⚡ Watches your artifacts folder and automatically updates the UI
- 🔢 Encode your calls for a proxy to call on your behalf
- ⚙️ Set a custom signer or a custom contract address
- 📜 Built-in log for easy visibility## Install
Works on any dapp project (Truffle, Buidler, etc.) as long as you point it to the JSON artifacts. And even if you don't have a project, you can run it by itself and manually add ABIs and artifacts.
1. Install
```shell
npm install -g eth95
```2. Run with path to your artifacts folder:
```shell
eth95 ./build/contracts
```## How it works
When `eth95` is run, an Express server is fired up and a frontend (packaged by [Parcel](https://parceljs.org/)) is served at `localhost:3000` (you can define the port with a flag `-p 1234`). The server will watch the directory you passed in for any changes to your artifacts and send those changes down to the frontend via Websockets.
Note that you can also add any contracts you want if you have the ABI or Artifact (there is an Add Contract button).
## Contact
If you have any questions or comments, please file an issue.