0 purchases
vite
vite_dart #
A dart library for Vite blockchain.
Features #
Support for Vite RPC v2 API
Vite Wallet Key Derivation - VEP3
Transaction signing
Contract ABI parsing
Example #
import 'package:vite/vite.dart';
void main() async {
final client = RpcClient.http('https://node.vite.net/gvite');
final hash = await client.getLatestSnapshotHash();
final snapshot = await client.getSnapshotBlockByHash(hash);
print(snapshot);
await client.close();
}
copied to clipboard
Feature requests and bugs #
Please file feature requests and bugs at the issue tracker.
If you want to contribute to this library, please submit a Pull Request.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.