Skip to main content

Class: MoveAuthenticatorV1

Version 1 of the [MoveAuthenticator].

Extends

  • UniffiAbstractObject

Implements

Properties

[destructorGuardSymbol]

readonly [destructorGuardSymbol]: UniffiGcObject;

[pointerLiteralSymbol]

readonly [pointerLiteralSymbol]: bigint;

[uniffiTypeNameSymbol]

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

Methods

address()

address(): AddressLike;

Returns

AddressLike

Implementation of

MoveAuthenticatorV1Like.address


callArgs()

callArgs(): InputLike[];

Returns

InputLike[]

Implementation of

MoveAuthenticatorV1Like.callArgs


objectToAuthenticate()

objectToAuthenticate(): InputLike;

Returns

InputLike

Implementation of

MoveAuthenticatorV1Like.objectToAuthenticate


typeArgs()

typeArgs(): TypeTagLike[];

Returns

TypeTagLike[]

Implementation of

MoveAuthenticatorV1Like.typeArgs


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 MoveAuthenticatorV1;

Parameters

obj_

any

Returns

obj_ is MoveAuthenticatorV1


newWithImmutableAccountObject()

static newWithImmutableAccountObject(
callArgs,
typeArgs,
objectToAuthenticate
): MoveAuthenticatorV1Like;

Create a new move authenticator with an immutable object.

Parameters

callArgs

InputLike[]

typeArgs

TypeTagLike[]

objectToAuthenticate

ObjectReference

Returns

MoveAuthenticatorV1Like


newWithSharedAccountObject()

static newWithSharedAccountObject(
callArgs,
typeArgs,
objectToAuthenticate
): MoveAuthenticatorV1Like;

Create a new move authenticator with a shared object.

Parameters

callArgs

InputLike[]

typeArgs

TypeTagLike[]

objectToAuthenticate

SharedObjectReference

Returns

MoveAuthenticatorV1Like