@mentaproject/core 0.5.10 → 0.5.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/clients/createMentaAccount.d.ts +2 -2
- package/dist/clients/index.js +0 -1
- package/dist/clients/index.js.map +1 -1
- package/dist/clients/index.mjs +0 -1
- package/dist/clients/index.mjs.map +1 -1
- package/dist/types/MentaAccount.d.ts +2 -3
- package/package.json +1 -1
- package/src/clients/createMentaAccount.ts +0 -1
- package/src/types/MentaAccount.ts +1 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LocalAccount } from "..";
|
|
2
|
-
import { Transport,
|
|
3
|
-
import { createMentaAccount } from "
|
|
2
|
+
import { Transport, Hash } from ".";
|
|
3
|
+
import { createMentaAccount } from "../clients";
|
|
4
4
|
export interface PasskeySigner extends LocalAccount {
|
|
5
5
|
pubX: bigint;
|
|
6
6
|
pubY: bigint;
|
|
@@ -10,7 +10,6 @@ export interface PasskeySigner extends LocalAccount {
|
|
|
10
10
|
}
|
|
11
11
|
export interface MentaAccountParams {
|
|
12
12
|
signer: PasskeySigner;
|
|
13
|
-
chain: Chain;
|
|
14
13
|
bundlerTransport: Transport;
|
|
15
14
|
}
|
|
16
15
|
export type MentaAccountClient = Awaited<ReturnType<typeof createMentaAccount>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LocalAccount } from "..";
|
|
2
2
|
import { Transport, Chain, Hash } from ".";
|
|
3
|
-
import { createMentaAccount } from "
|
|
3
|
+
import { createMentaAccount } from "../clients";
|
|
4
4
|
|
|
5
5
|
export interface PasskeySigner extends LocalAccount {
|
|
6
6
|
pubX: bigint;
|
|
@@ -12,7 +12,6 @@ export interface PasskeySigner extends LocalAccount {
|
|
|
12
12
|
|
|
13
13
|
export interface MentaAccountParams {
|
|
14
14
|
signer: PasskeySigner;
|
|
15
|
-
chain: Chain;
|
|
16
15
|
bundlerTransport: Transport;
|
|
17
16
|
}
|
|
18
17
|
|