-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: check name only contract is to be decoded (#652)
- Loading branch information
Showing
3 changed files
with
39 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,35 @@ | ||
app_name: working_app | ||
connections: | ||
- authentication: !Ethereum | ||
filter: | ||
from_block: 0 | ||
addresses: [] | ||
topics: [] | ||
wss_url: "{{ETH_WSS_URL}}" | ||
- authentication: !Ethereum | ||
filter: | ||
from_block: 0 | ||
to_block: 1 | ||
addresses: [] | ||
topics: [] | ||
wss_url: "{{ETH_WSS_URL}}" | ||
name: eth_logs | ||
db_type: Ethereum | ||
name: eth_logs | ||
db_type: Ethereum | ||
name: eth_logs | ||
sources: | ||
- name: eth_logs | ||
table_name: eth_logs | ||
columns: | ||
- block_number | ||
- id | ||
connection: !Ref eth_logs | ||
- name: eth_logs | ||
table_name: eth_logs | ||
columns: | ||
- block_number | ||
- id | ||
connection: !Ref eth_logs | ||
endpoints: | ||
- id: 1b44cca2-7631-4f0c-8b6e-254c08d28dae | ||
app_id: 5116e5e4-6963-47fe-b63c-e80ced1fbf29 | ||
name: eth_stats | ||
path: /eth/stats | ||
sql: select block_number, sum(id) from eth_logs where 1=1 group by block_number; | ||
index: | ||
primary_key: | ||
- block_number | ||
- name: eth_logs | ||
path: /eth/logs | ||
sql: select block_number, id from eth_logs where 1=1 group by block_number, id; | ||
index: | ||
primary_key: | ||
- block_number | ||
- id | ||
- id: 1b44cca2-7631-4f0c-8b6e-254c08d28dae | ||
app_id: 5116e5e4-6963-47fe-b63c-e80ced1fbf29 | ||
name: eth_stats | ||
path: /eth/stats | ||
sql: select block_number, sum(id) from eth_logs where 1=1 group by block_number; | ||
index: | ||
primary_key: | ||
- block_number | ||
- name: eth_logs | ||
path: /eth/logs | ||
sql: select block_number, id from eth_logs where 1=1 group by block_number, id; | ||
index: | ||
primary_key: | ||
- block_number | ||
- id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters