Skip to main content

@turnkey/wallet-stamper

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! 🎉