import { getItemById } from '../../js/modules/data'; import { KeyPair } from '../window/types/libsignal-protocol'; export async function getCurrentDevicePubKey(): Promise { const item = await getItemById('number_id'); if (!item || !item.value) { return undefined; } return item.value.split('.')[0]; } export async function getIdentityKeyPair(): Promise { const item = await getItemById('identityKey'); return item?.value; }