+1
-6
packages/clients/client/CHANGELOG.md
+1
-6
packages/clients/client/CHANGELOG.md
···
150
150
get them.
151
151
152
152
```ts
153
-
import type {
154
-
InferInput,
155
-
InferOutput,
156
-
InferXRPCBodyInput,
157
-
InferXRPCBodyOutput,
158
-
} from '@atcute/lexicons';
153
+
import type { InferInput, InferOutput, InferXRPCBodyInput, InferXRPCBodyOutput } from '@atcute/lexicons';
159
154
160
155
import type { AppBskyActorSearchActors } from '@atcute/bluesky';
161
156
+1
-6
packages/definitions/bluesky/CHANGELOG.md
+1
-6
packages/definitions/bluesky/CHANGELOG.md
···
307
307
get them.
308
308
309
309
```ts
310
-
import type {
311
-
InferInput,
312
-
InferOutput,
313
-
InferXRPCBodyInput,
314
-
InferXRPCBodyOutput,
315
-
} from '@atcute/lexicons';
310
+
import type { InferInput, InferOutput, InferXRPCBodyInput, InferXRPCBodyOutput } from '@atcute/lexicons';
316
311
317
312
import type { AppBskyActorSearchActors } from '@atcute/bluesky';
318
313
+4
-1
packages/utilities/crypto/lib/keypairs/secp256k1-web.ts
+4
-1
packages/utilities/crypto/lib/keypairs/secp256k1-web.ts
···
143
143
privateKeyBytes: Uint8Array,
144
144
publicKeyBytes?: Uint8Array,
145
145
): Promise<Secp256k1PrivateKeyExportable> {
146
-
const keypair = new Secp256k1PrivateKeyExportable(privateKeyBytes, publicKeyBytes ?? getPublicKey(privateKeyBytes));
146
+
const keypair = new Secp256k1PrivateKeyExportable(
147
+
privateKeyBytes,
148
+
publicKeyBytes ?? getPublicKey(privateKeyBytes),
149
+
);
147
150
148
151
if (publicKeyBytes) {
149
152
await checkKeypairRelationship(keypair);