Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[EPROD-424] remove user registration from emvc #20

Merged
merged 21 commits into from
Jul 12, 2023
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
c340a2b
EPROD-424 Remove create and call message endpoints and add new eth en…
itsyaasir Jun 30, 2023
7ee2745
Merge branch 'main' into EPROD-424-remove-user-registration-from-emvc
itsyaasir Jul 3, 2023
2e189a2
EPROD-424 Add reserve endpoints
itsyaasir Jul 4, 2023
69f2907
EPROD-424 Fix types
itsyaasir Jul 5, 2023
c5922eb
Merge branch 'main' into EPROD-424-remove-user-registration-from-emvc
blutooth Jul 6, 2023
632c0a8
EPROD-424 Fix imports
itsyaasir Jul 7, 2023
6e4bab0
EPROD-424 Update error variant
itsyaasir Jul 7, 2023
9ab2b51
EPROD-424 Update error variant
itsyaasir Jul 7, 2023
0e199d0
Add error message to error string representation
GraDKh Jul 10, 2023
6450cf4
EPROD-424 update register evm agent
itsyaasir Jul 10, 2023
04f5365
EPROD-424 Clean up
itsyaasir Jul 10, 2023
6eee70d
EPROD-424 Fix result
itsyaasir Jul 11, 2023
c885e12
Merge branch 'main' into EPROD-424-remove-user-registration-from-emvc
itsyaasir Jul 11, 2023
c93873c
Merge branch 'main' into EPROD-424-remove-user-registration-from-emvc
itsyaasir Jul 12, 2023
0896cc3
EPROD-424 derive more traits
itsyaasir Jul 12, 2023
8cf725b
EPROD-424 used evmc client in register evm agent
valeriyr Jul 12, 2023
135c920
EPROD-424 mass renaming
valeriyr Jul 12, 2023
194abba
Fix docs
ufoscout Jul 12, 2023
fb072f0
Merge pull request #25 from bitfinity-network/EPROD-424-use-evmc-clie…
ufoscout Jul 12, 2023
82b4cc6
remove unused dependencies
ufoscout Jul 12, 2023
6c1a58d
Merge remote-tracking branch 'origin/main' into EPROD-424-remove-user…
ufoscout Jul 12, 2023
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
Prev Previous commit
Merge remote-tracking branch 'origin/main' into EPROD-424-remove-user…
…-registration-from-emvc
  • Loading branch information
ufoscout committed Jul 12, 2023
commit 6c1a58d52d43c664b49192b0afed834023deab5c
13 changes: 13 additions & 0 deletions src/evmc-client/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -478,4 +478,17 @@ impl<C: CanisterClient> EvmcClient<C> {
.query("is_address_reserved", (principal, address))
.await
}

/// Returns the chain ID used for signing replay-protected transactions.
/// See [eth_chainid] (https://eth.wiki/json-rpc/API#eth_chainid)
///
/// # Arguments
/// None
///
/// # Returns
///
/// `chainId`, hexadecimal value as a string representing the integer of the current chain id.
pub async fn eth_chain_id(&self) -> CanisterClientResult<u64> {
self.client.query("eth_chain_id", ()).await
}
}
You are viewing a condensed version of this merge commit. You can view the full changes here.