v1.3.3

Release Date

June 10th 2025 07:20 in UTC

Note

Bugs that may occur in Mini Dapp SDK v1.3.0 and above have been fixed.

npm: https://www.npmjs.com/package/@linenext/dapp-portal-sdk/v/1.3.3

cdn: https://static.kaiawallet.io/js/dapp-portal-sdk-1.3.3.js

[No issue] When there is sufficient interval between initializing SDK and calling methods

// index.tsx
globalSdk = await DappPortalSDK.init()

// login.tsx
const provider = global.getWalletProvider();
const accounts = provider.request({method: 'kaia_requestAccounts'})

[Issue] Methods are not executed properly. (It occurs when called immediately after initializing SDK)

const sdk = await DappPortalSdk.init();
const provider = sdk.getWalletProvider();
const accounts = provider.request({method: 'kaia_requestAccounts'})

If you are experiencing the above issue, please update Mini Dapp SDK version to v1.3.3.

We always recommend using the latest version of the Mini Dapp SDK to ensure security and compatibility.

Last updated