Struct HoprNodeManagementModuleInstance

Source
pub struct HoprNodeManagementModuleInstance<P, N = Ethereum> { /* private fields */ }
Expand description

A HoprNodeManagementModule instance.

Contains type-safe methods for interacting with an on-chain instance of the HoprNodeManagementModule contract located at a given address, using a given provider P.

If the contract bytecode is available (see the sol! documentation on how to provide it), the deploy and deploy_builder methods can be used to deploy a new instance of the contract.

See the module-level documentation for all the available methods.

Implementations§

Source§

impl<P: Provider<N>, N: Network> HoprNodeManagementModuleInstance<P, N>

Instantiation and getters/setters.

Source

pub const fn new(address: Address, provider: P) -> Self

Creates a new wrapper around an on-chain HoprNodeManagementModule contract instance.

See the wrapper’s documentation for more details.

Source

pub async fn deploy( provider: P, ) -> Result<HoprNodeManagementModuleInstance<P, N>>

Deploys this contract using the given provider and constructor arguments, if any.

Returns a new instance of the contract, if the deployment was successful.

For more fine-grained control over the deployment process, use deploy_builder instead.

Source

pub fn deploy_builder(provider: P) -> RawCallBuilder<P, N>

Creates a RawCallBuilder for deploying this contract using the given provider and constructor arguments, if any.

This is a simple wrapper around creating a RawCallBuilder with the data set to the bytecode concatenated with the constructor’s ABI-encoded arguments.

Source

pub const fn address(&self) -> &Address

Returns a reference to the address.

Source

pub fn set_address(&mut self, address: Address)

Sets the address.

Source

pub fn at(self, address: Address) -> Self

Sets the address and returns self.

Source

pub const fn provider(&self) -> &P

Returns a reference to the provider.

Source§

impl<P: Clone, N> HoprNodeManagementModuleInstance<&P, N>

Source

pub fn with_cloned_provider(self) -> HoprNodeManagementModuleInstance<P, N>

Clones the provider and returns a new instance with the cloned provider.

Source§

impl<P: Provider<N>, N: Network> HoprNodeManagementModuleInstance<P, N>

Function calls.

Source

pub fn call_builder<C: SolCall>(&self, call: &C) -> SolCallBuilder<&P, C, N>

Creates a new call builder using this contract instance’s provider and address.

Note that the call can be any function call, not just those defined in this contract. Prefer using the other methods for building type-safe contract calls.

Source

pub fn addChannelsAndTokenTarget( &self, defaultTarget: <Target as SolType>::RustType, ) -> SolCallBuilder<&P, addChannelsAndTokenTargetCall, N>

Creates a new call builder for the [addChannelsAndTokenTarget] function.

Source

pub fn addNode( &self, nodeAddress: Address, ) -> SolCallBuilder<&P, addNodeCall, N>

Creates a new call builder for the [addNode] function.

Source

pub fn decodeFunctionSigsAndPermissions( &self, encoded: FixedBytes<32>, length: U256, ) -> SolCallBuilder<&P, decodeFunctionSigsAndPermissionsCall, N>

Creates a new call builder for the [decodeFunctionSigsAndPermissions] function.

Source

pub fn encodeFunctionSigsAndPermissions( &self, functionSigs: Vec<FixedBytes<4>>, permissions: Vec<<GranularPermission as SolType>::RustType>, ) -> SolCallBuilder<&P, encodeFunctionSigsAndPermissionsCall, N>

Creates a new call builder for the [encodeFunctionSigsAndPermissions] function.

Source

pub fn execTransactionFromModule( &self, to: Address, value: U256, data: Bytes, operation: <Operation as SolType>::RustType, ) -> SolCallBuilder<&P, execTransactionFromModuleCall, N>

Creates a new call builder for the [execTransactionFromModule] function.

Source

pub fn execTransactionFromModuleReturnData( &self, to: Address, value: U256, data: Bytes, operation: <Operation as SolType>::RustType, ) -> SolCallBuilder<&P, execTransactionFromModuleReturnDataCall, N>

Creates a new call builder for the [execTransactionFromModuleReturnData] function.

Source

pub fn getGranularPermissions( &self, capabilityKey: FixedBytes<32>, pairId: FixedBytes<32>, ) -> SolCallBuilder<&P, getGranularPermissionsCall, N>

Creates a new call builder for the [getGranularPermissions] function.

Source

pub fn getTargets(&self) -> SolCallBuilder<&P, getTargetsCall, N>

Creates a new call builder for the [getTargets] function.

Source

pub fn includeNode( &self, nodeDefaultTarget: <Target as SolType>::RustType, ) -> SolCallBuilder<&P, includeNodeCall, N>

Creates a new call builder for the [includeNode] function.

Source

pub fn initialize( &self, initParams: Bytes, ) -> SolCallBuilder<&P, initializeCall, N>

Creates a new call builder for the [initialize] function.

Source

pub fn isHoprNodeManagementModule( &self, ) -> SolCallBuilder<&P, isHoprNodeManagementModuleCall, N>

Creates a new call builder for the [isHoprNodeManagementModule] function.

Source

pub fn isNode(&self, nodeAddress: Address) -> SolCallBuilder<&P, isNodeCall, N>

Creates a new call builder for the [isNode] function.

Source

pub fn multisend(&self) -> SolCallBuilder<&P, multisendCall, N>

Creates a new call builder for the [multisend] function.

Source

pub fn owner(&self) -> SolCallBuilder<&P, ownerCall, N>

Creates a new call builder for the [owner] function.

Source

pub fn proxiableUUID(&self) -> SolCallBuilder<&P, proxiableUUIDCall, N>

Creates a new call builder for the [proxiableUUID] function.

Source

pub fn removeNode( &self, nodeAddress: Address, ) -> SolCallBuilder<&P, removeNodeCall, N>

Creates a new call builder for the [removeNode] function.

Source

pub fn renounceOwnership(&self) -> SolCallBuilder<&P, renounceOwnershipCall, N>

Creates a new call builder for the [renounceOwnership] function.

Source

pub fn revokeTarget( &self, targetAddress: Address, ) -> SolCallBuilder<&P, revokeTargetCall, N>

Creates a new call builder for the [revokeTarget] function.

Source

pub fn scopeChannelsCapabilities( &self, targetAddress: Address, channelId: FixedBytes<32>, encodedSigsPermissions: FixedBytes<32>, ) -> SolCallBuilder<&P, scopeChannelsCapabilitiesCall, N>

Creates a new call builder for the [scopeChannelsCapabilities] function.

Source

pub fn scopeSendCapability( &self, nodeAddress: Address, beneficiary: Address, permission: <GranularPermission as SolType>::RustType, ) -> SolCallBuilder<&P, scopeSendCapabilityCall, N>

Creates a new call builder for the [scopeSendCapability] function.

Source

pub fn scopeTargetChannels( &self, defaultTarget: <Target as SolType>::RustType, ) -> SolCallBuilder<&P, scopeTargetChannelsCall, N>

Creates a new call builder for the [scopeTargetChannels] function.

Source

pub fn scopeTargetSend( &self, defaultTarget: <Target as SolType>::RustType, ) -> SolCallBuilder<&P, scopeTargetSendCall, N>

Creates a new call builder for the [scopeTargetSend] function.

Source

pub fn scopeTargetToken( &self, defaultTarget: <Target as SolType>::RustType, ) -> SolCallBuilder<&P, scopeTargetTokenCall, N>

Creates a new call builder for the [scopeTargetToken] function.

Source

pub fn scopeTokenCapabilities( &self, nodeAddress: Address, targetAddress: Address, beneficiary: Address, encodedSigsPermissions: FixedBytes<32>, ) -> SolCallBuilder<&P, scopeTokenCapabilitiesCall, N>

Creates a new call builder for the [scopeTokenCapabilities] function.

Source

pub fn setMultisend( &self, _multisend: Address, ) -> SolCallBuilder<&P, setMultisendCall, N>

Creates a new call builder for the [setMultisend] function.

Source

pub fn transferOwnership( &self, newOwner: Address, ) -> SolCallBuilder<&P, transferOwnershipCall, N>

Creates a new call builder for the [transferOwnership] function.

Source

pub fn tryGetTarget( &self, targetAddress: Address, ) -> SolCallBuilder<&P, tryGetTargetCall, N>

Creates a new call builder for the [tryGetTarget] function.

Source

pub fn upgradeTo( &self, newImplementation: Address, ) -> SolCallBuilder<&P, upgradeToCall, N>

Creates a new call builder for the [upgradeTo] function.

Source

pub fn upgradeToAndCall( &self, newImplementation: Address, data: Bytes, ) -> SolCallBuilder<&P, upgradeToAndCallCall, N>

Creates a new call builder for the [upgradeToAndCall] function.

Source§

impl<P: Provider<N>, N: Network> HoprNodeManagementModuleInstance<P, N>

Event filters.

Source

pub fn event_filter<E: SolEvent>(&self) -> Event<&P, E, N>

Creates a new event filter using this contract instance’s provider and address.

Note that the type can be any event, not just those defined in this contract. Prefer using the other methods for building type-safe event filters.

Source

pub fn AdminChanged_filter(&self) -> Event<&P, AdminChanged, N>

Creates a new event filter for the AdminChanged event.

Source

pub fn BeaconUpgraded_filter(&self) -> Event<&P, BeaconUpgraded, N>

Creates a new event filter for the BeaconUpgraded event.

Source

pub fn ExecutionFailure_filter(&self) -> Event<&P, ExecutionFailure, N>

Creates a new event filter for the ExecutionFailure event.

Source

pub fn ExecutionSuccess_filter(&self) -> Event<&P, ExecutionSuccess, N>

Creates a new event filter for the ExecutionSuccess event.

Source

pub fn Initialized_filter(&self) -> Event<&P, Initialized, N>

Creates a new event filter for the Initialized event.

Source

pub fn NodeAdded_filter(&self) -> Event<&P, NodeAdded, N>

Creates a new event filter for the NodeAdded event.

Source

pub fn NodeRemoved_filter(&self) -> Event<&P, NodeRemoved, N>

Creates a new event filter for the NodeRemoved event.

Source

pub fn OwnershipTransferred_filter(&self) -> Event<&P, OwnershipTransferred, N>

Creates a new event filter for the OwnershipTransferred event.

Source

pub fn SetMultisendAddress_filter(&self) -> Event<&P, SetMultisendAddress, N>

Creates a new event filter for the SetMultisendAddress event.

Source

pub fn Upgraded_filter(&self) -> Event<&P, Upgraded, N>

Creates a new event filter for the Upgraded event.

Trait Implementations§

Source§

impl<P: Clone, N: Clone> Clone for HoprNodeManagementModuleInstance<P, N>

Source§

fn clone(&self) -> HoprNodeManagementModuleInstance<P, N>

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<P, N> Debug for HoprNodeManagementModuleInstance<P, N>

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<P, N> Freeze for HoprNodeManagementModuleInstance<P, N>
where P: Freeze,

§

impl<P, N> RefUnwindSafe for HoprNodeManagementModuleInstance<P, N>

§

impl<P, N> Send for HoprNodeManagementModuleInstance<P, N>
where P: Send, N: Send,

§

impl<P, N> Sync for HoprNodeManagementModuleInstance<P, N>
where P: Sync, N: Sync,

§

impl<P, N> Unpin for HoprNodeManagementModuleInstance<P, N>
where P: Unpin, N: Unpin,

§

impl<P, N> UnwindSafe for HoprNodeManagementModuleInstance<P, N>
where P: UnwindSafe, N: UnwindSafe,

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> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

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

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

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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
§

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

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. 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.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
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
§

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