Get Linked Wallets
Query the list of all wallets the user linked to their Embedded Wallet.- Blueprint
- C++
Remove Linked Wallet
Removes the specified wallet.- Blueprint
- C++
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Documentation for Unreal SDK API to manage sessions for the Sequence infrastructure stack for web3 gaming.
const TFunction<void (FSeqLinkedWalletsResponse)> OnApiSuccess = [OnSuccess](const FSeqLinkedWalletsResponse& LinkedWallets) { };
const TFunction<void (FSequenceError)> OnApiFailure = [OnFailure](const FSequenceError& Err) { };
USequenceWallet* Wallet = NewObject<USequenceWallet>();
Wallet->GetLinkedWallets(OnApiSuccess, OnApiFailure);
const TFunction<void()> OnApiSuccess = [OnSuccess]() { };
const TFunction<void (FSequenceError)> OnApiFailure = [OnFailure](const FSequenceError& Err) { };
USequenceWallet* Wallet = NewObject<USequenceWallet>();
Wallet->RemoveLinkedWallet(LinkedWalletAddress, OnApiSuccess, OnApiFailure);
Was this page helpful?