Struct NodeInterface

Source
pub struct NodeInterface {
    pub api_key: String,
    pub url: Url,
}
Expand description

The NodeInterface struct which holds the relevant Ergo node data and has methods implemented to interact with the node.

Fields§

§api_key: String§url: Url

Implementations§

Source§

impl NodeInterface

Source

pub fn new(api_key: &str, ip: &str, port: &str) -> Result<Self>

Create a new NodeInterface using details about the Node Sets url to http://ip:port using ip and port

Source

pub fn from_url(api_key: &str, url: Url) -> Self

Source

pub fn from_url_str(api_key: &str, url: &str) -> Result<Self>

Source

pub fn unspent_boxes_by_address( &self, address: &P2PKAddressString, offset: u64, limit: u64, ) -> Result<Vec<ErgoBox>>

Acquires unspent boxes from the blockchain by specific address

Source

pub fn unspent_boxes_by_token_id( &self, token_id: &TokenId, offset: u64, limit: u64, ) -> Result<Vec<ErgoBox>>

Acquires unspent boxes from the blockchain by specific token_id

Source

pub fn nano_ergs_balance(&self, address: &P2PKAddressString) -> Result<NanoErg>

Get the current nanoErgs balance held in the address

Source

pub fn p2s_to_tree(&self, address: &P2SAddressString) -> Result<String>

Given a P2S Ergo address, extract the hex-encoded serialized ErgoTree (script)

Source

pub fn p2s_to_bytes(&self, address: &P2SAddressString) -> Result<String>

Given a P2S Ergo address, convert it to a hex-encoded Sigma byte array constant

Source

pub fn p2pk_to_raw(&self, address: &P2PKAddressString) -> Result<String>

Given an Ergo P2PK Address, convert it to a raw hex-encoded EC point

Source

pub fn p2pk_to_raw_for_register( &self, address: &P2PKAddressString, ) -> Result<String>

Given an Ergo P2PK Address, convert it to a raw hex-encoded EC point and prepend the type bytes so it is encoded and ready to be used in a register.

Source

pub fn raw_to_p2pk(&self, raw: &str) -> Result<P2PKAddressString>

Given a raw hex-encoded EC point, convert it to a P2PK address

Source

pub fn raw_from_register_to_p2pk( &self, typed_raw: &str, ) -> Result<P2PKAddressString>

Given a raw hex-encoded EC point from a register (thus with type encoded characters in front), convert it to a P2PK address

Source

pub fn serialize_boxes(&self, b: &[ErgoBox]) -> Result<Vec<String>>

Given a Vec<ErgoBox> return the given boxes (which must be part of the UTXO-set) as a vec of serialized strings in Base16 encoding

Source

pub fn serialize_box(&self, b: &ErgoBox) -> Result<String>

Given an ErgoBox return the given box (which must be part of the UTXO-set) as a serialized string in Base16 encoding

Source

pub fn serialized_box_from_id(&self, box_id: &String) -> Result<String>

Given a box id return the given box (which must be part of the UTXO-set) as a serialized string in Base16 encoding

Source

pub fn box_from_id(&self, box_id: &String) -> Result<ErgoBox>

Given a box id return the given box (which must be part of the UTXO-set) as a serialized string in Base16 encoding

Source

pub fn current_block_height(&self) -> Result<BlockHeight>

Get the current block height of the blockchain

Source

pub fn get_state_context(&self) -> Result<ErgoStateContext>

Get the current state context of the blockchain

Source

pub fn get_last_block_headers(&self, number: u32) -> Result<Vec<Header>>

Get the last number of block headers from the blockchain

Source

pub fn indexer_status(&self) -> Result<IndexerStatus>

Checks if the blockchain indexer is active by querying the node.

Source§

impl NodeInterface

Source

pub fn get_node_api_header(&self) -> HeaderValue

Builds a HeaderValue to use for requests with the api key specified

Source

pub fn set_req_headers(&self, rb: RequestBuilder) -> RequestBuilder

Sets required headers for a request

Source

pub fn send_get_req(&self, endpoint: &str) -> Result<Response>

Sends a GET request to the Ergo node

Source

pub fn send_post_req(&self, endpoint: &str, body: String) -> Result<Response>

Sends a POST request to the Ergo node

Source

pub fn parse_response_to_json( &self, resp: Result<Response>, ) -> Result<JsonValue>

Parses response from node into JSON

Source

pub fn use_json_endpoint_and_check_errors( &self, endpoint: &str, json_body: &JsonString, ) -> Result<JsonValue>

General function for submitting a Json String body to an endpoint which also returns a JsonValue response.

Source§

impl NodeInterface

Scanning-related endpoints

Source

pub fn register_scan(&self, scan_json: Value) -> Result<ScanId>

Registers a scan with the node and either returns the scan_id or an error

Source

pub fn deregister_scan(&self, scan_id: ScanId) -> Result<ScanId>

Source

pub fn scan_boxes(&self, scan_id: ScanId) -> Result<Vec<ErgoBox>>

Using the scan_id of a registered scan, acquires unspent boxes which have been found by said scan

Source

pub fn add_box_to_scan( &self, scan_id: ScanId, box_id: &String, ) -> Result<String>

Using the scan_id of a registered scan, manually adds a box to said scan.

Source§

impl NodeInterface

Source

pub fn submit_json_transaction( &self, signed_tx_json: &JsonString, ) -> Result<TxId>

Submits a Signed Transaction provided as input as JSON to the Ergo Blockchain mempool.

Source

pub fn sign_json_transaction( &self, unsigned_tx_string: &JsonString, ) -> Result<JsonValue>

Sign an Unsigned Transaction which is formatted in JSON

Source

pub fn sign_and_submit_json_transaction( &self, unsigned_tx_string: &JsonString, ) -> Result<TxId>

Sign an Unsigned Transaction which is formatted in JSON and then submit it to the mempool.

Source

pub fn submit_transaction(&self, signed_tx: &Transaction) -> Result<TxId>

Submits a Signed Transaction provided as input to the Ergo Blockchain mempool.

Source

pub fn sign_transaction( &self, unsigned_tx: &UnsignedTransaction, boxes_to_spend: Option<Vec<ErgoBox>>, data_input_boxes: Option<Vec<ErgoBox>>, ) -> Result<Transaction>

Sign an UnsignedTransaction unsigned_tx - The unsigned transaction to sign. boxes_to_spend - optional list of input boxes. If not provided, the node will search for the boxes in UTXO data_input_boxes - optional list of data boxes. If not provided, the node will search for the data boxes in UTXO

Source

pub fn sign_and_submit_transaction( &self, unsigned_tx: &UnsignedTransaction, ) -> Result<TxId>

Sign an UnsignedTransaction and then submit it to the mempool.

Source

pub fn generate_and_submit_transaction( &self, tx_request_json: &JsonString, ) -> Result<TxId>

Generates and submits a tx using the node endpoints. Input is a json formatted request with rawInputs (and rawDataInputs) manually selected or inputs will be automatically selected by wallet. Returns the resulting TxId.

Source

pub fn generate_json_transaction( &self, tx_request_json: &JsonString, ) -> Result<JsonValue>

Generates Json of an Unsigned Transaction. Input must be a json formatted request with rawInputs (and rawDataInputs) manually selected or will be automatically selected by wallet.

Gets the recommended fee for a transaction. bytes - size of the transaction in bytes wait_time - minutes to wait for the transaction to be included in the blockchain

Source§

impl NodeInterface

Source

pub fn wallet_addresses(&self) -> Result<Vec<P2PKAddressString>>

Get all addresses from the node wallet

Source

pub fn unspent_boxes(&self) -> Result<Vec<ErgoBox>>

Acquires unspent boxes from the node wallet

Source

pub fn unspent_boxes_sorted(&self) -> Result<Vec<ErgoBox>>

Returns unspent boxes from the node wallet ordered from highest to lowest nanoErgs value.

Source

pub fn unspent_boxes_with_min_total( &self, total: NanoErg, ) -> Result<Vec<ErgoBox>>

Returns a sorted list of unspent boxes which cover at least the provided value total of nanoErgs. Note: This box selection strategy simply uses the largest value holding boxes from the user’s wallet first.

Source

pub fn unspent_boxes_with_min_total_by_age( &self, total: NanoErg, ) -> Result<Vec<ErgoBox>>

Returns a list of unspent boxes which cover at least the provided value total of nanoErgs. Note: This box selection strategy simply uses the oldest unspent boxes from the user’s full node wallet first.

Source

pub fn highest_value_unspent_box(&self) -> Result<ErgoBox>

Acquires the unspent box with the highest value of Ergs inside from the wallet

Source

pub fn serialized_highest_value_unspent_box(&self) -> Result<String>

Acquires the unspent box with the highest value of Ergs inside from the wallet and serializes it

Source

pub fn serialized_unspent_boxes_with_min_total( &self, total: NanoErg, ) -> Result<Vec<String>>

Acquires unspent boxes which cover total amount of nanoErgs from the wallet and serializes the boxes

Source

pub fn wallet_nano_ergs_balance(&self) -> Result<NanoErg>

Get the current nanoErgs balance held in the Ergo Node wallet

Source

pub fn wallet_status(&self) -> Result<WalletStatus>

Get wallet status /wallet/status

Source

pub fn wallet_unlock(&self, password: &str) -> Result<bool>

Unlock wallet

Trait Implementations§

Source§

impl Clone for NodeInterface

Source§

fn clone(&self) -> NodeInterface

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
Source§

impl Debug for NodeInterface

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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> Conv for T

Source§

fn conv<T>(self) -> T
where Self: Into<T>,

Converts self into T using Into<T>. Read more
Source§

impl<T> FmtForward for T

Source§

fn fmt_binary(self) -> FmtBinary<Self>
where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
Source§

fn fmt_display(self) -> FmtDisplay<Self>
where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
Source§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>
where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
Source§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>
where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
Source§

fn fmt_octal(self) -> FmtOctal<Self>
where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
Source§

fn fmt_pointer(self) -> FmtPointer<Self>
where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
Source§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>
where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
Source§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>
where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
Source§

fn fmt_list(self) -> FmtList<Self>
where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. 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> Pipe for T
where T: ?Sized,

Source§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
where Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
Source§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R
where R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
Source§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R
where R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
Source§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
where Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
Source§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
where Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
Source§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
where Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows self, then passes self.as_ref() into the pipe function.
Source§

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
where Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.as_mut() into the pipe function.
Source§

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
where Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
Source§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R, ) -> R
where Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> Tap for T

Source§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
Source§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
Source§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
Source§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
Source§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
Source§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
Source§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
Source§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
Source§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
Source§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
Source§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Calls .tap_borrow() only in debug builds, and is erased in release builds.
Source§

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
Source§

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Calls .tap_ref() only in debug builds, and is erased in release builds.
Source§

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
Source§

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
Source§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
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> TryConv for T

Source§

fn try_conv<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
Source§

impl<F> TryExtractInto<F> for F

Source§

fn try_extract_into<T>(self) -> Result<T, TryExtractFromError>
where T: TryExtractFrom<F>,

Extract value of the given type from any type (e.g. [‘Constant’], super::value::Value) on which TryExtractFrom is implemented
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
Source§

impl<T> ErasedDestructor for T
where T: 'static,