INTMAX Ready
A method notifying that the wallet has been initialized and is ready to communicate with the dapp.
Request Parameters
None
Response Parameters
Parameter | Type | Description |
---|---|---|
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[];
};