thirdweb@5.30.0
Minor Changes
-
#3451
2244631
Thanks @gregfromstl! - AddsgetTransactionStore
to retrieve a transaction store for a given address -
#3381
6429acc
Thanks @gregfromstl! - Adds support for Dawn wallet -
#3270
b24e9b2
Thanks @gregfromstl! - Adds ecosystemWallet to TS SDKUsage
import { ecosystemWallet } from "thirdweb/wallets"; const wallet = ecosystemWallet("ecosystem.hooli", { partnerId: "pied-piper", });
-
#3428
fab5cd4
Thanks @jnsdls! - Adds watchAsset support in injected wallet accounts -
#3428
fab5cd4
Thanks @jnsdls! - - AddpurchaseData
parameter ingetBuyWithFiatQuote
andgetBuyWithCryptoQuote
functions and UI components to store Extra details for the purchase which can be retrieved later via the status API or Webhook- Add a required
fromAddress
parameter ingetBuyWithFiatQuote
- Add a required
-
#3429
a3a4008
Thanks @gregfromstl! - Adds WalletConnect disconnect screen -
#3428
fab5cd4
Thanks @jnsdls! - AddedonDisconnect
option inuseWalletDetailsModal
'sopen
method to add a callback when the user disconnects the wallet by clicking the disconnect button in the wallet details modal.import { useWalletDetailsModal } from "thirdweb/react"; function Example() { const detailsModal = useWalletDetailsModal(); return ( <button onClick={() => { detailsModal.open({ client, onDisconnect: ({ wallet, account }) => { console.log("disconnected", wallet, account); }, }); }} > Show wallet details </button> ); }
onDisconnect
prop ofConnectButton
now gets called with the disconnectedwallet
andaccount
as arguments<ConnectButton onDisconnect={({ wallet, account }) => { console.log("disconnected", wallet, account); }} />
-
#3270
b24e9b2
Thanks @gregfromstl! - Adds ecosystem wallet UI
Patch Changes
-
#3444
fe77516
Thanks @gregfromstl! - Adds wallet connect functions to react native -
#3428
fab5cd4
Thanks @jnsdls! - Fix mobile Wallet Connect connection flow -
#3428
fab5cd4
Thanks @jnsdls! - Add updateMetadata extension for Edition Drop (DropERC1155) -
#3428
fab5cd4
Thanks @jnsdls! - Fix hex-based signatures for in-app wallets -
#3428
fab5cd4
Thanks @jnsdls! - - Fix ConnectButton not able to connect Unknown injected wallet provider + Fix Wallet Icon + Fix AutoConnect -
#3449
eaa5093
Thanks @jnsdls! - [internals] refactor context usage in connect wallet UI -
#3428
fab5cd4
Thanks @jnsdls! - Fix uploadMobile function not respecting bundleId -
#3421
02a70b9
Thanks @MananTank! - Pay UI improvements - Break down the complex screen into multiple screens each prompting the user for a single actionFix PayEmbed Modal title alignment
-
#3513
c330d0d
Thanks @gregfromstl! - resolveName returns null if no ENS exists for an address -
#3443
ea46c70
Thanks @kumaryash90! - Fix EIP155 check for create2 factory deployment -
#3428
fab5cd4
Thanks @jnsdls! - Fix React warning when clicking copy address button and layout shift -
#3521
16ea2bc
Thanks @MananTank! - Fix wallet app not opening when using ConnectButton inside an iframe -
#3465
70b31dd
Thanks @iamcryptofennec! - Fix error when Switching to an unknown network in wallet when connected using WaletConnectFix Network Selector not closed sometimes when Network switch is successful when connected using WalletConnect
-
#3481
8807042
Thanks @kien-ngo! - Export getClaimConditionById for Drop1155 -
#3428
fab5cd4
Thanks @jnsdls! - Fixed return type for useConnectModal.connect