Releases: thirdweb-dev/js
Releases · thirdweb-dev/js
@thirdweb-dev/insight@1.0.0
Major Changes
-
#6706
185d2f3
Thanks @joaquim-verges! - Initial release of dedicated insight TS sdkThis package is a thin openAPI wrapper for insight, our in-house indexer.
Configuration
import { configure } from "@thirdweb-dev/insight"; // call this once at the startup of your application configure({ clientId: "<YOUR_CLIENT_ID>", });
Example Usage
import { getV1Events } from "@thirdweb-dev/insight"; const events = await getV1Events({ query: { chain: [1, 137], filter_address: "0x1234567890123456789012345678901234567890", }, });
thirdweb@5.94.2
Patch Changes
-
#6716
0ea8987
Thanks @gregfromstl! - Miscellaneous PayEmbed error improvements:- Adds title and message to PayEmbed errors
- Prevents propagating raw errors to the user when in purchase or transaction mode
- Fixes bubble alignment on pulsing animation
-
#6712
e574114
Thanks @joaquim-verges! - Dont retry on user connection rejection in eip1193 connector
@thirdweb-dev/wagmi-adapter@0.2.55
@thirdweb-dev/wagmi-adapter@0.2.55
thirdweb@5.94.1
Patch Changes
- #6707
fa0d114
Thanks @joaquim-verges! - Add retry logic to predictAccountAddress
@thirdweb-dev/wagmi-adapter@0.2.54
@thirdweb-dev/wagmi-adapter@0.2.54
thirdweb@5.94.0
Minor Changes
-
#6695
86070fa
Thanks @joaquim-verges! - Add feePayer option for direct_payment mode of PayEmbedFor direct payments via the PayEmbed, you can now specify the payer of the protocol fee for direct transfers. Can be "sender" or "receiver", defaults to "sender".
<PayEmbed client={THIRDWEB_CLIENT} payOptions={{ mode: "direct_payment", paymentInfo: { amount: "2", chain: base, token: getDefaultToken(base, "USDC"), sellerAddress: "0x...", feePayer: "receiver", // <-- transfer fee paid by the receiver }, metadata: { name: "Black Hoodie (Size L)", image: "/drip-hoodie.png", }, }} />
@thirdweb-dev/wagmi-adapter@0.2.53
@thirdweb-dev/wagmi-adapter@0.2.53
@thirdweb-dev/service-utils@0.9.1
@thirdweb-dev/service-utils@0.9.0
thirdweb@5.93.17
Patch Changes
- #6693
c1d6bb7
Thanks @joaquim-verges! - Extra gas buffer for quote and transfer transactions