Serverless based REST API that allow to:
- Simulate an Ethereum transaction and get all ERC721, ERC20 and ERC1155 events
- Probe a contract to get its type and metadatas (ERC20, ERC721 & ERC1155)
- Analyse an EIP712 signature and get a digest of what potential side effects it could have on the user account
The API is currently hosted at https://ledger-insight.vercel.app/
- Simulate an Ethereum transaction :
POST /api/check/transaction/
- Probe an address :
GET /api/prober/
- Analyse a EIP712 typed message :
POST /api/check/typedMessage/
This API is made using Vercel technologies. All routes are using a filesystem based declaration type and are available in the /api/
directory.
To run the API locally, pnpm run start:dev
With the watcher on: pnpm run watch:dev
Pushing on the Main branch automatically deploy the API in production.