Releases: thirdweb-dev/js
Releases · thirdweb-dev/js
@thirdweb-dev/service-utils@0.8.3
Patch Changes
-
#6121
6ed2fd1
Thanks @arcoraven! - [service-utils] import LZ4 codec -
#6120
a22457a
Thanks @arcoraven! - [service-utils] Expose kafkajs config
thirdweb@5.87.2
Patch Changes
- #6104
bf43196
Thanks @MananTank! - Fix thirdweb Pay Modal logging react-query error when opened
@thirdweb-dev/wagmi-adapter@0.2.10
@thirdweb-dev/wagmi-adapter@0.2.10
@thirdweb-dev/service-utils@0.8.2
Patch Changes
- #6113
6818cba
Thanks @arcoraven! - Change UsageV2 to per-product topics
thirdweb@5.87.1
thirdweb@5.87.0
Minor Changes
-
#6082
4550bb2
Thanks @joaquim-verges! - Support Account and Wallet headless components in react nativeYou can now use the Account and Wallet headless components in react native, this lets you build your own UI, styling it however you want, but letting the components handle the logic.
Example Account components usage:
<AccountProvider address={account.address} client={client}> /* avatar */ <AccountAvatar loadingComponent={ <AccountBlobbie size={92} style={{ borderRadius: 100 }} /> } fallbackComponent={ <AccountBlobbie size={92} style={{ borderRadius: 100 }} /> } style={{ width: 92, height: 92, borderRadius: 100, }} /> /* address */ <AccountAddress style={{ fontSize: 16, color: Colors.secondary }} formatFn={shortenAddress} /> /* balance */ <AccountBalance showBalanceInFiat={"USD"} chain={chain} loadingComponent={ <ActivityIndicator size="large" color={Colors.accent} /> } fallbackComponent={ <Text className="text-primary">Failed to load balance</Text> } style={{ color: "white", fontSize: 48, fontWeight: "bold", }} /> </AccountProvider>
Example Wallet components usage:
<WalletProvider id={"io.metamask"}> <WalletIcon width={32} height={32} /> <WalletName style={{ fontSize: 16, color: Colors.primary }} /> </WalletProvider>
Patch Changes
@thirdweb-dev/wagmi-adapter@0.2.9
@thirdweb-dev/wagmi-adapter@0.2.9
@thirdweb-dev/wagmi-adapter@0.2.8
Patch Changes
- #6100
411895c
Thanks @gregfromstl! - Fix wagmi adapter usage with account factories