Skip to content

Releases: TreasureProject/tdk-js

@treasure-dev/tdk-react@3.2.2

18 Oct 23:11
524c2ef
Compare
Choose a tag to compare

Patch Changes

  • 4f2c50f: Updated to handle attempts to log in with custom auth endpoint
  • Updated dependencies [b82e78b]
  • Updated dependencies [4f2c50f]
    • @treasure-dev/tdk-core@3.2.2

@treasure-dev/tdk-core@3.2.2

18 Oct 23:11
524c2ef
Compare
Choose a tag to compare

Patch Changes

  • b82e78b: Updated AWS KMS transaction signing fields
  • 4f2c50f: Added support for login with custom auth endpoint

@treasure-dev/tdk-react@3.2.1

16 Oct 14:39
79e7179
Compare
Choose a tag to compare

Patch Changes

  • 074405b: Moved cartridgeTag to analyticsOptions
  • Updated dependencies [074405b]
    • @treasure-dev/tdk-core@3.2.1

@treasure-dev/tdk-core@3.2.1

16 Oct 14:39
79e7179
Compare
Choose a tag to compare

Patch Changes

  • 074405b: Moved cartridgeTag to analyticsOptions

@treasure-dev/tdk-react@3.2.0

14 Oct 18:35
c5ce956
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [b58ec0b]
    • @treasure-dev/tdk-core@3.2.0

@treasure-dev/tdk-core@3.2.0

14 Oct 18:35
c5ce956
Compare
Choose a tag to compare

Minor Changes

  • b58ec0b: Migrated account signature generation to use AWS KMS

@treasure-dev/tdk-react@3.1.0

11 Oct 20:50
5aaa78b
Compare
Choose a tag to compare

Minor Changes

  • 399d230: Added support for analytics

Patch Changes

  • Updated dependencies [399d230]
    • @treasure-dev/tdk-core@3.1.0

@treasure-dev/tdk-core@3.1.0

11 Oct 20:50
5aaa78b
Compare
Choose a tag to compare

Minor Changes

  • 399d230: Added support for analytics

@treasure-dev/tdk-react@3.0.0

10 Oct 22:33
6eb6c21
Compare
Choose a tag to compare

Major Changes

  • d468a1b: Migrated from in-app wallets to ecosystem wallets. Include your ecosystem ID in the TreasureProvider:
function App() {
  return (
    <ThirdwebProvider>
      <TreasureProvider
        appName="Treasure"
        apiUri="https://tdk-api.spellcaster.lol"
        chainId={421614}
        clientId="..."
        ecosystemPartnerId="..."
      >
        {/** ... */}
      </TreasureProvider>
    </ThirdwebProvider>
  );
}

See documentation for more details.

@treasure-dev/tdk-core@3.0.0

10 Oct 22:33
6eb6c21
Compare
Choose a tag to compare

Major Changes

  • d468a1b: Migrated from in-app wallets to ecosystem wallets. Include your ecosystem ID in login requests:
await logIn({
  client,
  ecosystemPartnerId: "...",
  method: "email",
  email: "example@treasure.lol",
  verificationCode: "123456",
});

See documentation for more details.