Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4,211 changes: 4,211 additions & 0 deletions output.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion substreams/ethereum-eulerswap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This substream is used to extract data from the EulerSwap protocol.

```bash
cd ../../evm/
./scripts/buildRuntime.sh -c "EulerSwapAdapter" -s "constructor(address,address)" -a "0x04C54FF83e4BC428FD1eDA2f41cdBd583A2e9cF8,0x64A8410D7D2ecF3Aaf32b6C3932e4586f3C42ecE"
./scripts/buildRuntime.sh -c "EulerSwapAdapter" -s "constructor(address,address)" -a "0xF75548aF02f1928CbE9015985D4Fcbf96d728544,0x813D74E832b3d9E9451d8f0E871E877edf2a5A5f"

```

Expand Down
298 changes: 298 additions & 0 deletions substreams/ethereum-eulerswap/abi/evk_generic_factory.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,298 @@
[
{
"type": "constructor",
"inputs": [
{
"name": "admin",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "nonpayable"
},
{
"type": "function",
"name": "createProxy",
"inputs": [
{
"name": "desiredImplementation",
"type": "address",
"internalType": "address"
},
{
"name": "upgradeable",
"type": "bool",
"internalType": "bool"
},
{
"name": "trailingData",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "nonpayable"
},
{
"type": "function",
"name": "getProxyConfig",
"inputs": [
{
"name": "proxy",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "config",
"type": "tuple",
"internalType": "struct GenericFactory.ProxyConfig",
"components": [
{
"name": "upgradeable",
"type": "bool",
"internalType": "bool"
},
{
"name": "implementation",
"type": "address",
"internalType": "address"
},
{
"name": "trailingData",
"type": "bytes",
"internalType": "bytes"
}
]
}
],
"stateMutability": "view"
},
{
"type": "function",
"name": "getProxyListLength",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"type": "function",
"name": "getProxyListSlice",
"inputs": [
{
"name": "start",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "end",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "list",
"type": "address[]",
"internalType": "address[]"
}
],
"stateMutability": "view"
},
{
"type": "function",
"name": "implementation",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"type": "function",
"name": "isProxy",
"inputs": [
{
"name": "proxy",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"type": "function",
"name": "proxyList",
"inputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"type": "function",
"name": "setImplementation",
"inputs": [
{
"name": "newImplementation",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "function",
"name": "setUpgradeAdmin",
"inputs": [
{
"name": "newUpgradeAdmin",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "function",
"name": "upgradeAdmin",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"type": "event",
"name": "Genesis",
"inputs": [],
"anonymous": false
},
{
"type": "event",
"name": "ProxyCreated",
"inputs": [
{
"name": "proxy",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "upgradeable",
"type": "bool",
"indexed": false,
"internalType": "bool"
},
{
"name": "implementation",
"type": "address",
"indexed": false,
"internalType": "address"
},
{
"name": "trailingData",
"type": "bytes",
"indexed": false,
"internalType": "bytes"
}
],
"anonymous": false
},
{
"type": "event",
"name": "SetImplementation",
"inputs": [
{
"name": "newImplementation",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"type": "event",
"name": "SetUpgradeAdmin",
"inputs": [
{
"name": "newUpgradeAdmin",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"type": "error",
"name": "E_BadAddress",
"inputs": []
},
{
"type": "error",
"name": "E_BadQuery",
"inputs": []
},
{
"type": "error",
"name": "E_DeploymentFailed",
"inputs": []
},
{
"type": "error",
"name": "E_Implementation",
"inputs": []
},
{
"type": "error",
"name": "E_Reentrancy",
"inputs": []
},
{
"type": "error",
"name": "E_Unauthorized",
"inputs": []
}
]
2 changes: 1 addition & 1 deletion substreams/ethereum-eulerswap/integration_test.tycho.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ tests:
# Name of the test
- name: test_pool_creation
# Indexed block range
start_block: 21986045
start_block: 21894700
stop_block: 21986064
# Same as global `initialized_accounts` but only scoped to this test.
initialized_accounts:
Expand Down
Loading