pub struct OperationalTool { /* private fields */ }
Expand description

A helper to test the operational tool in tests

Implementations§

source§

impl OperationalTool

source

pub fn new(host: String, chain_id: ChainId) -> OperationalTool

source

pub fn test() -> OperationalTool

source

pub fn account_resource( &self, account_address: AccountAddress ) -> Result<SimplifiedAccountResource, Error>

source

pub fn check_endpoint( &self, network_id: &NetworkId, network_address: NetworkAddress ) -> Result<String, Error>

source

pub fn check_endpoint_with_key( &self, network_id: &NetworkId, network_address: NetworkAddress, private_key: &PrivateKey ) -> Result<String, Error>

source

pub fn create_account( &self, name: &str, path_to_key: &str, backend: &SecureBackend, disable_validate: bool, command_name: CommandName, execute: fn(_: Command) -> Result<(TransactionContext, AccountAddress), Error> ) -> Result<(TransactionContext, AccountAddress), Error>

source

pub fn create_validator( &self, name: &str, path_to_key: &str, backend: &SecureBackend, disable_validate: bool ) -> Result<(TransactionContext, AccountAddress), Error>

source

pub fn create_validator_operator( &self, name: &str, path_to_key: &str, backend: &SecureBackend, disable_validate: bool ) -> Result<(TransactionContext, AccountAddress), Error>

source

pub fn extract_public_key( &self, key_name: &str, key_file: &str, key_type: KeyType, encoding: EncodingType, backend: &SecureBackend ) -> Result<(), Error>

source

pub fn extract_private_key( &self, key_name: &str, key_file: &str, key_type: KeyType, encoding: EncodingType, backend: &SecureBackend ) -> Result<(), Error>

source

pub fn extract_peer_from_file( &self, key_file: &Path, encoding: EncodingType ) -> Result<HashMap<PeerId, Peer>, Error>

source

pub fn extract_peer_from_storage( &self, key_name: &str, backend: &SecureBackend ) -> Result<HashMap<PeerId, Peer>, Error>

source

pub fn extract_peers_from_keys( &self, keys: HashSet<PublicKey>, output_file: &Path ) -> Result<HashMap<PeerId, Peer>, Error>

source

pub fn generate_key( &self, key_type: KeyType, key_file: &Path, encoding: EncodingType ) -> Result<PrivateKey, Error>

source

pub fn insert_waypoint( &self, waypoint: Waypoint, backend: &SecureBackend, set_genesis: bool ) -> Result<(), Error>

source

pub fn print_account( &self, account_name: &str, backend: &SecureBackend ) -> Result<AccountAddress, Error>

source

pub fn print_key( &self, key_name: &str, backend: &SecureBackend ) -> Result<Ed25519PublicKey, Error>

source

pub fn print_waypoint( &self, waypoint_name: &str, backend: &SecureBackend ) -> Result<Waypoint, Error>

source

pub fn set_validator_config( &self, validator_address: Option<NetworkAddress>, fullnode_address: Option<NetworkAddress>, backend: &SecureBackend, disable_validate: bool, disable_address_validation: bool ) -> Result<TransactionContext, Error>

source

pub fn rotate_consensus_key( &self, backend: &SecureBackend, disable_validate: bool ) -> Result<(TransactionContext, Ed25519PublicKey), Error>

source

pub fn rotate_operator_key( &self, backend: &SecureBackend, disable_validate: bool ) -> Result<(TransactionContext, Ed25519PublicKey), Error>

source

pub fn rotate_operator_key_with_custom_validation( &self, backend: &SecureBackend, disable_validate: bool, sleep_interval: Option<u64>, validate_timeout: Option<u64> ) -> Result<(TransactionContext, Ed25519PublicKey), Error>

source

pub fn rotate_validator_network_key( &self, backend: &SecureBackend, disable_validate: bool ) -> Result<(TransactionContext, PublicKey), Error>

source

pub fn rotate_fullnode_network_key( &self, backend: &SecureBackend, disable_validate: bool ) -> Result<(TransactionContext, PublicKey), Error>

source

pub fn validate_transaction( &self, account_address: AccountAddress, sequence_number: u64 ) -> Result<TransactionContext, Error>

source

pub fn set_validator_operator( &self, name: &str, account_address: AccountAddress, backend: &SecureBackend, disable_validate: bool ) -> Result<TransactionContext, Error>

source

pub fn validator_config( &self, account_address: AccountAddress, backend: Option<&SecureBackend> ) -> Result<DecryptedValidatorConfig, Error>

source

pub fn validator_set( &self, account_address: Option<AccountAddress>, backend: Option<&SecureBackend> ) -> Result<Vec<DecryptedValidatorInfo>, Error>

source

pub fn add_validator( &self, account_address: AccountAddress, backend: &SecureBackend, disable_validate: bool ) -> Result<TransactionContext, Error>

source

pub fn remove_validator( &self, account_address: AccountAddress, backend: &SecureBackend, disable_validate: bool ) -> Result<TransactionContext, Error>

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · 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 Twhere U: From<T>,

const: unstable · 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

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

Initializes a with the given initializer. Read more
§

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

Dereferences the given pointer. Read more
§

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

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

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

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
§

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

§

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