madara
madara copied to clipboard
DEPRECATED in favor of https://github.com/madara-alliance/madara
# Feature Request **Describe the Feature Request** Right now all our fee estimation methods return mocked/false values. We should fix that. **Describe Preferred Solution** #### `simulate_transaction` #329 is still not...
**Current Behavior** `getStateUpdate` RPC endpoint is mocked. ```rust Ok(StateUpdate { block_hash: block.header().hash(*self.hasher).into(), new_root: block.header().global_state_root.into(), old_root, state_diff: StateDiff { storage_diffs: Vec::new(), deprecated_declared_classes: Vec::new(), declared_classes: Vec::new(), deployed_contracts: Vec::new(), replaced_classes: Vec::new(), nonces: Vec::new(),...
# Bug Report **Madara version:** Latest version on main **Current behavior:** The github ci tests are failing specifically due to the starknet-js tests failing. Here are the specific logs: https://github.com/keep-starknet-strange/madara/issues/1549#issuecomment-2043547828...
Since https://github.com/keep-starknet-strange/madara/pull/1407 we are able to execute std only code in the runtime. Meaning we are losing the use of our blockifier/starknet-api/cairo-vm forks. Still, we cannot use the libs directly...
It is now possible to skip the validation phase during estimate_fee. Write a check that uses it to validate an otherwise invalid tx. Do it in ` crates/pallets/starknet/src/tests/query_tx.rs` Replace the...
# Bug Report Currently the only way to pass all starknet-rpc-tests is to run the tests all togethers. Before then it was possible to run tests individually without depending on...
## Compute Global State Root in Client Instead of Runtime ### Description The goal of this issue is to move the computation of the global state root from the runtime...
# Pull Request type Please add the labels corresponding to the type of changes your PR introduces: - Bugfix Resolves: [#1504](https://github.com/keep-starknet-strange/madara/issues/1504)
Solves [#1548](https://github.com/keep-starknet-strange/madara/issues/1528) # Pull Request type - Refactoring (no functional changes, no API changes) ## Does this introduce a breaking change? No
After the Blockifier rebase is merged a bunch of fixes and complementary features have to be developed ### Full support for fees through STRK token #1571 - deploy the contract...