Struct snarkvm_wasm::program::Request
pub struct Request<N>where
N: Network,{ /* private fields */ }Implementations§
§impl<N> Request<N>where
N: Network,
impl<N> Request<N>where
N: Network,
pub fn sign<R>(
private_key: &PrivateKey<N>,
program_id: ProgramID<N>,
function_name: Identifier<N>,
inputs: impl ExactSizeIterator<Item = impl TryInto<Value<N>>>,
input_types: &[ValueType<N>],
rng: &mut R
) -> Result<Request<N>, Error>where
R: Rng + CryptoRng,
pub fn sign<R>(
private_key: &PrivateKey<N>,
program_id: ProgramID<N>,
function_name: Identifier<N>,
inputs: impl ExactSizeIterator<Item = impl TryInto<Value<N>>>,
input_types: &[ValueType<N>],
rng: &mut R
) -> Result<Request<N>, Error>where
R: Rng + CryptoRng,
Returns the request for a given private key, program ID, function name, inputs, input types, and RNG, where: challenge := HashToScalar(r * G, pk_sig, pr_sig, caller, [tvk, tcm, function ID, input IDs]) response := r - challenge * sk_sig
§impl<N> Request<N>where
N: Network,
impl<N> Request<N>where
N: Network,
pub fn verify(&self, input_types: &[ValueType<N>]) -> bool
pub fn verify(&self, input_types: &[ValueType<N>]) -> bool
Returns true if the request is valid, and false otherwise.
Verifies (challenge == challenge’) && (address == address’) && (serial_numbers == serial_numbers’) where: challenge’ := HashToScalar(r * G, pk_sig, pr_sig, caller, [tvk, tcm, function ID, input IDs])
§impl<N> Request<N>where
N: Network,
impl<N> Request<N>where
N: Network,
pub const fn network_id(&self) -> &Integer<N, u16>
pub const fn network_id(&self) -> &Integer<N, u16>
Returns the network ID.
pub const fn program_id(&self) -> &ProgramID<N>
pub const fn program_id(&self) -> &ProgramID<N>
Returns the program ID.
pub const fn function_name(&self) -> &Identifier<N>
pub const fn function_name(&self) -> &Identifier<N>
Returns the function name.
Trait Implementations§
§impl<'de, N> Deserialize<'de> for Request<N>where
N: Network,
impl<'de, N> Deserialize<'de> for Request<N>where
N: Network,
§fn deserialize<D>(
deserializer: D
) -> Result<Request<N>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<Request<N>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserializes the request from a string or bytes.
§impl<N> From<(Address<N>, Integer<N, u16>, ProgramID<N>, Identifier<N>, Vec<InputID<N>, Global>, Vec<Value<N>, Global>, Signature<N>, Field<N>, Field<N>, Scalar<N>, Field<N>)> for Request<N>where
N: Network,
impl<N> From<(Address<N>, Integer<N, u16>, ProgramID<N>, Identifier<N>, Vec<InputID<N>, Global>, Vec<Value<N>, Global>, Signature<N>, Field<N>, Field<N>, Scalar<N>, Field<N>)> for Request<N>where
N: Network,
§impl<N> PartialEq<Request<N>> for Request<N>where
N: PartialEq<N> + Network,
impl<N> PartialEq<Request<N>> for Request<N>where
N: PartialEq<N> + Network,
§impl<N> Serialize for Request<N>where
N: Network,
impl<N> Serialize for Request<N>where
N: Network,
§fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serializes the request into string or bytes.
impl<N> Eq for Request<N>where
N: Eq + Network,
impl<N> StructuralEq for Request<N>where
N: Network,
impl<N> StructuralPartialEq for Request<N>where
N: Network,
Auto Trait Implementations§
impl<N> RefUnwindSafe for Request<N>where
N: RefUnwindSafe,
<N as Environment>::Field: RefUnwindSafe,
<N as Environment>::Projective: RefUnwindSafe,
<N as Environment>::Scalar: RefUnwindSafe,
impl<N> Send for Request<N>
impl<N> Sync for Request<N>
impl<N> Unpin for Request<N>where
N: Unpin,
<N as Environment>::Field: Unpin,
<N as Environment>::Projective: Unpin,
<N as Environment>::Scalar: Unpin,
impl<N> UnwindSafe for Request<N>where
N: UnwindSafe,
<N as Environment>::Field: UnwindSafe,
<N as Environment>::Projective: UnwindSafe,
<N as Environment>::Scalar: UnwindSafe,
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more