Skip to main content

@turnkey/wallet-stamper

1.1.8

Patch Changes

1.1.7

Patch Changes

1.1.6

Patch Changes

1.1.5

Patch Changes

1.1.4

Patch Changes

1.1.3

Patch Changes

1.1.2

Patch Changes

1.1.1

Patch Changes

1.1.0

Minor Changes

1.1.0-beta.6

Patch Changes

1.1.0-beta.5

Minor Changes

  • SDK beta release @turnkey/react-wallet-kit @turnkey/core

Patch Changes

1.0.9-beta.4

Patch Changes

1.0.9-beta.3

Patch Changes

1.0.9-beta.2

Patch Changes

1.0.9-beta.1

Patch Changes

1.0.9-beta.0

Patch Changes

1.0.9

Patch Changes

1.0.8

Patch Changes

1.0.7

Patch Changes

1.0.6

Patch Changes

1.0.5

Patch Changes

1.0.4

Patch Changes

1.0.3

Patch Changes

1.0.2

Patch Changes

1.0.1

Patch Changes

1.0.0

Major Changes

  • Renamed recoverPublicKey to getPublicKey on the EthereumWallet interface to improve clarity and consistency across wallet interfaces
  • Changed getPublicKey method signature to take no parameters
    // Old method signature
    recoverPublicKey(message: string): Promise<string>;
    
    // New method signature
    getPublicKey(): Promise<string>;
    
  • Added an EthereumWallet implementation as a helper to simplify support for Ethereum wallets:
    import { EthereumWallet } from "@turnkey/wallet-stamper";
    
    const wallet = new EthereumWallet();
    
    // Instantiate the WalletStamper with the EthereumWallet
    const walletStamper = new WalletStamper(wallet);
    
    // Instantiate the TurnkeyClient with the WalletStamper
    const client = new TurnkeyClient({ baseUrl: BASE_URL }, walletStamper);
    

Patch Changes

0.0.5

Patch Changes

0.0.4

Patch Changes

0.0.3

Patch Changes

  • Updated dependencies [2d7e5a9]
  • Updated dependencies [f4b607f]
  • @turnkey/[email protected]

0.0.2

Patch Changes

  • 68a14dd: Initial release! 🎉