Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shamblett/ethereum
An ethereum RPC client for Dart
https://github.com/shamblett/ethereum
dart
Last synced: 11 days ago
JSON representation
An ethereum RPC client for Dart
- Host: GitHub
- URL: https://github.com/shamblett/ethereum
- Owner: shamblett
- License: mit
- Created: 2017-11-03T11:19:39.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-27T10:24:54.000Z (11 months ago)
- Last Synced: 2024-10-20T07:24:27.488Z (19 days ago)
- Topics: dart
- Language: Dart
- Size: 505 KB
- Stars: 43
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Authors: AUTHORS.md
Awesome Lists containing this project
README
# ethereum
[![Build Status](https://github.com/shamblett/ethereum/actions/workflows/ci.yml/badge.svg)](https://github.com/shamblett/ethereum/actions/workflows/ci.yml)An ethereum RPC 2 client for Dart.
This package provides a client to access the Ethereum JSON RPC API documented [here](https://github.com/ethereum/wiki/wiki/JSON-RPC)
It uses the JSON RPC2 interface and can be configured to use any of the endpoints described except ipc. The client runs on the server using HTTP, and in
the browser using both HTTP and web sockets.The package currently implements most of the eth API and some of the admin API.
Work is ongoing to complete the implementation of the admin API.The mapping of Ethereum RPC data types to Dart types is as follows :-
* boolean - bool
* string - String
* quantity - int
* data - BigIntExamples can be found in the examples directory, also the unit test suite contains examples of calling every API interface.
The package was tested against a geth client.