- 查找钱包地址的所有utxo
- API:
http://localhost:8084/utxos/{Address}
- API:
- 查找钱包地址的所有交易记录
- API:
http://localhost:8084/transaction-history/{Address}?beginTime={timestamp}
- API:
- 各种token的基本信息
- API:
http://localhost:8084/assets
- API:
- install elixir
- init project
mix deps.get
- init mysql
- edit config file:
apps/neo_wallet_web/config/config.exs- mysql connection
cowboy_port: the app listening portneo_server: neo http rpc server address
- create database:
mix ecto.create - init database:
mix ecto.migrate
- edit config file:
- run server:
iex -S mix