-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
storage/runtime: Support method filter for native transfers
- Loading branch information
Showing
18 changed files
with
10,268 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
storage/runtime: Support method filter for native transfers | ||
|
||
Two special values for `method` filter are added: | ||
|
||
- `method=native_transfers`: Returns "likely to be native" transactions | ||
- All accounts.Transfer transactions and EVM Calls with empty data | ||
|
||
- `method=evm.Call_no_native`: Returns EVM Calls which are not "likely to be | ||
native" transfers |
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
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
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
5 changes: 5 additions & 0 deletions
5
tests/e2e_regression/damask/expected/emerald_txs_evm_call.body
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"is_total_count_clipped": false, | ||
"total_count": 0, | ||
"transactions": [] | ||
} |
6 changes: 6 additions & 0 deletions
6
tests/e2e_regression/damask/expected/emerald_txs_evm_call.headers
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
HTTP/1.1 200 OK | ||
Content-Type: application/json | ||
Vary: Origin | ||
Date: UNINTERESTING | ||
Content-Length: UNINTERESTING | ||
|
5 changes: 5 additions & 0 deletions
5
tests/e2e_regression/damask/expected/emerald_txs_evm_call_no_native.body
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"is_total_count_clipped": false, | ||
"total_count": 0, | ||
"transactions": [] | ||
} |
6 changes: 6 additions & 0 deletions
6
tests/e2e_regression/damask/expected/emerald_txs_evm_call_no_native.headers
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
HTTP/1.1 200 OK | ||
Content-Type: application/json | ||
Vary: Origin | ||
Date: UNINTERESTING | ||
Content-Length: UNINTERESTING | ||
|
5 changes: 5 additions & 0 deletions
5
tests/e2e_regression/damask/expected/emerald_txs_native_transfers.body
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"is_total_count_clipped": false, | ||
"total_count": 0, | ||
"transactions": [] | ||
} |
6 changes: 6 additions & 0 deletions
6
tests/e2e_regression/damask/expected/emerald_txs_native_transfers.headers
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
HTTP/1.1 200 OK | ||
Content-Type: application/json | ||
Vary: Origin | ||
Date: UNINTERESTING | ||
Content-Length: UNINTERESTING | ||
|
Oops, something went wrong.