Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xclud/dart_eip55
Utility to convert an upper or lowercase Web3/Ethereum address to a checksum address (EIP55).
https://github.com/xclud/dart_eip55
blockchain dart eip55 ethereum flutter web3
Last synced: about 2 months ago
JSON representation
Utility to convert an upper or lowercase Web3/Ethereum address to a checksum address (EIP55).
- Host: GitHub
- URL: https://github.com/xclud/dart_eip55
- Owner: xclud
- License: mit
- Created: 2021-12-24T08:19:47.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-03T15:20:42.000Z (almost 3 years ago)
- Last Synced: 2024-01-07T03:03:58.184Z (12 months ago)
- Topics: blockchain, dart, eip55, ethereum, flutter, web3
- Language: Dart
- Homepage: https://pub.dev/packages/eip55
- Size: 117 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Utility to convert an upper or lower case Web3/Ethereum address to a checksum address (EIP55).
[![pub package](https://img.shields.io/pub/v/eip55.svg)](https://pub.dartlang.org/packages/eip55)
## Getting started
In your `pubspec.yaml` file add:
```dart
dependencies:
eip55: any
```## Usage
Import the package:
```dart
import 'package:eip55/eip55.dart';
```Then:
```dart
final eip55Address = toEIP55Address('0x68775f2604f67a571f626c99ae4eb252b579dcd7');
```Alternately:
```dart
final eip55Address = toChecksumAddress('0x68775f2604f67a571f626c99ae4eb252b579dcd7');
```