Struct polymesh_api::polymesh::api::external_agents::ExternalAgentsCallApi
source · pub struct ExternalAgentsCallApi<'api> { /* private fields */ }Implementations§
source§impl<'api> ExternalAgentsCallApi<'api>
impl<'api> ExternalAgentsCallApi<'api>
sourcepub fn create_group(
&self,
ticker: Ticker,
perms: SubsetRestriction<PalletPermissions>
) -> Result<WrappedCall>
pub fn create_group( &self, ticker: Ticker, perms: SubsetRestriction<PalletPermissions> ) -> Result<WrappedCall>
Creates a custom agent group (AG) for the given ticker.
The AG will have the permissions as given by perms.
This new AG is then assigned id = AGIdSequence::get() + 1 as its AGId,
which you can use as AgentGroup::Custom(id) when adding agents for ticker.
§Arguments
tickerto add the custom group for.permsthat the new AG will have.
§Errors
UnauthorizedAgentiforiginwas not authorized as an agent to call this.TooLongifpermshad some string or list length that was too long.CounterOverflowifAGIdSequence::get() + 1would exceedu32::MAX.
§Permissions
- Asset
- Agent
sourcepub fn set_group_permissions(
&self,
ticker: Ticker,
id: AGId,
perms: SubsetRestriction<PalletPermissions>
) -> Result<WrappedCall>
pub fn set_group_permissions( &self, ticker: Ticker, id: AGId, perms: SubsetRestriction<PalletPermissions> ) -> Result<WrappedCall>
Updates the permissions of the custom AG identified by id, for the given ticker.
§Arguments
tickerthe custom AG belongs to.idfor the custom AG withinticker.permsto update the custom AG to.
§Errors
UnauthorizedAgentiforiginwas not authorized as an agent to call this.TooLongifpermshad some string or list length that was too long.NoSuchAGifiddoes not identify a custom AG.
§Permissions
- Asset
- Agent
sourcepub fn remove_agent(
&self,
ticker: Ticker,
agent: IdentityId
) -> Result<WrappedCall>
pub fn remove_agent( &self, ticker: Ticker, agent: IdentityId ) -> Result<WrappedCall>
Remove the given agent from ticker.
§Arguments
tickerthat has theagentto remove.agentoftickerto remove.
§Errors
UnauthorizedAgentiforiginwas not authorized as an agent to call this.NotAnAgentifagentis not an agent ofticker.RemovingLastFullAgentifagentis the last full one.
§Permissions
- Asset
- Agent
sourcepub fn abdicate(&self, ticker: Ticker) -> Result<WrappedCall>
pub fn abdicate(&self, ticker: Ticker) -> Result<WrappedCall>
sourcepub fn change_group(
&self,
ticker: Ticker,
agent: IdentityId,
group: AgentGroup
) -> Result<WrappedCall>
pub fn change_group( &self, ticker: Ticker, agent: IdentityId, group: AgentGroup ) -> Result<WrappedCall>
Change the agent group that agent belongs to in ticker.
§Arguments
tickerthat has theagent.agentoftickerto change the group for.groupthatagentwill belong to inticker.
§Errors
UnauthorizedAgentiforiginwas not authorized as an agent to call this.NoSuchAGifiddoes not identify a custom AG.NotAnAgentifagentis not an agent ofticker.RemovingLastFullAgentifagentwas aFullone and is being demoted.
§Permissions
- Asset
- Agent
sourcepub fn accept_become_agent(&self, auth_id: u64) -> Result<WrappedCall>
pub fn accept_become_agent(&self, auth_id: u64) -> Result<WrappedCall>
Accept an authorization by an agent “Alice” who issued auth_id
to also become an agent of the ticker Alice specified.
§Arguments
auth_ididentifying the authorization to accept.
§Errors
AuthorizationError::Invalidifauth_iddoes not exist for the given caller.AuthorizationError::Expiredifauth_idis for an auth that has expired.AuthorizationError::BadTypeifauth_idwas not for aBecomeAgentauth type.UnauthorizedAgentif “Alice” is not permissioned to provide the auth.NoSuchAGif the group referred to a custom that does not exist.AlreadyAnAgentif the caller is already an agent of the ticker.
§Permissions
- Agent
sourcepub fn create_group_and_add_auth(
&self,
ticker: Ticker,
perms: SubsetRestriction<PalletPermissions>,
target: IdentityId,
expiry: Option<u64>
) -> Result<WrappedCall>
pub fn create_group_and_add_auth( &self, ticker: Ticker, perms: SubsetRestriction<PalletPermissions>, target: IdentityId, expiry: Option<u64> ) -> Result<WrappedCall>
sourcepub fn create_and_change_custom_group(
&self,
ticker: Ticker,
perms: SubsetRestriction<PalletPermissions>,
agent: IdentityId
) -> Result<WrappedCall>
pub fn create_and_change_custom_group( &self, ticker: Ticker, perms: SubsetRestriction<PalletPermissions>, agent: IdentityId ) -> Result<WrappedCall>
Utility extrinsic to batch create_group and change_group for custom groups only.
§Permissions
- Asset
- Agent
Trait Implementations§
source§impl<'api> Clone for ExternalAgentsCallApi<'api>
impl<'api> Clone for ExternalAgentsCallApi<'api>
source§fn clone(&self) -> ExternalAgentsCallApi<'api>
fn clone(&self) -> ExternalAgentsCallApi<'api>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'api> Freeze for ExternalAgentsCallApi<'api>
impl<'api> !RefUnwindSafe for ExternalAgentsCallApi<'api>
impl<'api> Send for ExternalAgentsCallApi<'api>
impl<'api> Sync for ExternalAgentsCallApi<'api>
impl<'api> Unpin for ExternalAgentsCallApi<'api>
impl<'api> !UnwindSafe for ExternalAgentsCallApi<'api>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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 moresource§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T. Read moresource§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from.source§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T.