An Alchemy Platform client for Flutter & Dart
Report Bug
·
Request Feature
One magic line of code supercharges your development with the world’s most powerful blockchain developer platform, relied upon by the majority of the world's top blockchain apps.
An Alchemy Platform client for Flutter & Dart!
- Supports Ethereum and Alchemy Enhanced APIs
- Uses Web Sockets for Ethereum-based APIs and HTTP for Alchemy NFT APIs
- iOS
- Android
- MacOS
- Windows
- Linux
- Web
Google Flutter SDK
- Flutter SDK
- Android SDK & Android Studio for deployment to Android
- XCode IDE for deployment to iOS/iPad/MacOS
- VS Code IDE optional
- Clone the repo
git clone https://github.com/oliverbytes/alchemy_web3.git
- Install packages dependencies
flutter pub get
- Run
flutter run
// Import Package
import 'package:alchemy_web3/alchemy.dart';
// Instantiate Object
final alchemy = Alchemy();
// Configuration
alchemy.init(
httpRpcUrl: <Alchemy-HTTP-API-URL>,
wsRpcUrl: <Alchemy-WS-API-URL>,
verbose: true,
);
// start web sockets
alchemy.start();
// Making requests
final result = await alchemy.polygon.getBalance(
address: '0x2355Dc1f1eEAfFE537535B7B7B410E5dCCBAC3b8',
);
result.fold(
(error) => debugPrint(
'Error: ${error.code} : ${error.message}',
),
(response) => debugPrint(
'Response: ${response.getInEther} : ${response.toString()}',
),
);
// stop web sockets
alchemy.stop();
- Complete API
- Improve Error Codes
- Merge some web3dart functionalities
- Unit Testing
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Oliver Martinez - @oliverbytes - [email protected]
Project Link: https://github.com/oliverbytes/alchemy_web3