P00LS Games SDK Help

Airdrop

SDK provides what's necessary to handle airdrops, beginning with user's wallet management.

Get user wallet

Retrieve the current user's address. If undefined, the user should be invited to set one up.

// address can be null sdk.GetUserWalletAddress( maybeAddress => Debug.Log($"User address: {maybeAddress}" );
// address can be undefined const {address} = await sdk.wallet.fetchWallet(); console.log(`User address: ${address}`);

Change user address

Whether the user has an address, you can ask the SDK to initiate an update. SDK will open p00ls launcher, where the user will be able to set / change his address, and then will get redirected back into your application.

sdk.InitiateWalletChange();
sdk.wallet.changeWallet();
Last modified: 28 November 2024