-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
import { MethodParamsAndResult, rpcRequestMessageSchema } from '../../types'; | ||
import * as v from 'valibot'; | ||
|
||
export const connectMethodName = 'wallet_connect'; | ||
export const connectParamsSchema = v.undefined(); | ||
export const connectResultSchema = v.literal(true); | ||
export const connectRequestMessageSchema = v.object({ | ||
export const grantPermissionsMethodName = 'wallet_grantPermissions'; | ||
export const grantPermissionsParamsSchema = v.undefined(); | ||
export const grantPermissionsResultSchema = v.literal(true); | ||
export const grantPermissionsRequestMessageSchema = v.object({ | ||
...rpcRequestMessageSchema.entries, | ||
...v.object({ | ||
method: v.literal(connectMethodName), | ||
params: connectParamsSchema, | ||
method: v.literal(grantPermissionsMethodName), | ||
params: grantPermissionsParamsSchema, | ||
id: v.string(), | ||
}).entries, | ||
}); | ||
export type Connect = MethodParamsAndResult< | ||
v.InferOutput<typeof connectParamsSchema>, | ||
v.InferOutput<typeof connectResultSchema> | ||
v.InferOutput<typeof grantPermissionsParamsSchema>, | ||
v.InferOutput<typeof grantPermissionsResultSchema> | ||
>; | ||
|
||
export const disconnectMethodName = 'wallet_disconnect'; | ||
export const disconnectParamsSchema = v.undefined(); | ||
export const disconnectResultSchema = v.literal(true); | ||
export const disconnectRequestMessageSchema = v.object({ | ||
export const revokePermissionsMethodName = 'wallet_revokePermissions'; | ||
export const revokePermissionsParamsSchema = v.undefined(); | ||
export const revokePermissionsResultSchema = v.literal(true); | ||
export const revokePermissionsRequestMessageSchema = v.object({ | ||
...rpcRequestMessageSchema.entries, | ||
...v.object({ | ||
method: v.literal(disconnectMethodName), | ||
params: disconnectParamsSchema, | ||
method: v.literal(revokePermissionsMethodName), | ||
params: revokePermissionsParamsSchema, | ||
id: v.string(), | ||
}).entries, | ||
}); | ||
export type Disconnect = MethodParamsAndResult< | ||
v.InferOutput<typeof disconnectParamsSchema>, | ||
v.InferOutput<typeof disconnectResultSchema> | ||
v.InferOutput<typeof revokePermissionsParamsSchema>, | ||
v.InferOutput<typeof revokePermissionsResultSchema> | ||
>; |