juno
juno copied to clipboard
Starknet client implementation.
Introduce a GitHub Actions workflow to automatically close stale issues and pull requests. This helps maintain repository hygiene by reducing clutter from inactive items. The workflow marks issues as stale...
Testing with a build from source, pulled from release `v0.12.2`, I cannot begin to sync. I used the snapshot from the `README` (https://juno-snapshots.nethermind.dev/files/sepolia/latest). I'm starting Juno with: ``` ./build/juno \...
Superseeding https://github.com/NethermindEth/juno/issues/1448, there is now a function that will create a uint128: https://github.com/NethermindEth/juno/blob/65c0d6c693d99b880a635a6ea7e6bbba09e27570/adapters/core2p2p/felt.go#L49 The goal for this ticket is to update the ResourceBounds in transaction.go to use that
https://github.com/cockroachdb/pebble/blob/master/metrics.go
For example, we can have small `network` and `log` packages. Two benefits: - Clarity. Better to avoid ambiguous package names like `common`, `utils`, `pkg`, etc. - Dependency management. A user...
## Issue Currently, logging is only set at the bootstrap with the defined log level. It would be beneficial to have the capability to dynamically change that through RPC. Furthermore,...
The functionality in `node/http.go` is very user-facing, and it should work flawlessly. To avoid errors like the one fixed in [this PR](https://github.com/NethermindEth/juno/pull/1179).
From Evyatar on slack > We also fixed the state commitments (old_root / new_root / state_root) fields to have 0x prefix like all other felts do. Other than that no...
[Truncate](https://github.com/NethermindEth/juno/blob/f48be088146911fd52997933f19112db695d28d9/core/trie/key.go#L125) function There is a [commit](https://github.com/NethermindEth/juno/pull/1961/commits/b3e75987d0a5372c92bf0161c4c7c8c312879171) with a fuzz test and a possible solution. Input: ```go k.len = 7 k.bitset = [32]uint8 [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64] length = 2 ``` output: ```go k.len...
Here is the official spec / doc from Starknet : https://docs.starknet.io/architecture-and-concepts/network-architecture/transactions `MaxFee` was used in V0 / V1 (and V2 for `declare`) , setting the maximum fee that the sender...