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: &[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: &[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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T>where
T: Future, type Output = <T as Future>::Output;
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T>where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourcefn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T>where
T: Future, type Output = <T as Future>::Output;
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T>where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
impl<T> Pointable for T
impl<T> Pointable for T
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T>where
T: Future, type Output = <T as Future>::Output;where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T>where
T: Future, type Output = <T as Future>::Output;where
S: Into<Dispatch>,
T: Future, type Output = <T as Future>::Output;
sourcefn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T>where
T: Future, type Output = <T as Future>::Output;
fn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T>where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;