@revibase/core 0.0.24 → 0.0.25
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3488,7 +3488,7 @@ declare function getClientAndDeviceHash(clientOrigin: string, devicePublicKey: s
|
|
|
3488
3488
|
declare function createClientAuthorizationStartRequestChallenge(payload: ClientAuthorizationStartRequest): Uint8Array<ArrayBufferLike>;
|
|
3489
3489
|
declare function createClientAuthorizationCompleteRequestChallenge(payload: ClientAuthorizationCompleteRequest): Uint8Array<ArrayBufferLike>;
|
|
3490
3490
|
declare function createMessageChallenge(payload: string, clientOrigin: string, devicePublicKey: string, nonce: string): Uint8Array<ArrayBufferLike>;
|
|
3491
|
-
declare function createTransactionChallenge(payload: TransactionPayloadWithBase64MessageBytes | TransactionPayload, clientOrigin: string, devicePublicKey: string, nonce: string): Promise<{
|
|
3491
|
+
declare function createTransactionChallenge(payload: TransactionPayloadWithBase64MessageBytes | TransactionPayload, clientOrigin: string, devicePublicKey: string, nonce: string, slotHash?: string, slotNumber?: string): Promise<{
|
|
3492
3492
|
slotNumber: string;
|
|
3493
3493
|
slotHash: string;
|
|
3494
3494
|
challenge: Uint8Array<ArrayBufferLike>;
|
package/dist/index.d.ts
CHANGED
|
@@ -3488,7 +3488,7 @@ declare function getClientAndDeviceHash(clientOrigin: string, devicePublicKey: s
|
|
|
3488
3488
|
declare function createClientAuthorizationStartRequestChallenge(payload: ClientAuthorizationStartRequest): Uint8Array<ArrayBufferLike>;
|
|
3489
3489
|
declare function createClientAuthorizationCompleteRequestChallenge(payload: ClientAuthorizationCompleteRequest): Uint8Array<ArrayBufferLike>;
|
|
3490
3490
|
declare function createMessageChallenge(payload: string, clientOrigin: string, devicePublicKey: string, nonce: string): Uint8Array<ArrayBufferLike>;
|
|
3491
|
-
declare function createTransactionChallenge(payload: TransactionPayloadWithBase64MessageBytes | TransactionPayload, clientOrigin: string, devicePublicKey: string, nonce: string): Promise<{
|
|
3491
|
+
declare function createTransactionChallenge(payload: TransactionPayloadWithBase64MessageBytes | TransactionPayload, clientOrigin: string, devicePublicKey: string, nonce: string, slotHash?: string, slotNumber?: string): Promise<{
|
|
3492
3492
|
slotNumber: string;
|
|
3493
3493
|
slotHash: string;
|
|
3494
3494
|
challenge: Uint8Array<ArrayBufferLike>;
|