rise-wallet 0.3.0 → 0.3.2
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/cli/bin/commands-f0vN9Upd.js +50 -0
- package/dist/cli/bin/index.js +1 -1
- package/dist/core/Chains.d.ts +14 -283
- package/dist/core/Chains.d.ts.map +1 -1
- package/dist/core/Dialog.d.ts.map +1 -1
- package/dist/core/Dialog.js +8 -0
- package/dist/core/Dialog.js.map +1 -1
- package/dist/core/Porto.d.ts +201 -293
- package/dist/core/Porto.d.ts.map +1 -1
- package/dist/core/internal/_generated/chains.d.ts +1 -1
- package/dist/core/internal/_generated/chains.d.ts.map +1 -1
- package/dist/core/internal/_generated/chains.js +1 -1
- package/dist/core/internal/_generated/chains.js.map +1 -1
- package/dist/core/internal/mode.d.ts +4 -0
- package/dist/core/internal/mode.d.ts.map +1 -1
- package/dist/core/internal/mode.js.map +1 -1
- package/dist/core/internal/modes/dialog.d.ts +47 -7
- package/dist/core/internal/modes/dialog.d.ts.map +1 -1
- package/dist/core/internal/modes/reactNative.d.ts +187 -10
- package/dist/core/internal/modes/reactNative.d.ts.map +1 -1
- package/dist/core/internal/modes/relay.d.ts +140 -3
- package/dist/core/internal/modes/relay.d.ts.map +1 -1
- package/dist/core/internal/modes/relay.js +102 -26
- package/dist/core/internal/modes/relay.js.map +1 -1
- package/dist/core/internal/permissions.d.ts +1 -1
- package/dist/core/internal/permissionsRequest.d.ts +1 -1
- package/dist/core/internal/provider.d.ts.map +1 -1
- package/dist/core/internal/provider.js +12 -1
- package/dist/core/internal/provider.js.map +1 -1
- package/dist/core/internal/relay/rpcSchema.d.ts +3 -0
- package/dist/core/internal/relay/rpcSchema.d.ts.map +1 -1
- package/dist/core/internal/relay/schema/rpc.d.ts +23 -0
- package/dist/core/internal/relay/schema/rpc.d.ts.map +1 -1
- package/dist/core/internal/relay/schema/rpc.js +18 -0
- package/dist/core/internal/relay/schema/rpc.js.map +1 -1
- package/dist/core/internal/schema/capabilities.d.ts +2 -2
- package/dist/core/internal/schema/key.d.ts +2 -2
- package/dist/core/internal/schema/key.d.ts.map +1 -1
- package/dist/core/internal/schema/key.js +1 -0
- package/dist/core/internal/schema/key.js.map +1 -1
- package/dist/core/internal/schema/permissions.d.ts +2 -2
- package/dist/core/internal/schema/request.d.ts +18 -16
- package/dist/core/internal/schema/request.d.ts.map +1 -1
- package/dist/core/internal/schema/rpc.d.ts +52 -46
- package/dist/core/internal/schema/rpc.d.ts.map +1 -1
- package/dist/core/internal/schema/rpc.js +1 -0
- package/dist/core/internal/schema/rpc.js.map +1 -1
- package/dist/core/react-native/Porto.d.ts +201 -293
- package/dist/core/react-native/Porto.d.ts.map +1 -1
- package/dist/remote/Events.d.ts.map +1 -1
- package/dist/remote/Events.js +10 -3
- package/dist/remote/Events.js.map +1 -1
- package/dist/remote/Hooks.d.ts +42 -38
- package/dist/remote/Hooks.d.ts.map +1 -1
- package/dist/remote/Porto.d.ts +154 -286
- package/dist/remote/Porto.d.ts.map +1 -1
- package/dist/trusted-hosts.d.ts.map +1 -1
- package/dist/trusted-hosts.js +5 -0
- package/dist/trusted-hosts.js.map +1 -1
- package/dist/tsconfig.tmp.tsbuildinfo +1 -1
- package/dist/viem/Account.d.ts +3 -0
- package/dist/viem/Account.d.ts.map +1 -1
- package/dist/viem/Account.js +16 -12
- package/dist/viem/Account.js.map +1 -1
- package/dist/viem/Key.d.ts +96 -1
- package/dist/viem/Key.d.ts.map +1 -1
- package/dist/viem/Key.js +102 -3
- package/dist/viem/Key.js.map +1 -1
- package/dist/viem/RelayActions.d.ts +12 -1
- package/dist/viem/RelayActions.d.ts.map +1 -1
- package/dist/viem/RelayActions.js +8 -3
- package/dist/viem/RelayActions.js.map +1 -1
- package/dist/viem/internal/provider.d.ts +9 -0
- package/dist/viem/internal/provider.d.ts.map +1 -0
- package/dist/viem/internal/provider.js +15 -0
- package/dist/viem/internal/provider.js.map +1 -0
- package/dist/viem/internal/relayActions.d.ts +16 -0
- package/dist/viem/internal/relayActions.d.ts.map +1 -1
- package/dist/viem/internal/relayActions.js +29 -0
- package/dist/viem/internal/relayActions.js.map +1 -1
- package/package.json +3 -2
- package/src/core/Dialog.ts +10 -0
- package/src/core/internal/_generated/chains.ts +1 -1
- package/src/core/internal/mode.ts +5 -1
- package/src/core/internal/modes/relay.ts +158 -56
- package/src/core/internal/provider.ts +14 -0
- package/src/core/internal/relay/rpcSchema.ts +4 -0
- package/src/core/internal/relay/schema/rpc.ts +23 -0
- package/src/core/internal/schema/key.ts +1 -0
- package/src/core/internal/schema/rpc.ts +1 -0
- package/src/remote/Events.ts +10 -3
- package/src/trusted-hosts.ts +5 -0
- package/src/viem/Account.ts +30 -12
- package/src/viem/Key.ts +163 -4
- package/src/viem/RelayActions.ts +30 -8
- package/src/viem/internal/provider.ts +19 -0
- package/src/viem/internal/relayActions.ts +42 -0
- package/dist/cli/bin/commands-GxQUW4ck.js +0 -50
|
@@ -72,8 +72,8 @@ export declare const Request: z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
|
72
72
|
}, z.core.$strip>>;
|
|
73
73
|
chainId: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumber<number>>>;
|
|
74
74
|
key: z.ZodMiniObject<{
|
|
75
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
75
76
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
76
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
77
77
|
}, z.core.$strip>;
|
|
78
78
|
}, z.core.$strip>], null>>;
|
|
79
79
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
@@ -87,8 +87,8 @@ export declare const Request: z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
|
87
87
|
symbol: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"native">, z.ZodMiniString<string>]>>;
|
|
88
88
|
}, z.core.$strip>>;
|
|
89
89
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
90
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
90
91
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
91
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
92
92
|
}, z.core.$strip>>;
|
|
93
93
|
permissions: z.ZodMiniObject<{
|
|
94
94
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -141,8 +141,8 @@ export declare const Request: z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
|
141
141
|
}, z.core.$strip>]>>;
|
|
142
142
|
email: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
143
143
|
grantAdmins: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
144
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
144
145
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
145
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
146
146
|
}, z.core.$strip>>>>;
|
|
147
147
|
grantPermissions: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
148
148
|
address: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -153,8 +153,8 @@ export declare const Request: z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
|
153
153
|
symbol: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"native">, z.ZodMiniString<string>]>>;
|
|
154
154
|
}, z.core.$strip>>;
|
|
155
155
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
156
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
156
157
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
157
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
158
158
|
}, z.core.$strip>>;
|
|
159
159
|
permissions: z.ZodMiniObject<{
|
|
160
160
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -199,6 +199,7 @@ export declare const Request: z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
|
199
199
|
context: z.ZodMiniUnknown;
|
|
200
200
|
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
201
201
|
}, z.core.$strip>>>>;
|
|
202
|
+
providerRdns: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
202
203
|
selectAccount: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniObject<{
|
|
203
204
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
204
205
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
@@ -350,8 +351,8 @@ export declare const Request: z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
|
350
351
|
}, z.core.$strip>]>>;
|
|
351
352
|
email: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
352
353
|
grantAdmins: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
354
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
353
355
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
354
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
355
356
|
}, z.core.$strip>>>>;
|
|
356
357
|
grantPermissions: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
357
358
|
address: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -362,8 +363,8 @@ export declare const Request: z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
|
362
363
|
symbol: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"native">, z.ZodMiniString<string>]>>;
|
|
363
364
|
}, z.core.$strip>>;
|
|
364
365
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
366
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
365
367
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
366
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
367
368
|
}, z.core.$strip>>;
|
|
368
369
|
permissions: z.ZodMiniObject<{
|
|
369
370
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -408,6 +409,7 @@ export declare const Request: z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
|
408
409
|
context: z.ZodMiniUnknown;
|
|
409
410
|
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
410
411
|
}, z.core.$strip>>>>;
|
|
412
|
+
providerRdns: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
411
413
|
selectAccount: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniObject<{
|
|
412
414
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
413
415
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
@@ -588,23 +590,17 @@ export declare const Request: z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
|
588
590
|
chainId: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumber<number>>>;
|
|
589
591
|
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
590
592
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
591
|
-
|
|
592
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
593
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
593
594
|
prehash: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
595
|
+
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
594
596
|
}, z.core.$strip>>;
|
|
595
597
|
version: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
596
598
|
}, z.core.$strip>], null>>;
|
|
597
599
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
598
600
|
method: z.ZodMiniLiteral<"wallet_sendCalls">;
|
|
599
601
|
params: z.ZodMiniReadonly<z.ZodMiniTuple<readonly [z.ZodMiniObject<{
|
|
600
|
-
calls: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
601
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
602
|
-
to: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
603
|
-
value: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
604
|
-
}, z.core.$strip>>>;
|
|
605
602
|
version: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
606
603
|
chainId: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumber<number>>>;
|
|
607
|
-
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
608
604
|
capabilities: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
609
605
|
feeToken: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
610
606
|
merchantUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -641,6 +637,12 @@ export declare const Request: z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
|
641
637
|
};
|
|
642
638
|
}>>>;
|
|
643
639
|
}, z.core.$strip>>;
|
|
640
|
+
calls: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
641
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
642
|
+
to: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
643
|
+
value: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
644
|
+
}, z.core.$strip>>>;
|
|
645
|
+
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
644
646
|
}, z.core.$strip>], null>>;
|
|
645
647
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
646
648
|
method: z.ZodMiniLiteral<"wallet_sendPreparedCalls">;
|
|
@@ -899,9 +901,9 @@ export declare const Request: z.ZodMiniDiscriminatedUnion<[z.ZodMiniObject<{
|
|
|
899
901
|
}, z.core.$strip>>;
|
|
900
902
|
}, z.core.$strip>;
|
|
901
903
|
key: z.ZodMiniObject<{
|
|
902
|
-
|
|
903
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
904
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
904
905
|
prehash: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
906
|
+
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
905
907
|
}, z.core.$strip>;
|
|
906
908
|
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
907
909
|
}, z.core.$strip>], null>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"request.d.ts","sourceRoot":"","sources":["../../../../src/core/internal/schema/request.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAC7B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAI/C,cAAc,UAAU,CAAA;AAExB,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"request.d.ts","sourceRoot":"","sources":["../../../../src/core/internal/schema/request.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAC7B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAI/C,cAAc,UAAU,CAAA;AAExB,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA8BlB,CAAA;AACF,MAAM,MAAM,OAAO,GAAG,WAAW,CAAC,OAAO,OAAO,CAAC,CAAA;AAEjD,wBAAgB,QAAQ,CAAC,MAAM,SAAS,CAAC,CAAC,WAAW,EACnD,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,OAAO,GACb,WAAW,CAAC,MAAM,CAAC,CAiBrB;AAED,gBAAgB;AAChB,MAAM,MAAM,WAAW,CACrB,MAAM,SAAS,CAAC,CAAC,WAAW,EAC5B,KAAK,GAAG,YAAY,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,IACnC,KAAK,SAAS,CAAC,MAAM,IAAI,SAAS;IAAE,MAAM,EAAE,MAAM,CAAA;CAAE,EAAE,GAAG,MAAM,IAAI,CAAC,GAEhE,CAAC,IAAI,GAAG;IACN,QAAQ,EAAE,OAAO,CACf,MAAM,CAAC,MAAM,CAAC,CAAC,QAAQ,CAAC,EACxB;QAAE,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAA;KAAE,CAC3B,CAAA;CACF,CAAC,GACF,WAAW,CAAC,MAAM,EAAE,IAAI,CAAC,GAC7B,KAAK,CAAA;AAET,gBAAgB;AAChB,eAAO,MAAM,iBAAiB,GAAI,MAAM,SAAS,CAAC,CAAC,WAAW,EAC5D,QAAQ,MAAM;;;;kBASb,CAAA"}
|
|
@@ -229,8 +229,8 @@ export declare namespace wallet_getAdmins {
|
|
|
229
229
|
credentialId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
230
230
|
privateKey: z.ZodMiniOptional<z.ZodMiniAny>;
|
|
231
231
|
id: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
232
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
232
233
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
233
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
234
234
|
}, z.core.$strip>;
|
|
235
235
|
const Response: z.ZodMiniObject<{
|
|
236
236
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -239,8 +239,8 @@ export declare namespace wallet_getAdmins {
|
|
|
239
239
|
credentialId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
240
240
|
privateKey: z.ZodMiniOptional<z.ZodMiniAny>;
|
|
241
241
|
id: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
242
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
242
243
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
243
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
244
244
|
}, z.core.$strip>>>;
|
|
245
245
|
}, z.core.$strip>;
|
|
246
246
|
type Response = z.infer<typeof Response>;
|
|
@@ -261,8 +261,8 @@ export declare namespace wallet_grantAdmin {
|
|
|
261
261
|
chainId: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumber<number>>>;
|
|
262
262
|
/** Admin Key to authorize. */
|
|
263
263
|
key: z.ZodMiniObject<{
|
|
264
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
264
265
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
265
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
266
266
|
}, z.core.$strip>;
|
|
267
267
|
}, z.core.$strip>;
|
|
268
268
|
type Parameters = z.infer<typeof Parameters>;
|
|
@@ -279,8 +279,8 @@ export declare namespace wallet_grantAdmin {
|
|
|
279
279
|
chainId: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumber<number>>>;
|
|
280
280
|
/** Admin Key to authorize. */
|
|
281
281
|
key: z.ZodMiniObject<{
|
|
282
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
282
283
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
283
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
284
284
|
}, z.core.$strip>;
|
|
285
285
|
}, z.core.$strip>], null>>;
|
|
286
286
|
}, z.core.$strip>;
|
|
@@ -292,8 +292,8 @@ export declare namespace wallet_grantAdmin {
|
|
|
292
292
|
credentialId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
293
293
|
privateKey: z.ZodMiniOptional<z.ZodMiniAny>;
|
|
294
294
|
id: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
295
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
295
296
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
296
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
297
297
|
}, z.core.$strip>;
|
|
298
298
|
}, z.core.$strip>;
|
|
299
299
|
type Response = z.infer<typeof Response>;
|
|
@@ -308,8 +308,8 @@ export declare namespace wallet_grantPermissions {
|
|
|
308
308
|
symbol: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"native">, z.ZodMiniString<string>]>>;
|
|
309
309
|
}, z.core.$strip>>;
|
|
310
310
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
311
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
311
312
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
312
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
313
313
|
}, z.core.$strip>>;
|
|
314
314
|
permissions: z.ZodMiniObject<{
|
|
315
315
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -362,8 +362,8 @@ export declare namespace wallet_grantPermissions {
|
|
|
362
362
|
symbol: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"native">, z.ZodMiniString<string>]>>;
|
|
363
363
|
}, z.core.$strip>>;
|
|
364
364
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
365
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
365
366
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
366
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
367
367
|
}, z.core.$strip>>;
|
|
368
368
|
permissions: z.ZodMiniObject<{
|
|
369
369
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -420,8 +420,8 @@ export declare namespace wallet_grantPermissions {
|
|
|
420
420
|
expiry: z.ZodMiniNumber<number>;
|
|
421
421
|
id: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
422
422
|
key: z.ZodMiniObject<{
|
|
423
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
423
424
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
424
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
425
425
|
}, z.core.$strip>;
|
|
426
426
|
permissions: z.ZodMiniObject<{
|
|
427
427
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -502,8 +502,8 @@ export declare namespace wallet_getPermissions {
|
|
|
502
502
|
expiry: z.ZodMiniNumber<number>;
|
|
503
503
|
id: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
504
504
|
key: z.ZodMiniObject<{
|
|
505
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
505
506
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
506
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
507
507
|
}, z.core.$strip>;
|
|
508
508
|
permissions: z.ZodMiniObject<{
|
|
509
509
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -634,8 +634,8 @@ export declare namespace wallet_upgradeAccount {
|
|
|
634
634
|
credentialId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
635
635
|
privateKey: z.ZodMiniOptional<z.ZodMiniAny>;
|
|
636
636
|
id: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
637
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
637
638
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
638
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
639
639
|
}, z.core.$strip>>>>;
|
|
640
640
|
permissions: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
641
641
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -643,8 +643,8 @@ export declare namespace wallet_upgradeAccount {
|
|
|
643
643
|
expiry: z.ZodMiniNumber<number>;
|
|
644
644
|
id: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
645
645
|
key: z.ZodMiniObject<{
|
|
646
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
646
647
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
647
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
648
648
|
}, z.core.$strip>;
|
|
649
649
|
permissions: z.ZodMiniObject<{
|
|
650
650
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -694,8 +694,8 @@ export declare namespace wallet_upgradeAccount {
|
|
|
694
694
|
credentialId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
695
695
|
privateKey: z.ZodMiniOptional<z.ZodMiniAny>;
|
|
696
696
|
id: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
697
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
697
698
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
698
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
699
699
|
}, z.core.$strip>>>>;
|
|
700
700
|
permissions: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
701
701
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -703,8 +703,8 @@ export declare namespace wallet_upgradeAccount {
|
|
|
703
703
|
expiry: z.ZodMiniNumber<number>;
|
|
704
704
|
id: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
705
705
|
key: z.ZodMiniObject<{
|
|
706
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
706
707
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
707
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
708
708
|
}, z.core.$strip>;
|
|
709
709
|
permissions: z.ZodMiniObject<{
|
|
710
710
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -775,8 +775,8 @@ export declare namespace wallet_connect {
|
|
|
775
775
|
}, z.core.$strip>]>>;
|
|
776
776
|
email: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
777
777
|
grantAdmins: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
778
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
778
779
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
779
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
780
780
|
}, z.core.$strip>>>>;
|
|
781
781
|
grantPermissions: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
782
782
|
address: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -787,8 +787,8 @@ export declare namespace wallet_connect {
|
|
|
787
787
|
symbol: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"native">, z.ZodMiniString<string>]>>;
|
|
788
788
|
}, z.core.$strip>>;
|
|
789
789
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
790
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
790
791
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
791
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
792
792
|
}, z.core.$strip>>;
|
|
793
793
|
permissions: z.ZodMiniObject<{
|
|
794
794
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -833,6 +833,7 @@ export declare namespace wallet_connect {
|
|
|
833
833
|
context: z.ZodMiniUnknown;
|
|
834
834
|
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
835
835
|
}, z.core.$strip>>>>;
|
|
836
|
+
providerRdns: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
836
837
|
selectAccount: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniObject<{
|
|
837
838
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
838
839
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
@@ -947,8 +948,8 @@ export declare namespace wallet_connect {
|
|
|
947
948
|
}, z.core.$strip>]>>;
|
|
948
949
|
email: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
949
950
|
grantAdmins: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
951
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
950
952
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
951
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
952
953
|
}, z.core.$strip>>>>;
|
|
953
954
|
grantPermissions: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
954
955
|
address: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -959,8 +960,8 @@ export declare namespace wallet_connect {
|
|
|
959
960
|
symbol: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"native">, z.ZodMiniString<string>]>>;
|
|
960
961
|
}, z.core.$strip>>;
|
|
961
962
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
963
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
962
964
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
963
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
964
965
|
}, z.core.$strip>>;
|
|
965
966
|
permissions: z.ZodMiniObject<{
|
|
966
967
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -1005,6 +1006,7 @@ export declare namespace wallet_connect {
|
|
|
1005
1006
|
context: z.ZodMiniUnknown;
|
|
1006
1007
|
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1007
1008
|
}, z.core.$strip>>>>;
|
|
1009
|
+
providerRdns: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1008
1010
|
selectAccount: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniObject<{
|
|
1009
1011
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1010
1012
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
@@ -1123,8 +1125,8 @@ export declare namespace wallet_connect {
|
|
|
1123
1125
|
}, z.core.$strip>]>>;
|
|
1124
1126
|
email: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1125
1127
|
grantAdmins: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1128
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
1126
1129
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1127
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
1128
1130
|
}, z.core.$strip>>>>;
|
|
1129
1131
|
grantPermissions: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1130
1132
|
address: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1135,8 +1137,8 @@ export declare namespace wallet_connect {
|
|
|
1135
1137
|
symbol: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"native">, z.ZodMiniString<string>]>>;
|
|
1136
1138
|
}, z.core.$strip>>;
|
|
1137
1139
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1140
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
1138
1141
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1139
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
1140
1142
|
}, z.core.$strip>>;
|
|
1141
1143
|
permissions: z.ZodMiniObject<{
|
|
1142
1144
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -1181,6 +1183,7 @@ export declare namespace wallet_connect {
|
|
|
1181
1183
|
context: z.ZodMiniUnknown;
|
|
1182
1184
|
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1183
1185
|
}, z.core.$strip>>>>;
|
|
1186
|
+
providerRdns: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1184
1187
|
selectAccount: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniObject<{
|
|
1185
1188
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1186
1189
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
@@ -1294,8 +1297,8 @@ export declare namespace wallet_connect {
|
|
|
1294
1297
|
admins: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1295
1298
|
credentialId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1296
1299
|
id: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1300
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
1297
1301
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1298
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
1299
1302
|
}, z.core.$strip>>>>;
|
|
1300
1303
|
permissions: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1301
1304
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1303,8 +1306,8 @@ export declare namespace wallet_connect {
|
|
|
1303
1306
|
expiry: z.ZodMiniNumber<number>;
|
|
1304
1307
|
id: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1305
1308
|
key: z.ZodMiniObject<{
|
|
1309
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
1306
1310
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1307
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
1308
1311
|
}, z.core.$strip>;
|
|
1309
1312
|
permissions: z.ZodMiniObject<{
|
|
1310
1313
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -1363,8 +1366,8 @@ export declare namespace wallet_connect {
|
|
|
1363
1366
|
admins: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1364
1367
|
credentialId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1365
1368
|
id: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1369
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
1366
1370
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1367
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
1368
1371
|
}, z.core.$strip>>>>;
|
|
1369
1372
|
permissions: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1370
1373
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1372,8 +1375,8 @@ export declare namespace wallet_connect {
|
|
|
1372
1375
|
expiry: z.ZodMiniNumber<number>;
|
|
1373
1376
|
id: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1374
1377
|
key: z.ZodMiniObject<{
|
|
1378
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
1375
1379
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1376
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
1377
1380
|
}, z.core.$strip>;
|
|
1378
1381
|
permissions: z.ZodMiniObject<{
|
|
1379
1382
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -1684,7 +1687,7 @@ export declare namespace wallet_getKeys {
|
|
|
1684
1687
|
prehash: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1685
1688
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1686
1689
|
role: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"admin">, z.ZodMiniLiteral<"session">]>;
|
|
1687
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
1690
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
1688
1691
|
}, z.core.$strip>>>;
|
|
1689
1692
|
type Response = z.infer<typeof Response>;
|
|
1690
1693
|
}
|
|
@@ -1771,9 +1774,9 @@ export declare namespace wallet_prepareCalls {
|
|
|
1771
1774
|
chainId: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumber<number>>>;
|
|
1772
1775
|
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1773
1776
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1774
|
-
|
|
1775
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
1777
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
1776
1778
|
prehash: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1779
|
+
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1777
1780
|
}, z.core.$strip>>;
|
|
1778
1781
|
version: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1779
1782
|
}, z.core.$strip>;
|
|
@@ -1825,9 +1828,9 @@ export declare namespace wallet_prepareCalls {
|
|
|
1825
1828
|
chainId: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumber<number>>>;
|
|
1826
1829
|
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1827
1830
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1828
|
-
|
|
1829
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
1831
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
1830
1832
|
prehash: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
1833
|
+
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1831
1834
|
}, z.core.$strip>>;
|
|
1832
1835
|
version: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
1833
1836
|
}, z.core.$strip>], null>>;
|
|
@@ -2089,9 +2092,9 @@ export declare namespace wallet_prepareCalls {
|
|
|
2089
2092
|
}, z.core.$strip>;
|
|
2090
2093
|
digest: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2091
2094
|
key: z.ZodMiniObject<{
|
|
2092
|
-
|
|
2093
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
2095
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
2094
2096
|
prehash: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
2097
|
+
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2095
2098
|
}, z.core.$strip>;
|
|
2096
2099
|
typedData: z.ZodMiniObject<{
|
|
2097
2100
|
domain: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -2116,8 +2119,8 @@ export declare namespace wallet_prepareUpgradeAccount {
|
|
|
2116
2119
|
}, z.core.$strip>]>>;
|
|
2117
2120
|
email: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
2118
2121
|
grantAdmins: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2122
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
2119
2123
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2120
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
2121
2124
|
}, z.core.$strip>>>>;
|
|
2122
2125
|
grantPermissions: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2123
2126
|
address: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -2128,8 +2131,8 @@ export declare namespace wallet_prepareUpgradeAccount {
|
|
|
2128
2131
|
symbol: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"native">, z.ZodMiniString<string>]>>;
|
|
2129
2132
|
}, z.core.$strip>>;
|
|
2130
2133
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2134
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
2131
2135
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2132
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
2133
2136
|
}, z.core.$strip>>;
|
|
2134
2137
|
permissions: z.ZodMiniObject<{
|
|
2135
2138
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -2174,6 +2177,7 @@ export declare namespace wallet_prepareUpgradeAccount {
|
|
|
2174
2177
|
context: z.ZodMiniUnknown;
|
|
2175
2178
|
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2176
2179
|
}, z.core.$strip>>>>;
|
|
2180
|
+
providerRdns: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2177
2181
|
selectAccount: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniObject<{
|
|
2178
2182
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2179
2183
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
@@ -2290,8 +2294,8 @@ export declare namespace wallet_prepareUpgradeAccount {
|
|
|
2290
2294
|
}, z.core.$strip>]>>;
|
|
2291
2295
|
email: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
2292
2296
|
grantAdmins: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2297
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
2293
2298
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2294
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
2295
2299
|
}, z.core.$strip>>>>;
|
|
2296
2300
|
grantPermissions: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2297
2301
|
address: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -2302,8 +2306,8 @@ export declare namespace wallet_prepareUpgradeAccount {
|
|
|
2302
2306
|
symbol: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"native">, z.ZodMiniString<string>]>>;
|
|
2303
2307
|
}, z.core.$strip>>;
|
|
2304
2308
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2309
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
2305
2310
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2306
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
2307
2311
|
}, z.core.$strip>>;
|
|
2308
2312
|
permissions: z.ZodMiniObject<{
|
|
2309
2313
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -2348,6 +2352,7 @@ export declare namespace wallet_prepareUpgradeAccount {
|
|
|
2348
2352
|
context: z.ZodMiniUnknown;
|
|
2349
2353
|
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2350
2354
|
}, z.core.$strip>>>>;
|
|
2355
|
+
providerRdns: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2351
2356
|
selectAccount: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniObject<{
|
|
2352
2357
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2353
2358
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
@@ -2468,8 +2473,8 @@ export declare namespace wallet_prepareUpgradeAccount {
|
|
|
2468
2473
|
}, z.core.$strip>]>>;
|
|
2469
2474
|
email: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
2470
2475
|
grantAdmins: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2476
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
2471
2477
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2472
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
2473
2478
|
}, z.core.$strip>>>>;
|
|
2474
2479
|
grantPermissions: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2475
2480
|
address: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -2480,8 +2485,8 @@ export declare namespace wallet_prepareUpgradeAccount {
|
|
|
2480
2485
|
symbol: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"native">, z.ZodMiniString<string>]>>;
|
|
2481
2486
|
}, z.core.$strip>>;
|
|
2482
2487
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2488
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
2483
2489
|
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2484
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
2485
2490
|
}, z.core.$strip>>;
|
|
2486
2491
|
permissions: z.ZodMiniObject<{
|
|
2487
2492
|
calls: z.ZodMiniReadonly<z.ZodMiniArray<Omit<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -2526,6 +2531,7 @@ export declare namespace wallet_prepareUpgradeAccount {
|
|
|
2526
2531
|
context: z.ZodMiniUnknown;
|
|
2527
2532
|
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2528
2533
|
}, z.core.$strip>>>>;
|
|
2534
|
+
providerRdns: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2529
2535
|
selectAccount: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniObject<{
|
|
2530
2536
|
address: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2531
2537
|
key: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
@@ -2686,14 +2692,8 @@ export declare namespace wallet_sendCalls {
|
|
|
2686
2692
|
const Request: z.ZodMiniObject<{
|
|
2687
2693
|
method: z.ZodMiniLiteral<"wallet_sendCalls">;
|
|
2688
2694
|
params: z.ZodMiniReadonly<z.ZodMiniTuple<readonly [z.ZodMiniObject<{
|
|
2689
|
-
calls: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2690
|
-
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2691
|
-
to: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2692
|
-
value: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
2693
|
-
}, z.core.$strip>>>;
|
|
2694
2695
|
version: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
2695
2696
|
chainId: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumber<number>>>;
|
|
2696
|
-
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2697
2697
|
capabilities: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2698
2698
|
feeToken: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
|
|
2699
2699
|
merchantUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -2730,6 +2730,12 @@ export declare namespace wallet_sendCalls {
|
|
|
2730
2730
|
};
|
|
2731
2731
|
}>>>;
|
|
2732
2732
|
}, z.core.$strip>>;
|
|
2733
|
+
calls: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2734
|
+
data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2735
|
+
to: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2736
|
+
value: z.ZodMiniOptional<z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>>;
|
|
2737
|
+
}, z.core.$strip>>>;
|
|
2738
|
+
from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2733
2739
|
}, z.core.$strip>], null>>;
|
|
2734
2740
|
}, z.core.$strip>;
|
|
2735
2741
|
type Request = z.infer<typeof Request>;
|
|
@@ -2994,9 +3000,9 @@ export declare namespace wallet_sendPreparedCalls {
|
|
|
2994
3000
|
}, z.core.$strip>>;
|
|
2995
3001
|
}, z.core.$strip>;
|
|
2996
3002
|
key: z.ZodMiniObject<{
|
|
2997
|
-
|
|
2998
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
3003
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
2999
3004
|
prehash: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
3005
|
+
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
3000
3006
|
}, z.core.$strip>;
|
|
3001
3007
|
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
3002
3008
|
}, z.core.$strip>;
|
|
@@ -3258,9 +3264,9 @@ export declare namespace wallet_sendPreparedCalls {
|
|
|
3258
3264
|
}, z.core.$strip>>;
|
|
3259
3265
|
}, z.core.$strip>;
|
|
3260
3266
|
key: z.ZodMiniObject<{
|
|
3261
|
-
|
|
3262
|
-
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">]>;
|
|
3267
|
+
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"webauthn-p256">, z.ZodMiniLiteral<"eip1193provider">]>;
|
|
3263
3268
|
prehash: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
3269
|
+
publicKey: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
3264
3270
|
}, z.core.$strip>;
|
|
3265
3271
|
signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
3266
3272
|
}, z.core.$strip>], null>>;
|