Skip to content

Commit

Permalink
fix: add schnorrZ to keychain Api (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
feri42 authored Dec 10, 2024
1 parent 1ad7980 commit 8ca421f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
7 changes: 3 additions & 4 deletions features/keychain/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [7.4.2](https://github.com/ExodusMovement/exodus-oss/compare/@exodus/[email protected].1...@exodus/[email protected].2) (2024-11-15)
## [7.4.3](https://github.com/ExodusMovement/exodus-oss/compare/@exodus/[email protected].2...@exodus/[email protected].3) (2024-12-10)

## [7.4.2](https://github.com/ExodusMovement/exodus-oss/compare/@exodus/[email protected]...@exodus/[email protected]) (2024-11-15)

### Features

* expose sodium encrypt/decrypt box in keychain api ([#175](https://github.com/ExodusMovement/exodus-oss/issues/175)) ([2d18ba2](https://github.com/ExodusMovement/exodus-oss/commit/2d18ba2a87261b8d54dc5ebddec77f08c7fd26b7))


- expose sodium encrypt/decrypt box in keychain api ([#175](https://github.com/ExodusMovement/exodus-oss/issues/175)) ([2d18ba2](https://github.com/ExodusMovement/exodus-oss/commit/2d18ba2a87261b8d54dc5ebddec77f08c7fd26b7))

## [7.4.0](https://github.com/ExodusMovement/exodus-oss/compare/@exodus/[email protected]...@exodus/[email protected]) (2024-10-17)

Expand Down
1 change: 1 addition & 0 deletions features/keychain/api/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export interface KeychainApi {
signBuffer(params: { data: Buffer } & KeySource): Promise<Buffer>
signBuffer(params: { data: Buffer; enc: 'der' } & KeySource): Promise<Buffer>
signSchnorr(params: { data: Buffer; tweak?: Buffer } & KeySource): Promise<Buffer>
signSchnorrZ(params: { data: Buffer } & KeySource): Promise<Buffer>
}
}

Expand Down
1 change: 1 addition & 0 deletions features/keychain/api/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const createKeychainApi = ({ keychain }) => {
secp256k1: {
signBuffer: keychain.secp256k1.signBuffer,
signSchnorr: keychain.secp256k1.signSchnorr,
signSchnorrZ: keychain.secp256k1.signSchnorrZ,
},
},
}
Expand Down

0 comments on commit 8ca421f

Please sign in to comment.