IoTeX client
IoTeX-blockchain-client.h
1#ifndef IOTEX_CLIENT_H
2#define IOTEX_CLIENT_H
3
4#include "abi/abiDecode.h"
5#include "account/account.h"
6#include "account/address.h"
7#include "api/wallet/wallets.h"
8#include "connection/connection.h"
9#include "contract/contract.h"
10#include "contract/xrc20Contract.h"
11#include "helpers/client_helper.h"
12#include "IoTeXConstants.h"
13#include "IoTeXResultCodes.h"
14#include "random/random.h"
15#include "storage/storage.h"
16
17using namespace iotex;
18using namespace iotex::api;
19using namespace iotex::abi;
20using namespace iotex::abi::decode;
21using namespace iotex::responsetypes;
22using namespace iotex::bignum;
23
24#endif
Definition: abi.h:12