We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi guys, we are still playing around the Envio indexer and for now, I found some edge case
I have created a repo that emits event and decodes a logs https://github.com/compolabs/orderbook-indexer-synchronizer
And with one case I have faced into a error
Number can only safely store up to 53 bits
You can reproduce this
Clone the Repository and install dependencies
git clone git@github.com:compolabs/orderbook-indexer-synchronizer.git cd orderbook-indexer-synchronizer npm i
Create a .env File Add your private key to the .env file.
.env
echo "ALICE=<YOUR PRIVATE KEY>" >> .env
Build Contracts Compile the smart contracts.
forc build
Make sure you have this contract in addresses.json
{"contractId":"0xe1631771301d5ba38fb7dc51b2815e9d29ef12cae10c6aa7e492008093cde318","blockNumber":8268037}
The text was updated successfully, but these errors were encountered:
Hey @chlenc, think I'm missing some additional config.
FAIL tests/data_encode.test.ts ● Test suite failed to run DB_NAME is required 7 | const result = process.env[name]; 8 | if (result == null && !optional) { > 9 | throw new Error(`${name} is required`); | ^ 10 | } 11 | return result; 12 | }
Sorry, something went wrong.
@maschad this doesn't seem to have gone stale yet 🤔
stale
@danielbate based on the CI action job it needs to be 14 full days
Oops, seems like we needed more information for this issue, please comment with more details or this issue will be closed in 7 days.
This issue was closed because it is missing author input.
danielbate
No branches or pull requests
Hi guys, we are still playing around the Envio indexer and for now, I found some edge case
I have created a repo that emits event and decodes a logs
https://github.com/compolabs/orderbook-indexer-synchronizer
And with one case I have faced into a error
Number can only safely store up to 53 bits
You can reproduce this
Clone the Repository and install dependencies
Create a
.env
FileAdd your private key to the
.env
file.Build Contracts
Compile the smart contracts.
Make sure you have this contract in addresses.json
The text was updated successfully, but these errors were encountered: