Skip to content

Releases: thirdweb-dev/js

@thirdweb-dev/insight@1.0.0

18 Apr 01:05
c7cb6ae
Compare
Choose a tag to compare

Major Changes

  • #6706 185d2f3 Thanks @joaquim-verges! - Initial release of dedicated insight TS sdk

    This 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

14 Apr 07:48
52261a5
Compare
Choose a tag to compare

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

14 Apr 07:48
52261a5
Compare
Choose a tag to compare
@thirdweb-dev/wagmi-adapter@0.2.55

thirdweb@5.94.1

13 Apr 22:54
aa733b7
Compare
Choose a tag to compare

Patch Changes

@thirdweb-dev/wagmi-adapter@0.2.54

13 Apr 22:54
aa733b7
Compare
Choose a tag to compare
@thirdweb-dev/wagmi-adapter@0.2.54

thirdweb@5.94.0

11 Apr 17:23
c86cac4
Compare
Choose a tag to compare

Minor Changes

  • #6695 86070fa Thanks @joaquim-verges! - Add feePayer option for direct_payment mode of PayEmbed

    For 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

11 Apr 17:23
c86cac4
Compare
Choose a tag to compare
@thirdweb-dev/wagmi-adapter@0.2.53

@thirdweb-dev/service-utils@0.9.1

11 Apr 20:42
f618e2b
Compare
Choose a tag to compare

Patch Changes

@thirdweb-dev/service-utils@0.9.0

11 Apr 20:32
8eb5d8c
Compare
Choose a tag to compare

Minor Changes

thirdweb@5.93.17

10 Apr 21:21
c5bf5a8
Compare
Choose a tag to compare

Patch Changes