{"id":16123990,"url":"https://github.com/evenchange4/ethereum-hot-wallet","last_synced_at":"2025-03-16T08:32:56.623Z","repository":{"id":43341340,"uuid":"144658546","full_name":"evenchange4/ethereum-hot-wallet","owner":"evenchange4","description":"A react-native hot wallet that communicates with geth node.","archived":false,"fork":false,"pushed_at":"2024-05-28T08:44:48.000Z","size":14113,"stargazers_count":6,"open_issues_count":20,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-05-28T22:25:08.965Z","etag":null,"topics":["create-react-native-app","ethereum","react-native","web3js"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/evenchange4.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-08-14T02:33:54.000Z","updated_at":"2024-05-29T23:02:57.238Z","dependencies_parsed_at":"2024-05-29T23:02:17.479Z","dependency_job_id":"0dc915f0-e4d4-4b75-8461-cd151eeb5587","html_url":"https://github.com/evenchange4/ethereum-hot-wallet","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evenchange4%2Fethereum-hot-wallet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evenchange4%2Fethereum-hot-wallet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evenchange4%2Fethereum-hot-wallet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evenchange4%2Fethereum-hot-wallet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/evenchange4","download_url":"https://codeload.github.com/evenchange4/ethereum-hot-wallet/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243809865,"owners_count":20351403,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["create-react-native-app","ethereum","react-native","web3js"],"created_at":"2024-10-09T21:19:24.237Z","updated_at":"2025-03-16T08:32:52.657Z","avatar_url":"https://github.com/evenchange4.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ethereum Hot Wallet\n\n\u003e A react-native hot wallet that communicates with geth node.\n\n[![Travis][travis-badge]][travis]\n[![Codecov Status][codecov-badge]][codecov]\n[![license][license-badge]][license]\n\nThere are two parts in this monorepo application:\n\n1. [RESTful Server](#server): A micro-service of geth RPC interface.\n2. [Mobile](#mobile): React-native client.\n\n## Demo\n\nScreenshot:\n\n![mobile](./docs/mobile.gif)\n\n## Technology Stack\n\n- Micro - Micro HTTP server\n- Create-react-native-app - Zero configuration\n- Ant design - Native mobile UI\n- Docker\n\n## Setup\n\nDownload full node of the main Ethereum network on your computer:\n\n```shell\n$ brew tap ethereum/ethereum\n$ brew install ethereum\n$ geth --rpc --rpcaddr localhost --rpcport 8545 --rpcapi \"eth,net,web3,admin\"\n\u003e http://localhost:8545\n```\n\n\u003e Add `admin` HTTP-RPC interface for web3.js.\n\nScreenshot:\n\n![geth](./docs/geth.png)\n\n## Development\n\n- node \u003e= v10.8.0\n- yarn \u003e= 1.9.4\n\n## Server\n\n```shell\n# Development\n$ cd packages/server\n$ cp .env.example .env # input your own config\n$ npm run dev\n\n# Production\n$ npm run build\n$ npm start\n\n# or use docker\n$ docker build -t ethereum-hot-wallet/server .\n$ docker run --rm -it \\\n  -p 3000:3000 \\\n  -e \"PORT=3000\" \\\n  -e \"DEBUG=server\" \\\n  -e \"NODE_RPC_DOMAIN=http://localhost:8545\" \\\n  ethereum-hot-wallet/server\n```\n\nEndpoint example:\n\n- http://localhost:3000/node\n- http://localhost:3000/block/614060\n- http://localhost:3000/transaction/0x4b6776c238213a86fa01852f6faeec4f38a4ca5248b488166abc1efef407da06\n- http://localhost:3000/transaction/0xd6a80a88b9564aa7580b90ca2e5fec8da9d113f54370f86f72fcf0e40f05d131\n\n\u003e Rate-limiting 1 requests per sec.\n\n| **Variable**    | **Default** | **Description**         |\n| --------------- | ----------- | ----------------------- |\n| PORT            |             |                         |\n| DEBUG           |             | for npm debug           |\n| NODE_RPC_DOMAIN |             | Domain name of geth RPC |\n\nScreenshot:\n\n![server](./docs/server.png)\n\n---\n\n## Mobile\n\n```shell\n$ cd packages/mobile\n$ cp .env.example .env # input your own config\n$ npm run ios\n```\n\n| **Variable** | **Default** | **Description**       |\n| ------------ | ----------- | --------------------- |\n| API_DOMAIN   |             | Domain name of server |\n\n---\n\n## CONTRIBUTING\n\n- ⇄ Pull requests and ★ Stars are always welcome.\n- For bugs and feature requests, please create an issue.\n- Pull requests must be accompanied by passing automated tests.\n\n## [LICENSE](LICENSE)\n\nMIT: [http://michaelhsu.mit-license.org](http://michaelhsu.mit-license.org)\n\n[travis-badge]: https://travis-ci.com/evenchange4/ethereum-hot-wallet.svg?branch=master\n[travis]: https://travis-ci.org/evenchange4/ethereum-hot-wallet\n[codecov-badge]: https://img.shields.io/codecov/c/github/evenchange4/ethereum-hot-wallet.svg?style=flat-square\n[codecov]: https://codecov.io/github/evenchange4/ethereum-hot-wallet?branch=master\n[license-badge]: https://img.shields.io/github/license/evenchange4/micro-website-api.svg?style=flat-square\n[license]: http://michaelhsu.mit-license.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevenchange4%2Fethereum-hot-wallet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevenchange4%2Fethereum-hot-wallet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevenchange4%2Fethereum-hot-wallet/lists"}