ProgramManager

Struct ProgramManager 

Source
pub struct ProgramManager<'agent> { /* private fields */ }

Implementations§

Source§

impl<'agent> ProgramManager<'agent>

Source

pub fn new(agent: &'agent Agent, program_id: ProgramID) -> Self

Creates a new Program Manager with an agent and a particular ProgramID.

Source

pub fn program_id(&self) -> &ProgramID

Source

pub fn agent(&self) -> &Agent

Source§

impl<'agent> ProgramManager<'agent>

Source

pub fn execute_program( &self, function: &str, inputs: impl ExactSizeIterator<Item = impl TryInto<Value>>, priority_fee: u64, fee_record: Option<PlaintextRecord>, ) -> Result<String>

Execute a program function on the Aleo Network.

To run this function successfully, the program must already be deployed on the Aleo Network

§Arguments
  • function - The function to execute
  • inputs - The inputs to the function
  • priority_fee - The priority fee to pay for the transaction
  • fee_record - The plaintext record to pay for the transaction fee. If None, the fee will be paid through the account’s public balance
§Returns

The transaction ID of the execution transaction

§Example
use aleo_agent::agent::Agent;
use aleo_agent::program::ProgramManager;
let pm = Agent::default().program("xxx.aleo");

// Execute the main function of the xxx.aleo program with inputs 1, 2, 3; priority fee 100; and no fee record
// The fee will be paid through account's public balance
let tx_id = pm.execute_program("main", vec![1, 2, 3].into_iter(), 100, None).expect("Failed to execute program");
Source

pub fn get_program_records( &self, block_heights: Range<u32>, unspent_only: bool, ) -> Result<Vec<(Field, CiphertextRecord)>>

Execute a program function on the Aleo Network with a priority fee and no fee record

§Arguments
  • block_heights - The range of block heights to search for records
  • unspent_only - Whether to return only unspent records : true for unspent records, false for all records
§Returns

A vector of records that match the search criteria

§Example
use aleo_agent::agent::Agent;
use aleo_agent::program::ProgramManager;
let pm = Agent::default().program("xxx.aleo");

// Get the unspent records of the first 100 blocks for the program
let records = pm.get_program_records(0..100, true).expect("Failed to get program records");
Source

pub fn get_mapping_value( &self, mapping_name: impl TryInto<Identifier>, key: impl TryInto<Plaintext>, ) -> Result<Value>

Get the current value of a mapping given a specific program, mapping name, and mapping key

§Arguments
  • mapping_name - The name of the mapping to query
  • key - The key to query the mapping with
§Returns

The value of the mapping at the given key

Source

pub fn get_program_mappings(&self) -> Result<Vec<Identifier>>

Get all mappings associated with a program.

Source§

impl<'agent> ProgramManager<'agent>

Source

pub fn get_program_from_chain(program_id: &ProgramID) -> Result<Program>

Get a program from the network by its ID. This method will return an error if it does not exist.

Source

pub fn get_import_programs_from_chain( program: &Program, ) -> Result<IndexMap<ProgramID, Program>>

Resolve imports of a program in a depth-first-search order from program source code

§Arguments
  • program - The program to resolve imports for
§Returns

A map of program IDs to programs

Source

pub fn load_program_from_path<P: Into<PathBuf>>(path: P) -> Result<Program>

Load a program from a file path

§Arguments
  • path - The path refers to the folder containing the program.json and *.aleo files, which are generated by leo build in the Leo project.

Trait Implementations§

Source§

impl<'agent> Clone for ProgramManager<'agent>

Source§

fn clone(&self) -> ProgramManager<'agent>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<'agent> Freeze for ProgramManager<'agent>

§

impl<'agent> !RefUnwindSafe for ProgramManager<'agent>

§

impl<'agent> Send for ProgramManager<'agent>

§

impl<'agent> Sync for ProgramManager<'agent>

§

impl<'agent> Unpin for ProgramManager<'agent>

§

impl<'agent> !UnwindSafe for ProgramManager<'agent>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more