Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

feat: refactor kakarot client #645

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
151 changes: 0 additions & 151 deletions crates/core/src/client/api.rs

This file was deleted.

4 changes: 2 additions & 2 deletions crates/core/src/client/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ lazy_static! {
pub static ref CUMULATIVE_GAS_USED: U256 = U256::from(1_000_000u64);
pub static ref EFFECTIVE_GAS_PRICE: U128 = U128::from(1_000_000u64);
pub static ref SIZE: Option<U256> = Some(U256::from(1_000_000u64));
pub static ref MAX_FEE: FieldElement = FieldElement::from(100_000_000_000_000_000u64);
pub static ref ESTIMATE_GAS: U256 = U256::from(100_000_000_000_000_000u64);
pub static ref MAX_FEE: FieldElement = FieldElement::from(100u64);
pub static ref ESTIMATE_GAS: U256 = U256::from(100u64);
pub static ref TRANSACTION_TYPE: U8 = U8::from(0);
pub static ref NONCE: Option<H64> = Some(H64::zero());
pub static ref MIX_HASH: H256 = H256::zero();
Expand Down
Loading
Loading