-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'evmrpc-custom-response-size-estimate' into 'evm-rpc-can…
…ister' feat(evmrpc): set up `evm-rpc-canister` branch Prerequisite changes for [#146](dfinity/evm-rpc-canister#146), [#147](dfinity/evm-rpc-canister#147), and [#148](dfinity/evm-rpc-canister#148) in the [EVM RPC canister](https://github.com/internet-computer-protocol/ic-eth-rpc) repository. Merges into the `evm-rpc-canister` branch. * Adds an `RpcConfig` struct with optional `response_size_estimate` field. * Changes the default response size estimate for `eth_getLogs` from 100 to 1024. * Refactors the ckETH max header size so that it is not added to the custom response size. * Updates CI based on the requirements for the `evm-rpc-canister` branch. * Removes the `Debug` trait from `RpcApi` (which may contain API keys). * Adjusts `ValidationError` enum variants. Note that these changes will not be merged into `master` at any point and are only used for the EVM RPC canister. See merge request dfinity-lab/public/ic!17319
- Loading branch information
Showing
5 changed files
with
60 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
build-cketh-minter: | ||
rules: | ||
- if: $CI_PIPELINE_SOURCE == 'merge_request_event' | ||
image: rustlang/rust:nightly | ||
script: | ||
- cargo build --package ic-cketh-minter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters