Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
b24f6fc
feat: Add rollups v2 release candidate and graphql enum type to diff …
brunomenezes Nov 1, 2024
3b6bc04
feat: Add new ABIs Cartesi App, factory and new input-box.
brunomenezes Nov 1, 2024
57d00f1
feat: Update config to support rollup v2 and new logs added.
brunomenezes Nov 1, 2024
89a1d3b
feat: Add new handlers for v2 , update v1 handlers. Add new decoders …
brunomenezes Nov 1, 2024
9890c2b
refactor: Adjust Ownership-Transferred evt handler to deal with v1 an…
brunomenezes Nov 4, 2024
8ef466d
test: Adjust tests for v1 handlers and add new test for decoders.
brunomenezes Nov 4, 2024
94c48bd
feat: Add migration to add new property on Application table.
brunomenezes Nov 4, 2024
e514bfd
test: Add v2 handlers tests , encoding utils and new stub data.
brunomenezes Nov 8, 2024
d19969d
refactor: Isolate vitest helpers from other imports to avoid cjs prob…
brunomenezes Nov 14, 2024
d8a9b82
feat: Add preload app address logic to handle v2 factory event Applic…
brunomenezes Nov 14, 2024
cd50c6d
feat: Bump app-addresses preload and update processor logic to also i…
brunomenezes Nov 14, 2024
74a84ad
chore: Bump node to latest LTS (22) on dockefile.
brunomenezes Mar 27, 2025
0e1ba2a
chore: Adding evm-codec and evm-abi explicitly as deps to avoid npm-c…
brunomenezes Mar 27, 2025
870a914
feat: Add support to Cannon (13370)
brunomenezes Apr 11, 2025
da90983
feat: Add cannon, registering new sqd-command and adding codegen for …
brunomenezes Apr 14, 2025
87b0129
refactor: Update configs, test cases and data-mock generation for new…
brunomenezes Apr 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ npm-debug.log*
# Generated folders/files
/src/model
/src/abi
/src/deployments

#Test outputs
/coverage
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine AS node
FROM node:22-alpine AS node

FROM node AS node-with-gyp
RUN apk add g++ make python3
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ That project requires [docker](https://docker.com) to be installed so the backen

### Configuration (Environment Variables)

> Supported Chains: 1, 11155111, 10, 11155420, 8453, 84532, 42161, 421614, 31337
> Supported Chains: 1, 11155111, 10, 11155420, 8453, 84532, 42161, 421614, 31337, 13370

| Variables | Default | Description |
| :-------------------------: | :--------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
| `CHAIN_IDS` | `31337` | Comma separated supported chain ids to be indexed |
| `RPC_URL_1` | `https://rpc.ankr.com/eth` | Endpoint for Mainnet RPC node |
| `RPC_URL_11155111` | `https://rpc.ankr.com/eth_sepolia` | Endpoint for Sepolia RPC node |
| `RPC_URL_31337` | `http://127.0.0.1:8545` | Endpoint for local node |
| `RPC_URL_{31337 \| 13370}` | `http://127.0.0.1:8545` | Endpoint for local node |
| `RPC_URL_10` | `https://mainnet.optimism.io` | Endpoint for Optimism Mainnet RPC node |
| `RPC_URL_11155420` | `https://sepolia.optimism.io` | Endpoint for Optimism Sepolia RPC node |
| `RPC_URL_8453` | `https://mainnet.base.org` | Endpoint for Base Mainnet RPC node |
Expand Down
Loading