MCPcopy Create free account
hub / github.com/Commit-Boost/commit-boost-client / generate_proxy_key_bls

Method generate_proxy_key_bls

crates/common/src/commit/client.rs:174–183  ·  view source on GitHub ↗
(
        &mut self,
        consensus_pubkey: BlsPublicKey,
    )

Source from the content-addressed store, hash-verified

172 }
173
174 pub async fn generate_proxy_key_bls(
175 &mut self,
176 consensus_pubkey: BlsPublicKey,
177 ) -> Result<SignedProxyDelegation<BlsPublicKey>, SignerClientError> {
178 let request = GenerateProxyRequest::new(consensus_pubkey, EncryptionScheme::Bls);
179
180 let bls_signed_proxy_delegation = self.generate_proxy_key(&request).await?;
181
182 Ok(bls_signed_proxy_delegation)
183 }
184
185 pub async fn generate_proxy_key_ecdsa(
186 &mut self,

Callers 1

runMethod · 0.80

Calls 1

generate_proxy_keyMethod · 0.45

Tested by

no test coverage detected