From 80b6f7afb57192d53e97ce2e6194d88a9395bfb6 Mon Sep 17 00:00:00 2001 From: Jakub Kotula <520927+jkbktl@users.noreply.github.com> Date: Mon, 6 Nov 2023 17:54:26 +0100 Subject: [PATCH] Export serialize public key (#505) --- .changeset/strong-terms-shop.md | 5 +++++ packages/status-js/src/index.ts | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/strong-terms-shop.md diff --git a/.changeset/strong-terms-shop.md b/.changeset/strong-terms-shop.md new file mode 100644 index 00000000..4c704717 --- /dev/null +++ b/.changeset/strong-terms-shop.md @@ -0,0 +1,5 @@ +--- +"@status-im/js": patch +--- + +Export serialize public key diff --git a/packages/status-js/src/index.ts b/packages/status-js/src/index.ts index 48e289a0..2ce4695e 100644 --- a/packages/status-js/src/index.ts +++ b/packages/status-js/src/index.ts @@ -22,3 +22,4 @@ export { createRequestClient } from './request-client/request-client' export { deserializePublicKey } from './utils/deserialize-public-key' export { publicKeyToColorHash } from './utils/public-key-to-color-hash' export { publicKeyToEmojiHash } from './utils/public-key-to-emoji-hash' +export { serializePublicKey } from './utils/serialize-public-key'