Skip to content

Commit

Permalink
update params
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisCarriere committed May 6, 2023
1 parent 607bfcc commit f7288fe
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 18 deletions.
2 changes: 1 addition & 1 deletion eosio.token/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "eosio_token"
version = "0.8.0"
version = "0.8.1"
authors = [
"Denis <[email protected]>",
"Yaro <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion eosio.token/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ gui:

.PHONY: param
param:
substreams gui -e eos.firehose.eosnation.io:9001 map_transfers -s 292103130 -t +1000000 -p map_transfers="to=swap.defi+bal.defi&symcode=EOS"
substreams gui -e eos.firehose.eosnation.io:9001 map_transfers -s 292103130 -t +1000000 -p map_transfers="to=swap.defi&symcode=EOS"

.PHONY: sink
sink:
Expand Down
20 changes: 6 additions & 14 deletions eosio.token/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ graph TD;
sf.antelope.type.v1.Block[source: sf.antelope.type.v1.Block] --> map_accounts;
map_stat[map: map_stat];
sf.antelope.type.v1.Block[source: sf.antelope.type.v1.Block] --> map_stat;
log_out[map: log_out];
map_transfers --> log_out;
db_out[map: db_out];
map_transfers --> db_out;
kv_out[map: kv_out];
Expand All @@ -36,43 +34,37 @@ graph TD;

```yaml
Package name: eosio_token
Version: v0.7.1
Version: v0.8.1
Doc: Antelope `eosio.token` based action traces & database operations.
Modules:
----
Name: map_transfers
Initial block: 0
Kind: map
Output Type: proto:antelope.eosio.token.v1.TransferEvents
Hash: 36f292f14c08f4dd5e4291c3daed6c9a9297659f
Hash: 9709be9b7bcfa5d7026187d356900bcefba7bcec

Name: map_accounts
Initial block: 0
Kind: map
Output Type: proto:antelope.eosio.token.v1.Accounts
Hash: 710aab7fd7768400b3c4ae870e0a815cedca9992
Hash: 9235d38296f953ebba46ce9426fc978bf7d62626

Name: map_stat
Initial block: 0
Kind: map
Output Type: proto:antelope.eosio.token.v1.Stats
Hash: 3faba8f892fcd63225d41f94e11b58c4aaeb690a

Name: log_out
Initial block: 0
Kind: map
Output Type: proto:pinax.substreams.sink.winston.v1.LoggerOperations
Hash: 0b049e5a7c4e4c435a8081b9e333b6d468bc677c
Hash: 21f1030a86f5a4ceaf4377d86e7a9f35cb51464f

Name: db_out
Initial block: 0
Kind: map
Output Type: proto:sf.substreams.sink.database.v1.DatabaseChanges
Hash: d80ee7c7c41a3fad8d9d6ded35423b61cffd2e56
Hash: c830d5c825f125dfc92c720d73059a47698aaef2

Name: kv_out
Initial block: 0
Kind: map
Output Type: proto:sf.substreams.sink.kv.v1.KVOperations
Hash: 1fabc19180314c3bc1781bd3e9dfae7be14674ac
Hash: d2a5746797ae42a9ebd31607c4068b7f504f4cfe
```
2 changes: 1 addition & 1 deletion eosio.token/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub fn create_filters(params: &str, key: &str) -> HashSet<String> {
if ( kv.len() != 2 ) || ( kv[0] != key ) {
continue;
}
for item in kv[1].split("+").collect::<Vec<&str>>() {
for item in kv[1].split(",").collect::<Vec<&str>>() {
filter.insert(item.as_string());
}
}
Expand Down
2 changes: 1 addition & 1 deletion eosio.token/substreams.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
specVersion: v0.1.0
package:
name: eosio_token
version: v0.8.0
version: v0.8.1
url: https://github.com/pinax-network/substreams
doc: Antelope `eosio.token` based action traces & database operations.

Expand Down

0 comments on commit f7288fe

Please sign in to comment.