Skip to main content

INTMAX Ready

A method notifying that the wallet has been initialized and is ready to communicate with the dapp.

Request Parameters

None

Response Parameters

ParameterTypeDescription
IntmaxReadyResult

Request Example

const sdk = intmaxWalletClient();

sdk.on("intmax/intmax_ready", (c) => {
return c.success({
supportedNamespaces: ["eip155", "intmax"],
supportedChains: supportedChains,
});
});

Response Example

export type WebmaxReadyResult = {
supportedNamespaces: Namespace[];
supportedChains: ChainedNamespace[];
};