Timothée Delabrouille
Timothée Delabrouille
Hey, While developing on my parachain, I would like to be able to run it like a simple regular FRAME chain. Mainly locally, the same way I can run `cargo...
Here is a list of ideas for new exercises. - Genesis config - Runtime benchmark and weight: we need to teach how to write and run the runtime benchmarks along...
**Is your feature request related to a problem? Please describe.** At https://github.com/keep-starknet-strange/madara we are building starknet sequencers. Other projects are doing so and others are building full nodes. All are...
In `vm/src/types/program.rs`: ```rust pub fn serialize(&self) -> Result { let program_serializer: ProgramSerializer = ProgramSerializer::from(self); let bytes: Vec = serde_json::to_vec(&program_serializer)?; Ok(bytes) } pub fn deserialize( program_serializer_bytes: &[u8], entrypoint: Option, ) ->...
## Problem The VM execution should be deterministic regardless of if it is executed on a 16, 32 or 64 bit processor. Having `usize` being used in order to define...
https://github.com/xJonathanLEI/starknet-rs/blob/d980869d44ef86249b4077f4ec809165f470678d/starknet-core/src/crypto.rs#L49 Right now the signature requires the input to be `&[FieldElement]` but it's implementation would still be valid if the input were to be a more generic `T: Iter`. It...
https://github.com/starkware-libs/cairo-lang/blob/caba294d82eeeccc3d86a158adb8ba209bf2d8fc/src/starkware/starknet/solidity/Starknet.sol#L180 ```solidity /** Updates the state of the StarkNet, based on a proof of the StarkNet OS that the state transition is valid. Arguments: programOutput - The main part of...
I'm using [this repository openRPC files](https://github.com/starkware-libs/starknet-specs/tree/master/api) for a project (madara lead by Abdel). Rather than creating all the types myself in rust, I use this binary provided by openRPC: https://github.com/open-rpc/typings...
File1: ```js import { EnumType } from 'json-to-graphql-query'; let email = "[email protected]"; let location = { city: "Paris", country: "France", number: "4", postCode: "75008", street: "avenue des Champs Elysee" };...
In the effort to homogenize the `Felt` type used across the Starknet rust ecosystem, this PR replaces the uses of the `cairo_felt::Felt252` type with the `starknet-types-cores::felt::Felt` type. It is already...