Skip to content

WalletAdapter

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:63

Wallet adapter interface

Extends

Methods

addEventListener()

addEventListener<T>(
type: T,
callback:
| null
| TypedEventListenerOrEventListenerObject<WalletEvents, T>,
options?: boolean | AddEventListenerOptions): void;

Defined in: node_modules/.pnpm/[email protected]/node_modules/iso-web/dist/src/event-target/index.d.ts:29

Type Parameters

Type Parameter
T extends | "error" | "connect" | "disconnect" | "accountChanged" | "networkChanged" | "stateChanged"

Parameters

ParameterType
typeT
callback| null | TypedEventListenerOrEventListenerObject<WalletEvents, T>
options?boolean | AddEventListenerOptions

Returns

void

Inherit Doc

Inherited from

TypedEventTarget.addEventListener

dispatchEvent()

dispatchEvent(event: Event): boolean;

Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:8882

Dispatches a synthetic event event to target and returns true if either event’s cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.

MDN Reference

Parameters

ParameterType
eventEvent

Returns

boolean

Inherited from

TypedEventTarget.dispatchEvent

dispatchTypedEvent()

dispatchTypedEvent<T>(_type: T, event: WalletEvents[T]): boolean;

Defined in: node_modules/.pnpm/[email protected]/node_modules/iso-web/dist/src/event-target/index.d.ts:20

Dispatches a synthetic event to target and returns true if either event’s cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.

Type Parameters

Type Parameter
T extends keyof WalletEvents

Parameters

ParameterType
_typeT
eventWalletEvents[T]

Returns

boolean

Inherited from

TypedEventTarget.dispatchTypedEvent

emit()

emit<T>(...args: WalletEvents[T]["detail"] extends IsAny<WalletEvents[T]["detail"]> ? [T, unknown] : [T, WalletEvents[T]["detail"]]): boolean;

Defined in: node_modules/.pnpm/[email protected]/node_modules/iso-web/dist/src/event-target/index.d.ts:21

Type Parameters

Type Parameter
T extends keyof WalletEvents

Parameters

ParameterType
argsWalletEvents[T]["detail"] extends IsAny<WalletEvents[T]["detail"]> ? [T, unknown] : [T, WalletEvents[T]["detail"]]

Returns

boolean

Inherited from

TypedEventTarget.emit

off()

off<T>(
type: T,
callback:
| null
| TypedEventListenerOrEventListenerObject<WalletEvents, T>,
options?: boolean | EventListenerOptions): void;

Defined in: node_modules/.pnpm/[email protected]/node_modules/iso-web/dist/src/event-target/index.d.ts:55

Alias for TypedEventTarget.removeEventListener

Type Parameters

Type Parameter
T extends | "error" | "connect" | "disconnect" | "accountChanged" | "networkChanged" | "stateChanged"

Parameters

ParameterType
typeT
callback| null | TypedEventListenerOrEventListenerObject<WalletEvents, T>
options?boolean | EventListenerOptions

Returns

void

Inherited from

TypedEventTarget.off

on()

on<T>(
type: T,
callback:
| null
| TypedEventListenerOrEventListenerObject<WalletEvents, T>,
options?: boolean | AddEventListenerOptions): void;

Defined in: node_modules/.pnpm/[email protected]/node_modules/iso-web/dist/src/event-target/index.d.ts:38

Alias for TypedEventTarget.addEventListener

Type Parameters

Type Parameter
T extends | "error" | "connect" | "disconnect" | "accountChanged" | "networkChanged" | "stateChanged"

Parameters

ParameterType
typeT
callback| null | TypedEventListenerOrEventListenerObject<WalletEvents, T>
options?boolean | AddEventListenerOptions

Returns

void

Inherited from

TypedEventTarget.on

removeEventListener()

removeEventListener<T>(
type: T,
callback:
| null
| TypedEventListenerOrEventListenerObject<WalletEvents, T>,
options?: boolean | EventListenerOptions): void;

Defined in: node_modules/.pnpm/[email protected]/node_modules/iso-web/dist/src/event-target/index.d.ts:46

Type Parameters

Type Parameter
T extends | "error" | "connect" | "disconnect" | "accountChanged" | "networkChanged" | "stateChanged"

Parameters

ParameterType
typeT
callback| null | TypedEventListenerOrEventListenerObject<WalletEvents, T>
options?boolean | EventListenerOptions

Returns

void

Inherit Doc

Inherited from

TypedEventTarget.removeEventListener

sign()

sign(data: Uint8Array): Promise<Signature>;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:130

Sign raw bytes

Parameters

ParameterTypeDescription
dataUint8Arrayraw bytes to sign

Returns

Promise<Signature>

Properties

account

readonly account:
| undefined
| IAccount;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:99

Currently active account, if connected


changeNetwork()

changeNetwork: (network: Network) => Promise<AccountNetwork>;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:124

Change the network and derive a new account

Parameters

ParameterTypeDescription
networkNetworkThe network to change to

Returns

Promise<AccountNetwork>


checkSupport()

checkSupport: () => Promise<void>;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:103

Check if this wallet adapter is supported in the current environment

Returns

Promise<void>


connect()

connect: (params: {
network: Network;
}) => Promise<AccountNetwork>;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:108

Connect to the wallet

Parameters

ParameterTypeDescription
params{ network: Network; }Connect params
params.network?Network-

Returns

Promise<AccountNetwork>


connected

readonly connected: boolean;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:95

Whether the wallet is currently connected


connecting

readonly connecting: boolean;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:91

Whether the wallet is in the process of connecting


deriveAccount()

deriveAccount: (index: number) => Promise<IAccount>;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:119

Derive a new account at the given index

Parameters

ParameterTypeDescription
indexnumberThe derivation path index

Returns

Promise<IAccount>


disconnect()

disconnect: () => Promise<void>;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:114

Disconnect from the wallet

Returns

Promise<void>


id

readonly id: string;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:71

Wallet adapter identifier (e.g. ‘filsnap’, ‘ledger’, ‘hd’, ‘raw’)


name

name: string;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:75

Human readable wallet name


network

readonly network: Network;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:83

Current network (mainnet or testnet)


signMessage()

signMessage: (message: {
from: string;
gasFeeCap: string;
gasLimit: number;
gasPremium: string;
method: number;
nonce: number;
params: string;
to: string;
value: string;
version: 0;
}) => Promise<Signature>;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:136

Sign filecoin message

Parameters

ParameterTypeDescription
message{ from: string; gasFeeCap: string; gasLimit: number; gasPremium: string; method: number; nonce: number; params: string; to: string; value: string; version: 0; }Filecoin message to sign
message.fromstring-
message.gasFeeCapstring-
message.gasLimitnumber-
message.gasPremiumstring-
message.methodnumber-
message.noncenumber-
message.paramsstring-
message.tostring-
message.valuestring-
message.version0-

Returns

Promise<Signature>


support

readonly support: "NotChecked" | "Detected" | "NotDetected" | "NotSupported";

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:87

Wallet support status (NotChecked, Detected, NotDetected, NotSupported)


uid

readonly uid: string;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:67

Unique identifier for this wallet instance


url

url: string;

Defined in: packages/iso-filecoin-wallets/dist/src/types.d.ts:79

Wallet homepage URL