@pooflabs/core 0.0.3 → 0.0.4
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/index.d.ts +1 -1
- package/dist/index.js +257 -134
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +257 -135
- package/dist/index.mjs.map +1 -1
- package/dist/utils/auth-api.d.ts +1 -0
- package/dist/utils/sol/poof4b5pk1L9tmThvBmaABjcyjfhFGbMbQP5BXk2QZpDevnet-program.d.ts +497 -64
- package/dist/utils/sol/poof4b5pk1L9tmThvBmaABjcyjfhFGbMbQP5BXk2QZpMainnet-program.d.ts +497 -64
- package/dist/utils/sol/sol-utils.d.ts +1 -1
- package/package.json +2 -1
package/dist/utils/auth-api.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare function genNonce(): Promise<any>;
|
|
2
|
+
export declare function genAuthNonce(): Promise<any>;
|
|
2
3
|
export declare function createSessionWithSignature(address: string, message: string, signature: string): Promise<any>;
|
|
3
4
|
export declare function createSessionWithPrivy(authToken: string, address: string, privyIdToken: string): Promise<any>;
|
|
4
5
|
export declare function refreshSession(refreshToken: string): Promise<any>;
|