-
Notifications
You must be signed in to change notification settings - Fork 25
BCFR-1330 #1161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
BCFR-1330 #1161
Changes from 3 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
3e1e922
add methods wirings
Unheilbar ab9ca22
add basic functionalities to evm service
Unheilbar aa2ede0
merge main
Unheilbar 865bb01
add rm generated fixtures
Unheilbar bc11ba5
EVMRelayer -> EVMService, remove embedded Relayer from EVMService int…
Unheilbar dcd74da
Merge branch 'BCFR-1417' into BCFR-1330
Unheilbar be2adbf
post-merge fixes
Unheilbar 666fbe1
rm SubscribeLogTrigger
Unheilbar de5573a
fix typo
Unheilbar 13eecc8
Merge branch 'main' into BCFR-1330
Unheilbar b62df80
rm fixtures
Unheilbar 00c31ea
fix typo
Unheilbar 4312101
move evm.proto -> pb/evm
Unheilbar 8af23db
add comments
Unheilbar b5972f7
polish naming
Unheilbar 22811cc
add comments
Unheilbar 89d5ad2
add tests
Unheilbar bc22f08
nit fx
Unheilbar 104910e
Merge branch 'main' into BCFR-1330
Unheilbar fd886ce
replace mocks with static ones
Unheilbar 22d41c8
add comments, rm generalized types in evmService
Unheilbar 10d475f
fix tests
Unheilbar f39e622
Merge branch 'main' into BCFR-1330
ilija42 0c35630
GetLogs -> FilterLogs
Unheilbar bd0b68b
add Client() subinterface. string -> bytes type for evm types
Unheilbar fddca10
beautify tests
Unheilbar d5be9bc
add documenting comments for EVMService
Unheilbar 63e5175
Merge branch 'main' into BCFR-1330
Unheilbar 0673a3d
polish comments
Unheilbar 773d815
rm inderection, EVMClient->GethClient
Unheilbar 411dd16
QueryLogsFromCache -> QueryTrackedLogs
Unheilbar 9339197
update comments
Unheilbar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
102 changes: 102 additions & 0 deletions
102
pkg/capabilities/triggers/testdata/fixtures/ondemand/schema.json
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,102 @@ | ||
| { | ||
| "$schema": "https://json-schema.org/draft/2020-12/schema", | ||
| "$id": "https://github.com/smartcontractkit/chainlink/capabilities/[email protected]/root", | ||
| "properties": { | ||
| "config": { | ||
| "properties": {}, | ||
| "additionalProperties": false, | ||
| "type": "object" | ||
| }, | ||
| "outputs": { | ||
| "properties": { | ||
| "Event": { | ||
| "properties": { | ||
| "TriggerType": { | ||
| "type": "string" | ||
| }, | ||
| "ID": { | ||
| "type": "string" | ||
| }, | ||
| "Outputs": { | ||
| "properties": { | ||
| "Underlying": { | ||
| "type": "object" | ||
| } | ||
| }, | ||
| "additionalProperties": false, | ||
| "type": "object", | ||
| "required": [ | ||
| "Underlying" | ||
| ] | ||
| }, | ||
| "OCREvent": { | ||
| "properties": { | ||
| "ConfigDigest": { | ||
| "type": "string", | ||
| "contentEncoding": "base64" | ||
| }, | ||
| "SeqNr": { | ||
| "type": "integer" | ||
| }, | ||
| "Report": { | ||
| "type": "string", | ||
| "contentEncoding": "base64" | ||
| }, | ||
| "Sigs": { | ||
| "items": { | ||
| "properties": { | ||
| "Signature": { | ||
| "type": "string", | ||
| "contentEncoding": "base64" | ||
| }, | ||
| "Signer": { | ||
| "type": "integer" | ||
| } | ||
| }, | ||
| "additionalProperties": false, | ||
| "type": "object", | ||
| "required": [ | ||
| "Signature", | ||
| "Signer" | ||
| ] | ||
| }, | ||
| "type": "array" | ||
| } | ||
| }, | ||
| "additionalProperties": false, | ||
| "type": "object", | ||
| "required": [ | ||
| "ConfigDigest", | ||
| "SeqNr", | ||
| "Report", | ||
| "Sigs" | ||
| ] | ||
| } | ||
| }, | ||
| "additionalProperties": false, | ||
| "type": "object", | ||
| "required": [ | ||
| "TriggerType", | ||
| "ID", | ||
| "Outputs", | ||
| "OCREvent" | ||
| ] | ||
| }, | ||
| "Err": true | ||
| }, | ||
| "additionalProperties": false, | ||
| "type": "object", | ||
| "required": [ | ||
| "Event", | ||
| "Err" | ||
| ] | ||
| } | ||
| }, | ||
| "additionalProperties": false, | ||
| "type": "object", | ||
| "required": [ | ||
| "config", | ||
| "outputs" | ||
| ], | ||
| "description": "An example on-demand trigger." | ||
| } | ||
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.