- Install dependencies with
mix deps.get - Configure environment variables, check
.env.sample - Start Phoenix endpoint with
mix phx.server
- List pending transactions
curl http://localhost:4000/api/transactions/pending- Add pending transaction(s)
curl -d '{"tx_ids": ["0x123", "0x456"]}' -H "Content-Type: application/json" -X POST http:/localhost:4000/api/transactionsYou can run tests with mix test