You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
CORE UPDATE:
Updated TonSdk.Core library from 0.3.1 to version 0.3.9,
NEW FEATURES:
Added option to load all NFT collections from a connected wallet via the UnitonConnectSDK.Instance.Assets.NFT.Load(int limit, int offset) method,
Added option to load a specific collection by collection address from a connected wallet via UnitonConnectSDK.Instance.Assets.NFT.LoadTargetCollection(string collectionAddress) method,
Added option to get the current Toncoin balance via the UpdateTonBalance() method,
Added option to get wallet address in 1 line using string call UnitonConnectSDK.Instance.GetWalletAddress(),
Added property with cached wallet balance value via UnitonConnectSDK.Instance.TonBalance,
Added additional argument WalletConfig restoredWallet when OnWalletConnectionRestore event is triggered,
Added additional tools for working with wallet address: translating wallet address into HEX/RAW, Bounceable and Non Bounceable formats.
BUG FIXES:
Fixed a bug causing the test interface adapter to be duplicated in the demo scene, which caused all links in the interface to be lost for interactions,
Fixed a bug in the demo scene where disconnecting the wallet connection and then connecting again would not load NFT collections,
Fixed a bug where nothing would happen after reconnecting to the wallet and then trying to send TON.
OTHER UPDATES:
Renamed the SendTransaction(WalletConfig currentWallet, string recipientAddress, double amount) method to SendTon() for future updates,
Renamed the OnTransactionSendingFinished event to OnSendingTonFinished for future updates.