Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: separate secp256k1 library #663

Merged
merged 16 commits into from Dec 9, 2022
4 changes: 4 additions & 0 deletions docs/generated/changelog.html
Expand Up @@ -12,6 +12,10 @@ <h1>Agent-JS Changelog</h1>
<section>
<h2>Version x.x.x</h2>
<ul>
<li>
<em>Breaking change:</em> Moves Secp256k1KeyIdentity to its own package.
<pre>@dfinity/identity-secp256k1</pre>
</li>
<li>
<em>Breaking change:</em> Deprecates
<pre>@dfinity/authentication</pre>
Expand Down
2 changes: 1 addition & 1 deletion e2e/node/basic/identity.test.ts
Expand Up @@ -9,9 +9,9 @@ import {
DelegationChain,
DelegationIdentity,
Ed25519KeyIdentity,
Secp256k1KeyIdentity,
ECDSAKeyIdentity,
} from '@dfinity/identity';
import { Secp256k1KeyIdentity } from '@dfinity/identity-secp256k1';
import agent from '../utils/agent';
import identityCanister from '../canisters/identity';

Expand Down