eosdart 0.4.2 copy "eosdart: ^0.4.2" to clipboard
eosdart: ^0.4.2 copied to clipboard

outdated

EOSIO-based blockchain RPC API client in Dart language

example/eosdart_example.dart

import 'package:eosdart/eosdart.dart';

main() {
  EOSClient client = EOSClient('https://eos.greymass.com', 'v1');
//  EOSClient client = EOSClient('http://127.0.0.1:8888', 'v1');

  // Get EOS Node Info
  client.getInfo().then((NodeInfo nodeInfo) {
    print(nodeInfo);
  });

  // Get EOS Abi
  client.getAbi('eosio.token').then((AbiResp abi) {
    print(abi);
  });

  // Get EOS Raw Abi
  client.getRawAbi('eosio.token').then((AbiResp abi) {
    print(abi);
  });

  // Get EOS Raw code and Abi
  client.getRawCodeAndAbi('eosio.token').then((AbiResp abi) {
    print(abi);
  });

  // Get EOS Block Info
  client.getBlock('298674').then((Block block) {
    print(block);
  });

  // Get Account Info
  client.getAccount('eosio.token').then((Account account) {
    print(account);
  });

  // Get Account Actions
  client.getActions('eosio.token', pos: -1, offset: -1).then((Actions actions) {
    print(actions);
  });

  // Get Transaction
  client
      .getTransaction(
          '83875faeb054ba20b20f392418e3a0002c4bb1c36cc4e3fde15cbd0963da8a15')
      .then((TransactionBlock transaction) {
    print(transaction);
  });

  // Get Accounts from public key
  client
      .getKeyAccounts('EOS8RWQpzzMi5uFXXXAChi4dHnyxMYKKdAQ3Y3pHQTrvhzGk95LbT')
      .then((AccountNames accountNames) {
    print(accountNames);
  });

  // Get currency balance
  client
      .getCurrencyBalance('parslseed123', 'newdexpocket')
      .then((List<Holding> balance) {
    print(balance);
  });

  // Get Tables
  client.getTableRows('eosio', 'eosio', 'abihash').then((rows) => print(rows));
  client.getTableRow('eosio', 'eosio', 'abihash').then((row) => print(row));
}
11
likes
0
pub points
71%
popularity

Publisher

unverified uploader

EOSIO-based blockchain RPC API client in Dart language

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

eosdart_ecc, http, json_annotation, pointycastle

More

Packages that depend on eosdart