pub trait IdentifyAccount {
    type AccountId;

    // Required method
    fn into_account(self) -> Self::AccountId;
}
Expand description

Some type that is able to be collapsed into an account ID. It is not possible to recreate the original value from the account ID.

Required Associated Types§

type AccountId

The account ID that this can be transformed into.

Required Methods§

fn into_account(self) -> Self::AccountId

Transform into an account.

Implementors§

§

impl IdentifyAccount for MultiSigner

§

impl IdentifyAccount for gclient::ext::sp_runtime::app_crypto::ecdsa::Public

§

impl IdentifyAccount for gclient::ext::sp_runtime::app_crypto::ed25519::Public

§

impl IdentifyAccount for gclient::ext::sp_runtime::app_crypto::sr25519::Public

§

impl IdentifyAccount for UintAuthorityId