etherscan_api 1.0.0-beta copy "etherscan_api: ^1.0.0-beta" to clipboard
etherscan_api: ^1.0.0-beta copied to clipboard

A dart library to access the etherscan.io apis.

example/main.dart

import 'package:etherscan_api/etherscan_api.dart';

void main() async {
  final eth = EtherscanAPI(
      apiKey: 'YourApiKey', chain: EthChain.ropsten, enableLogs: false);

  final bal = await eth.txListInternal(
      txhash:
          '0x40eb908387324f2b575b4879cd9d7188f69c8fc9d87c901b9e2daaea4b442170');

  print(bal);

  /// EtherScanBalanceModel(1, OK, [EtherScanBalanceResult(0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae, 430141119464489895480972)])
}
5
likes
110
pub points
14%
popularity

Publisher

verified publishercodenka.com

A dart library to access the etherscan.io apis.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

dartz, dio, equatable, logger

More

Packages that depend on etherscan_api