Skip to main content

Class: MoveAuthenticator

MoveAuthenticator is a signature variant that enables a method of authentication through Move code. This type represents the data received by the Move authenticate function during the Account Abstraction authentication flow.

Extends

  • UniffiAbstractObject

Implements

Properties

[destructorGuardSymbol]

readonly [destructorGuardSymbol]: UniffiGcObject;

[pointerLiteralSymbol]

readonly [pointerLiteralSymbol]: bigint;

[uniffiTypeNameSymbol]

readonly [uniffiTypeNameSymbol]: "MoveAuthenticator" = "MoveAuthenticator";

Methods

asV1()

asV1(): MoveAuthenticatorV1Like;

Convert this move authenticator into a version 1 move authenticator if it is one, or panic otherwise

Returns

MoveAuthenticatorV1Like

Implementation of

MoveAuthenticatorLike.asV1


uniffiDestroy()

uniffiDestroy(): void;

Explicitly tell Rust to destroy the native peer that backs this object.

Once this method has been called, any following method calls will throw an error.

Can be called more than once.

Returns

void

Overrides

UniffiAbstractObject.uniffiDestroy

uniffiUse()

uniffiUse<T>(block): T;

A convenience method to use this object, then destroy it after its use.

Type Parameters

T

T

Parameters

block

(obj) => T

Returns

T

Inherited from

UniffiAbstractObject.uniffiUse

instanceOf()

static instanceOf(obj_): obj_ is MoveAuthenticator;

Parameters

obj_

any

Returns

obj_ is MoveAuthenticator


newV1()

static newV1(moveAuthenticatorV1): MoveAuthenticatorLike;

Parameters

moveAuthenticatorV1

MoveAuthenticatorV1Like

Returns

MoveAuthenticatorLike