Skip to content

Commit

Permalink
Merge pull request #21 from HerodotusDev/rm-slr
Browse files Browse the repository at this point in the history
removed `SLR`
  • Loading branch information
rkdud007 authored Sep 2, 2024
2 parents 36c8879 + 62c5f56 commit d111655
Show file tree
Hide file tree
Showing 17 changed files with 4,885 additions and 4,816 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ BlockSampledDatalake datalake = BlockSampledDatalake({
});
ComputationalTask computationalTask = ComputationalTask({
aggregateFnId: AggregateFn.SLR,
operatorId: Operator.NONE,
aggregateFnId: AggregateFn.COUNT,
operatorId: Operator.GT,
valueToCompare: uint256(10000000)
});
```
Expand All @@ -84,7 +84,7 @@ TransactionsInBlockDatalake datalake = TransactionsInBlockDatalake({
});
ComputationalTask computationalTask =
ComputationalTask({aggregateFnId: AggregateFn.SLR, operatorId: Operator.NONE, valueToCompare: uint256(50)});
ComputationalTask({aggregateFnId: AggregateFn.COUNT, operatorId: Operator.GT, valueToCompare: uint256(50)});
```

- Structure used for defining transactions included in the target block.
Expand Down
1 change: 0 additions & 1 deletion cairo_run_output.json

This file was deleted.

6 changes: 3 additions & 3 deletions helpers/script/hdp-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ prepare_cairo_enviroment() {
# Call the function to ensure the virtual environment is activated
prepare_cairo_enviroment

hdp run -r helpers/target/bs_request.json -p helpers/target/bs_cached_input.json -o helpers/target/bs_cached_output.json -c helpers/target/bs_hdp_pie.zip
hdp run -r helpers/target/tx_request.json -p helpers/target/tx_cached_input.json -o helpers/target/tx_cached_output.json -c helpers/target/tx_hdp_pie.zip
hdp run -r helpers/target/md_request.json -p helpers/target/md_cached_input.json -o helpers/target/md_cached_output.json -c helpers/target/md_hdp_pie.zip
hdp run -r helpers/target/bs_request.json -p helpers/target/bs_cached_input.json -b helpers/target/bs_cached_output.json -c helpers/target/bs_hdp_pie.zip
hdp run -r helpers/target/tx_request.json -p helpers/target/tx_cached_input.json -b helpers/target/tx_cached_output.json -c helpers/target/tx_hdp_pie.zip
hdp run -r helpers/target/md_request.json -p helpers/target/md_cached_input.json -b helpers/target/md_cached_output.json -c helpers/target/md_hdp_pie.zip
Loading

0 comments on commit d111655

Please sign in to comment.