Anvil Estimate

Estimate Transaction Result of Token Change

Usage:

Deployment

First, run build.sh, then docker build.
You need to set environment variables before run the docker image.
UPSTREAM_RPC

Start Simulation

POST /api/v1/simulation/run HTTP/1.1
Content-Type: application/json

{
   "from": "from_address",
   "to": "contract_address",
   "amount": "empty string, or your value, ",
   "data": "",
   "token_change": [
       "0x0000000000000000000000000000000000000000",
       "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270",
   ]
}

Response

{
  "data": "37D6682A-B92E-0E8F-0EFC-9021870CB6B1",
  "message": "ok"
}

After start the simulation, you will get a uuid for the request, you can use this uuid to get the result.

Get Simulation Result

GET /api/v1/simulation/result/{uuid} HTTP/1.1
Content-Type: application/json

Response:

{
  "data": {
    "token_change": {
      "0x0000000000000000000000000000000000000000": "-65536",
      "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2": "0"
    },
    "Status": "ok",
    "Reason": ""
  },
  "message": "ok"
}

THe token_change is the balance change of from address for your specified token.