An Alchemy Platform client for Flutter & Dart
Alchemy
An Alchemy Platform client for Flutter & Dart
About The Project
An Alchemy Platform client for Flutter & Dart
EXAMPLE PROJECT SCREENSHOT
Supported Platforms
- iOS
- Android
- Mac OS
- Windows
- Linux
- Web
Built With
Google Flutter SDK
Getting Started
Prerequisites
- Flutter SDK
- Android SDK & Android Studio for deployment to Android
- XCode IDE for deployment to iOS/iPad/MacOS
- VS Code IDE optional
Installation
- Clone the repo
git clone https://github.com/oliverbytes/alchemy.git
- Install packages dependencies
flutter pub get
- Run
flutter run
Usage
// Import Package
import 'package:alchemy/alchemy.dart';
// Instantiate Object
final alchemy = Alchemy();
// Configuration
alchemy.client.init(
subDomain: 'polygon-mumbai.g', // network
apiKey: <Your-API-Key>,
verbose: true,
);
debugPrint('requesting...');
final result = await alchemy.polygon.getBalance(
address: '0x0ef2e86a73c7be7f767d7abe53b1d4cbfbccbf3a',
);
result.fold(
(error) { // ERROR
debugPrint(error.toJson().toString());
},
(response) { // SUCCESS
debugPrint(response.toJson().toString());
},
);
debugPrint('request done');
Roadmap
- Complete API
- Unit Testing
See the open issues for a list of proposed features (and known issues).
Contributing
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
License
Distributed under the MIT License. See LICENSE
for more information.
Contact
Oliver Martinez – @oliverbytes – nemoryoliver@gmail.com
Project Link: https://github.com/oliverbytes/alchemy