@xyo-network/xl1-rpc 1.15.1 → 1.15.3
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/README.md +11897 -1213
- package/dist/neutral/engine/index-node.d.ts +2 -2
- package/dist/neutral/engine/index-node.d.ts.map +1 -1
- package/dist/neutral/engine/index.d.ts +2 -1
- package/dist/neutral/engine/index.d.ts.map +1 -1
- package/dist/neutral/engine/rpcEngineFromConnection.d.ts +4 -0
- package/dist/neutral/engine/rpcEngineFromConnection.d.ts.map +1 -0
- package/dist/neutral/engine/rpcMethodHandlersFromConnection.d.ts +4 -0
- package/dist/neutral/engine/rpcMethodHandlersFromConnection.d.ts.map +1 -0
- package/dist/neutral/engine/rpcMethodHandlersFromPermissions.d.ts +4 -0
- package/dist/neutral/engine/rpcMethodHandlersFromPermissions.d.ts.map +1 -0
- package/dist/neutral/engine/rpcMethodHandlersFromViewer.d.ts.map +1 -1
- package/dist/neutral/index.mjs +894 -437
- package/dist/neutral/index.mjs.map +1 -1
- package/dist/neutral/provider/client/MemoryXyoClient.d.ts +2 -2
- package/dist/neutral/provider/client/MemoryXyoClient.d.ts.map +1 -1
- package/dist/neutral/provider/client/index.d.ts +0 -1
- package/dist/neutral/provider/client/index.d.ts.map +1 -1
- package/dist/neutral/provider/index.d.ts +1 -0
- package/dist/neutral/provider/index.d.ts.map +1 -1
- package/dist/neutral/provider/permissions/MemoryXyoPermissions.d.ts +17 -0
- package/dist/neutral/provider/permissions/MemoryXyoPermissions.d.ts.map +1 -0
- package/dist/neutral/provider/permissions/RpcXyoPermissions.d.ts +11 -0
- package/dist/neutral/provider/permissions/RpcXyoPermissions.d.ts.map +1 -0
- package/dist/neutral/provider/permissions/index.d.ts +4 -0
- package/dist/neutral/provider/permissions/index.d.ts.map +1 -0
- package/dist/neutral/provider/permissions/spec/MemoryXyoPermissions.spec.d.ts +2 -0
- package/dist/neutral/provider/permissions/spec/MemoryXyoPermissions.spec.d.ts.map +1 -0
- package/dist/neutral/provider/permissions/store/MemoryPermissions.d.ts +16 -0
- package/dist/neutral/provider/permissions/store/MemoryPermissions.d.ts.map +1 -0
- package/dist/neutral/provider/permissions/store/PermissionsStore.d.ts +12 -0
- package/dist/neutral/provider/permissions/store/PermissionsStore.d.ts.map +1 -0
- package/dist/neutral/provider/permissions/store/index.d.ts +3 -0
- package/dist/neutral/provider/permissions/store/index.d.ts.map +1 -0
- package/dist/neutral/provider/signer/JsonRpcXyoSigner.d.ts +3 -2
- package/dist/neutral/provider/signer/JsonRpcXyoSigner.d.ts.map +1 -1
- package/dist/neutral/provider/signer/MemoryXyoSigner.d.ts +2 -2
- package/dist/neutral/provider/signer/MemoryXyoSigner.d.ts.map +1 -1
- package/dist/neutral/provider/viewer/JsonRpcXyoViewer.d.ts +26 -9
- package/dist/neutral/provider/viewer/JsonRpcXyoViewer.d.ts.map +1 -1
- package/dist/neutral/transport/post-message/index.d.ts +0 -1
- package/dist/neutral/transport/post-message/index.d.ts.map +1 -1
- package/dist/neutral/types/ErrorCodes.d.ts.map +1 -1
- package/dist/neutral/types/XyoPermissions.d.ts +7 -0
- package/dist/neutral/types/XyoPermissions.d.ts.map +1 -0
- package/dist/neutral/types/index.d.ts +1 -2
- package/dist/neutral/types/index.d.ts.map +1 -1
- package/dist/neutral/types/schema/AllRpcSchemas.d.ts +914 -80
- package/dist/neutral/types/schema/AllRpcSchemas.d.ts.map +1 -1
- package/dist/neutral/types/schema/XyoPermissionsRpcSchemas.d.ts +74 -0
- package/dist/neutral/types/schema/XyoPermissionsRpcSchemas.d.ts.map +1 -0
- package/dist/neutral/types/schema/XyoProviderRpcSchemas.d.ts +4 -4
- package/dist/neutral/types/schema/XyoRunnerRpcSchemas.d.ts +4 -4
- package/dist/neutral/types/schema/XyoSignerRpcSchemas.d.ts +19 -19
- package/dist/neutral/types/schema/XyoSignerRpcSchemas.d.ts.map +1 -1
- package/dist/neutral/types/schema/XyoViewerRpcSchemas.d.ts +828 -64
- package/dist/neutral/types/schema/XyoViewerRpcSchemas.d.ts.map +1 -1
- package/dist/neutral/types/schema/common/BlockBoundWitness.d.ts +4 -4
- package/dist/neutral/types/schema/common/Chain.d.ts +2 -2
- package/dist/neutral/types/schema/common/Chain.d.ts.map +1 -1
- package/dist/neutral/types/schema/common/HydratedBlock.d.ts +5 -5
- package/dist/neutral/types/schema/common/HydratedTransaction.d.ts +14 -14
- package/dist/neutral/types/schema/common/Permission.d.ts +53 -0
- package/dist/neutral/types/schema/common/Permission.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/Stake.d.ts +11 -5
- package/dist/neutral/types/schema/common/Stake.d.ts.map +1 -1
- package/dist/neutral/types/schema/common/StepContext.d.ts +6 -0
- package/dist/neutral/types/schema/common/StepContext.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/TransactionBoundWitness.d.ts +4 -4
- package/dist/neutral/types/schema/common/Transfer.d.ts +33 -0
- package/dist/neutral/types/schema/common/Transfer.d.ts.map +1 -0
- package/dist/neutral/types/schema/common/index.d.ts +3 -0
- package/dist/neutral/types/schema/common/index.d.ts.map +1 -1
- package/dist/neutral/types/schema/index.d.ts +1 -1
- package/dist/neutral/types/schema/index.d.ts.map +1 -1
- package/dist/node/engine/index-node.d.ts +2 -2
- package/dist/node/engine/index-node.d.ts.map +1 -1
- package/dist/node/engine/index.d.ts +2 -1
- package/dist/node/engine/index.d.ts.map +1 -1
- package/dist/node/engine/rpcEngineFromConnection.d.ts +4 -0
- package/dist/node/engine/rpcEngineFromConnection.d.ts.map +1 -0
- package/dist/node/engine/rpcMethodHandlersFromConnection.d.ts +4 -0
- package/dist/node/engine/rpcMethodHandlersFromConnection.d.ts.map +1 -0
- package/dist/node/engine/rpcMethodHandlersFromPermissions.d.ts +4 -0
- package/dist/node/engine/rpcMethodHandlersFromPermissions.d.ts.map +1 -0
- package/dist/node/engine/rpcMethodHandlersFromViewer.d.ts.map +1 -1
- package/dist/node/index-node.mjs +900 -443
- package/dist/node/index-node.mjs.map +1 -1
- package/dist/node/provider/client/MemoryXyoClient.d.ts +2 -2
- package/dist/node/provider/client/MemoryXyoClient.d.ts.map +1 -1
- package/dist/node/provider/client/index.d.ts +0 -1
- package/dist/node/provider/client/index.d.ts.map +1 -1
- package/dist/node/provider/index.d.ts +1 -0
- package/dist/node/provider/index.d.ts.map +1 -1
- package/dist/node/provider/permissions/MemoryXyoPermissions.d.ts +17 -0
- package/dist/node/provider/permissions/MemoryXyoPermissions.d.ts.map +1 -0
- package/dist/node/provider/permissions/RpcXyoPermissions.d.ts +11 -0
- package/dist/node/provider/permissions/RpcXyoPermissions.d.ts.map +1 -0
- package/dist/node/provider/permissions/index.d.ts +4 -0
- package/dist/node/provider/permissions/index.d.ts.map +1 -0
- package/dist/node/provider/permissions/spec/MemoryXyoPermissions.spec.d.ts +2 -0
- package/dist/node/provider/permissions/spec/MemoryXyoPermissions.spec.d.ts.map +1 -0
- package/dist/node/provider/permissions/store/MemoryPermissions.d.ts +16 -0
- package/dist/node/provider/permissions/store/MemoryPermissions.d.ts.map +1 -0
- package/dist/node/provider/permissions/store/PermissionsStore.d.ts +12 -0
- package/dist/node/provider/permissions/store/PermissionsStore.d.ts.map +1 -0
- package/dist/node/provider/permissions/store/index.d.ts +3 -0
- package/dist/node/provider/permissions/store/index.d.ts.map +1 -0
- package/dist/node/provider/signer/JsonRpcXyoSigner.d.ts +3 -2
- package/dist/node/provider/signer/JsonRpcXyoSigner.d.ts.map +1 -1
- package/dist/node/provider/signer/MemoryXyoSigner.d.ts +2 -2
- package/dist/node/provider/signer/MemoryXyoSigner.d.ts.map +1 -1
- package/dist/node/provider/viewer/JsonRpcXyoViewer.d.ts +26 -9
- package/dist/node/provider/viewer/JsonRpcXyoViewer.d.ts.map +1 -1
- package/dist/node/transport/post-message/index.d.ts +0 -1
- package/dist/node/transport/post-message/index.d.ts.map +1 -1
- package/dist/node/types/ErrorCodes.d.ts.map +1 -1
- package/dist/node/types/XyoPermissions.d.ts +7 -0
- package/dist/node/types/XyoPermissions.d.ts.map +1 -0
- package/dist/node/types/index.d.ts +1 -2
- package/dist/node/types/index.d.ts.map +1 -1
- package/dist/node/types/schema/AllRpcSchemas.d.ts +914 -80
- package/dist/node/types/schema/AllRpcSchemas.d.ts.map +1 -1
- package/dist/node/types/schema/XyoPermissionsRpcSchemas.d.ts +74 -0
- package/dist/node/types/schema/XyoPermissionsRpcSchemas.d.ts.map +1 -0
- package/dist/node/types/schema/XyoProviderRpcSchemas.d.ts +4 -4
- package/dist/node/types/schema/XyoRunnerRpcSchemas.d.ts +4 -4
- package/dist/node/types/schema/XyoSignerRpcSchemas.d.ts +19 -19
- package/dist/node/types/schema/XyoSignerRpcSchemas.d.ts.map +1 -1
- package/dist/node/types/schema/XyoViewerRpcSchemas.d.ts +828 -64
- package/dist/node/types/schema/XyoViewerRpcSchemas.d.ts.map +1 -1
- package/dist/node/types/schema/common/BlockBoundWitness.d.ts +4 -4
- package/dist/node/types/schema/common/Chain.d.ts +2 -2
- package/dist/node/types/schema/common/Chain.d.ts.map +1 -1
- package/dist/node/types/schema/common/HydratedBlock.d.ts +5 -5
- package/dist/node/types/schema/common/HydratedTransaction.d.ts +14 -14
- package/dist/node/types/schema/common/Permission.d.ts +53 -0
- package/dist/node/types/schema/common/Permission.d.ts.map +1 -0
- package/dist/node/types/schema/common/Stake.d.ts +11 -5
- package/dist/node/types/schema/common/Stake.d.ts.map +1 -1
- package/dist/node/types/schema/common/StepContext.d.ts +6 -0
- package/dist/node/types/schema/common/StepContext.d.ts.map +1 -0
- package/dist/node/types/schema/common/TransactionBoundWitness.d.ts +4 -4
- package/dist/node/types/schema/common/Transfer.d.ts +33 -0
- package/dist/node/types/schema/common/Transfer.d.ts.map +1 -0
- package/dist/node/types/schema/common/index.d.ts +3 -0
- package/dist/node/types/schema/common/index.d.ts.map +1 -1
- package/dist/node/types/schema/index.d.ts +1 -1
- package/dist/node/types/schema/index.d.ts.map +1 -1
- package/package.json +36 -36
- package/src/engine/index-node.ts +2 -2
- package/src/engine/index.ts +2 -1
- package/src/engine/{rpcEngineFromProvider.ts → rpcEngineFromConnection.ts} +3 -3
- package/src/engine/{rpcMethodHandlersFromProvider.ts → rpcMethodHandlersFromConnection.ts} +3 -3
- package/src/engine/rpcMethodHandlersFromPermissions.ts +11 -0
- package/src/engine/rpcMethodHandlersFromViewer.ts +19 -1
- package/src/provider/client/MemoryXyoClient.ts +2 -1
- package/src/provider/client/index.ts +0 -1
- package/src/provider/client/spec/MemoryXyoClient.spec.ts +17 -31
- package/src/provider/index.ts +1 -0
- package/src/provider/permissions/MemoryXyoPermissions.ts +82 -0
- package/src/provider/permissions/RpcXyoPermissions.ts +30 -0
- package/src/provider/permissions/index.ts +3 -0
- package/src/provider/permissions/spec/MemoryXyoPermissions.spec.ts +93 -0
- package/src/provider/permissions/store/MemoryPermissions.ts +32 -0
- package/src/provider/permissions/store/PermissionsStore.ts +15 -0
- package/src/provider/permissions/store/index.ts +2 -0
- package/src/provider/signer/JsonRpcXyoSigner.ts +3 -2
- package/src/provider/signer/MemoryXyoSigner.ts +2 -2
- package/src/provider/signer/spec/RpcEngineXyoSigner.spec.ts +5 -5
- package/src/provider/viewer/JsonRpcXyoViewer.ts +105 -30
- package/src/transport/post-message/index.ts +0 -1
- package/src/types/ErrorCodes.ts +1 -0
- package/src/types/XyoPermissions.ts +13 -0
- package/src/types/index.ts +1 -2
- package/src/types/schema/AllRpcSchemas.ts +2 -0
- package/src/types/schema/XyoPermissionsRpcSchemas.ts +40 -0
- package/src/types/schema/XyoSignerRpcSchemas.ts +1 -1
- package/src/types/schema/XyoViewerRpcSchemas.ts +261 -15
- package/src/types/schema/common/Chain.ts +2 -2
- package/src/types/schema/common/Permission.ts +23 -0
- package/src/types/schema/common/Stake.ts +3 -3
- package/src/types/schema/common/StepContext.ts +6 -0
- package/src/types/schema/common/Transfer.ts +14 -0
- package/src/types/schema/common/index.ts +3 -0
- package/src/types/schema/index.ts +1 -1
- package/dist/neutral/engine/rpcEngineFromProvider.d.ts +0 -4
- package/dist/neutral/engine/rpcEngineFromProvider.d.ts.map +0 -1
- package/dist/neutral/engine/rpcMethodHandlersFromProvider.d.ts +0 -4
- package/dist/neutral/engine/rpcMethodHandlersFromProvider.d.ts.map +0 -1
- package/dist/neutral/provider/client/PermissionsStore/MemoryPermissionsStore.d.ts +0 -11
- package/dist/neutral/provider/client/PermissionsStore/MemoryPermissionsStore.d.ts.map +0 -1
- package/dist/neutral/provider/client/PermissionsStore/PermissionsStore.d.ts +0 -8
- package/dist/neutral/provider/client/PermissionsStore/PermissionsStore.d.ts.map +0 -1
- package/dist/neutral/provider/client/PermissionsStore/getPermissionsStoreFromTransport.d.ts +0 -5
- package/dist/neutral/provider/client/PermissionsStore/getPermissionsStoreFromTransport.d.ts.map +0 -1
- package/dist/neutral/provider/client/PermissionsStore/index.d.ts +0 -4
- package/dist/neutral/provider/client/PermissionsStore/index.d.ts.map +0 -1
- package/dist/neutral/provider/client/PermissionsStore/spec/MemoryPermissionsStore.spec.d.ts +0 -2
- package/dist/neutral/provider/client/PermissionsStore/spec/MemoryPermissionsStore.spec.d.ts.map +0 -1
- package/dist/neutral/transport/post-message/LegacyPostMessageRpcTransport.d.ts +0 -15
- package/dist/neutral/transport/post-message/LegacyPostMessageRpcTransport.d.ts.map +0 -1
- package/dist/neutral/types/XyoGatewayRpc.d.ts +0 -8
- package/dist/neutral/types/XyoGatewayRpc.d.ts.map +0 -1
- package/dist/neutral/types/schema/XyoGatewayRpcSchemas.d.ts +0 -437
- package/dist/neutral/types/schema/XyoGatewayRpcSchemas.d.ts.map +0 -1
- package/dist/node/engine/rpcEngineFromProvider.d.ts +0 -4
- package/dist/node/engine/rpcEngineFromProvider.d.ts.map +0 -1
- package/dist/node/engine/rpcMethodHandlersFromProvider.d.ts +0 -4
- package/dist/node/engine/rpcMethodHandlersFromProvider.d.ts.map +0 -1
- package/dist/node/provider/client/PermissionsStore/MemoryPermissionsStore.d.ts +0 -11
- package/dist/node/provider/client/PermissionsStore/MemoryPermissionsStore.d.ts.map +0 -1
- package/dist/node/provider/client/PermissionsStore/PermissionsStore.d.ts +0 -8
- package/dist/node/provider/client/PermissionsStore/PermissionsStore.d.ts.map +0 -1
- package/dist/node/provider/client/PermissionsStore/getPermissionsStoreFromTransport.d.ts +0 -5
- package/dist/node/provider/client/PermissionsStore/getPermissionsStoreFromTransport.d.ts.map +0 -1
- package/dist/node/provider/client/PermissionsStore/index.d.ts +0 -4
- package/dist/node/provider/client/PermissionsStore/index.d.ts.map +0 -1
- package/dist/node/provider/client/PermissionsStore/spec/MemoryPermissionsStore.spec.d.ts +0 -2
- package/dist/node/provider/client/PermissionsStore/spec/MemoryPermissionsStore.spec.d.ts.map +0 -1
- package/dist/node/transport/post-message/LegacyPostMessageRpcTransport.d.ts +0 -15
- package/dist/node/transport/post-message/LegacyPostMessageRpcTransport.d.ts.map +0 -1
- package/dist/node/types/XyoGatewayRpc.d.ts +0 -8
- package/dist/node/types/XyoGatewayRpc.d.ts.map +0 -1
- package/dist/node/types/schema/XyoGatewayRpcSchemas.d.ts +0 -437
- package/dist/node/types/schema/XyoGatewayRpcSchemas.d.ts.map +0 -1
- package/src/provider/client/PermissionsStore/MemoryPermissionsStore.ts +0 -33
- package/src/provider/client/PermissionsStore/PermissionsStore.ts +0 -8
- package/src/provider/client/PermissionsStore/getPermissionsStoreFromTransport.ts +0 -12
- package/src/provider/client/PermissionsStore/index.ts +0 -3
- package/src/provider/client/PermissionsStore/spec/MemoryPermissionsStore.spec.ts +0 -78
- package/src/transport/post-message/LegacyPostMessageRpcTransport.ts +0 -120
- package/src/types/XyoGatewayRpc.ts +0 -15
- package/src/types/schema/XyoGatewayRpcSchemas.ts +0 -108
|
@@ -1,33 +1,393 @@
|
|
|
1
1
|
import * as z from 'zod';
|
|
2
2
|
export declare const XyoViewerRpcSchemas: {
|
|
3
|
-
|
|
3
|
+
xyoViewer_networkStakeStepRewardClaimedByAddress: {
|
|
4
4
|
params: {
|
|
5
5
|
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
6
6
|
readonly __hex: true;
|
|
7
7
|
}>, {
|
|
8
8
|
readonly __address: true;
|
|
9
|
-
}>, string>>], null
|
|
9
|
+
}>, string>>], null>]>;
|
|
10
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
11
|
+
readonly __hex: true;
|
|
12
|
+
}>, {
|
|
13
|
+
readonly __address: true;
|
|
14
|
+
}>, string>>], null>]>;
|
|
15
|
+
};
|
|
16
|
+
result: {
|
|
17
|
+
to: z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
18
|
+
readonly __hex: true;
|
|
19
|
+
}>, bigint>>;
|
|
20
|
+
from: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
21
|
+
readonly __hex: true;
|
|
22
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
23
|
+
readonly __hex: true;
|
|
24
|
+
}>>>;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
xyoViewer_networkStakeStepRewardAddressReward: {
|
|
28
|
+
params: {
|
|
29
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
30
|
+
block: z.ZodNumber;
|
|
31
|
+
step: z.ZodNumber;
|
|
32
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
33
|
+
readonly __hex: true;
|
|
34
|
+
}>, {
|
|
35
|
+
readonly __address: true;
|
|
36
|
+
}>, string>>], null>]>;
|
|
37
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
38
|
+
block: z.ZodNumber;
|
|
39
|
+
step: z.ZodNumber;
|
|
40
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
41
|
+
readonly __hex: true;
|
|
42
|
+
}>, {
|
|
43
|
+
readonly __address: true;
|
|
44
|
+
}>, string>>], null>]>;
|
|
45
|
+
};
|
|
46
|
+
result: {
|
|
47
|
+
to: z.ZodRecord<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
48
|
+
readonly __hex: true;
|
|
49
|
+
}>, {
|
|
50
|
+
readonly __address: true;
|
|
51
|
+
}>, string>>, z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
52
|
+
readonly __hex: true;
|
|
53
|
+
}>, bigint>>>;
|
|
54
|
+
from: z.ZodRecord<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
55
|
+
readonly __hex: true;
|
|
56
|
+
}>, {
|
|
57
|
+
readonly __address: true;
|
|
58
|
+
}>, string>>, z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
59
|
+
readonly __hex: true;
|
|
60
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
61
|
+
readonly __hex: true;
|
|
62
|
+
}>>>>;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
xyoViewer_networkStakeStepRewardAddressHistory: {
|
|
66
|
+
params: {
|
|
67
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
68
|
+
readonly __hex: true;
|
|
69
|
+
}>, {
|
|
70
|
+
readonly __address: true;
|
|
71
|
+
}>, string>>], null>]>;
|
|
72
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
73
|
+
readonly __hex: true;
|
|
74
|
+
}>, {
|
|
75
|
+
readonly __address: true;
|
|
76
|
+
}>, string>>], null>]>;
|
|
77
|
+
};
|
|
78
|
+
result: {
|
|
79
|
+
to: z.ZodRecord<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
10
80
|
readonly __hex: true;
|
|
11
81
|
}>, {
|
|
12
82
|
readonly __address: true;
|
|
13
|
-
}>, string>>, z.
|
|
83
|
+
}>, string>>, z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
84
|
+
readonly __hex: true;
|
|
85
|
+
}>, bigint>>>;
|
|
86
|
+
from: z.ZodRecord<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
87
|
+
readonly __hex: true;
|
|
88
|
+
}>, {
|
|
89
|
+
readonly __address: true;
|
|
90
|
+
}>, string>>, z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
91
|
+
readonly __hex: true;
|
|
92
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
93
|
+
readonly __hex: true;
|
|
94
|
+
}>>>>;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
xyoViewer_networkStakeStepRewardAddressShare: {
|
|
98
|
+
params: {
|
|
99
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
100
|
+
block: z.ZodNumber;
|
|
101
|
+
step: z.ZodNumber;
|
|
102
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
103
|
+
readonly __hex: true;
|
|
104
|
+
}>, {
|
|
105
|
+
readonly __address: true;
|
|
106
|
+
}>, string>>], null>]>;
|
|
107
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
108
|
+
block: z.ZodNumber;
|
|
109
|
+
step: z.ZodNumber;
|
|
110
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
111
|
+
readonly __hex: true;
|
|
112
|
+
}>, {
|
|
113
|
+
readonly __address: true;
|
|
114
|
+
}>, string>>], null>]>;
|
|
115
|
+
};
|
|
116
|
+
result: {
|
|
117
|
+
to: z.ZodTuple<[z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
118
|
+
readonly __hex: true;
|
|
119
|
+
}>, bigint>>, z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
120
|
+
readonly __hex: true;
|
|
121
|
+
}>, bigint>>], null>;
|
|
122
|
+
from: z.ZodTuple<[z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
123
|
+
readonly __hex: true;
|
|
124
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
125
|
+
readonly __hex: true;
|
|
126
|
+
}>>>, z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
127
|
+
readonly __hex: true;
|
|
128
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
129
|
+
readonly __hex: true;
|
|
130
|
+
}>>>], null>;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
xyoViewer_networkStakeStepRewardWeightForAddress: {
|
|
134
|
+
params: {
|
|
135
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
136
|
+
block: z.ZodNumber;
|
|
137
|
+
step: z.ZodNumber;
|
|
138
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
139
|
+
readonly __hex: true;
|
|
140
|
+
}>, {
|
|
141
|
+
readonly __address: true;
|
|
142
|
+
}>, string>>], null>]>;
|
|
143
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
144
|
+
block: z.ZodNumber;
|
|
145
|
+
step: z.ZodNumber;
|
|
146
|
+
}, z.core.$strip>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
147
|
+
readonly __hex: true;
|
|
148
|
+
}>, {
|
|
149
|
+
readonly __address: true;
|
|
150
|
+
}>, string>>], null>]>;
|
|
151
|
+
};
|
|
152
|
+
result: {
|
|
153
|
+
to: z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
154
|
+
readonly __hex: true;
|
|
155
|
+
}>, bigint>>;
|
|
156
|
+
from: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
157
|
+
readonly __hex: true;
|
|
158
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
159
|
+
readonly __hex: true;
|
|
160
|
+
}>>>;
|
|
161
|
+
};
|
|
162
|
+
};
|
|
163
|
+
xyoViewer_networkStakeStepRewardUnclaimedByAddress: {
|
|
164
|
+
params: {
|
|
165
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
14
166
|
readonly __hex: true;
|
|
15
167
|
}>, {
|
|
16
168
|
readonly __address: true;
|
|
17
|
-
}>, string
|
|
169
|
+
}>, string>>], null>]>;
|
|
18
170
|
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
19
171
|
readonly __hex: true;
|
|
20
172
|
}>, {
|
|
21
173
|
readonly __address: true;
|
|
22
|
-
}>, string>>], null
|
|
174
|
+
}>, string>>], null>]>;
|
|
175
|
+
};
|
|
176
|
+
result: {
|
|
177
|
+
to: z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
178
|
+
readonly __hex: true;
|
|
179
|
+
}>, bigint>>;
|
|
180
|
+
from: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
181
|
+
readonly __hex: true;
|
|
182
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
183
|
+
readonly __hex: true;
|
|
184
|
+
}>>>;
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
xyoViewer_networkStakeStepRewardPoolRewards: {
|
|
188
|
+
params: {
|
|
189
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
190
|
+
block: z.ZodNumber;
|
|
191
|
+
step: z.ZodNumber;
|
|
192
|
+
}, z.core.$strip>], null>]>;
|
|
193
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
194
|
+
block: z.ZodNumber;
|
|
195
|
+
step: z.ZodNumber;
|
|
196
|
+
}, z.core.$strip>], null>]>;
|
|
197
|
+
};
|
|
198
|
+
result: {
|
|
199
|
+
to: z.ZodRecord<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
200
|
+
readonly __hex: true;
|
|
201
|
+
}>, {
|
|
202
|
+
readonly __address: true;
|
|
203
|
+
}>, string>>, z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
204
|
+
readonly __hex: true;
|
|
205
|
+
}>, bigint>>>;
|
|
206
|
+
from: z.ZodRecord<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
207
|
+
readonly __hex: true;
|
|
208
|
+
}>, {
|
|
209
|
+
readonly __address: true;
|
|
210
|
+
}>, string>>, z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
211
|
+
readonly __hex: true;
|
|
212
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
213
|
+
readonly __hex: true;
|
|
214
|
+
}>>>>;
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
xyoViewer_networkStakeStepRewardPositionWeight: {
|
|
218
|
+
params: {
|
|
219
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
220
|
+
block: z.ZodNumber;
|
|
221
|
+
step: z.ZodNumber;
|
|
222
|
+
}, z.core.$strip>, z.ZodNumber], null>]>;
|
|
223
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
224
|
+
block: z.ZodNumber;
|
|
225
|
+
step: z.ZodNumber;
|
|
226
|
+
}, z.core.$strip>, z.ZodNumber], null>]>;
|
|
227
|
+
};
|
|
228
|
+
result: {
|
|
229
|
+
to: z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
230
|
+
readonly __hex: true;
|
|
231
|
+
}>, bigint>>;
|
|
232
|
+
from: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
233
|
+
readonly __hex: true;
|
|
234
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
235
|
+
readonly __hex: true;
|
|
236
|
+
}>>>;
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
xyoViewer_networkStakeStepRewardPotentialPositionLoss: {
|
|
240
|
+
params: {
|
|
241
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
242
|
+
block: z.ZodNumber;
|
|
243
|
+
step: z.ZodNumber;
|
|
244
|
+
}, z.core.$strip>, z.ZodNumber], null>]>;
|
|
245
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
246
|
+
block: z.ZodNumber;
|
|
247
|
+
step: z.ZodNumber;
|
|
248
|
+
}, z.core.$strip>, z.ZodNumber], null>]>;
|
|
249
|
+
};
|
|
250
|
+
result: {
|
|
251
|
+
to: z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
252
|
+
readonly __hex: true;
|
|
253
|
+
}>, bigint>>;
|
|
254
|
+
from: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
255
|
+
readonly __hex: true;
|
|
256
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
257
|
+
readonly __hex: true;
|
|
258
|
+
}>>>;
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
xyoViewer_networkStakeStepRewardForStep: {
|
|
262
|
+
params: {
|
|
263
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
264
|
+
block: z.ZodNumber;
|
|
265
|
+
step: z.ZodNumber;
|
|
266
|
+
}, z.core.$strip>], null>]>;
|
|
267
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
268
|
+
block: z.ZodNumber;
|
|
269
|
+
step: z.ZodNumber;
|
|
270
|
+
}, z.core.$strip>], null>]>;
|
|
271
|
+
};
|
|
272
|
+
result: {
|
|
273
|
+
to: z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
274
|
+
readonly __hex: true;
|
|
275
|
+
}>, bigint>>;
|
|
276
|
+
from: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
277
|
+
readonly __hex: true;
|
|
278
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
279
|
+
readonly __hex: true;
|
|
280
|
+
}>>>;
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
xyoViewer_networkStakeStepRewardRandomizer: {
|
|
284
|
+
params: {
|
|
285
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
286
|
+
block: z.ZodNumber;
|
|
287
|
+
step: z.ZodNumber;
|
|
288
|
+
}, z.core.$strip>], null>]>;
|
|
289
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
290
|
+
block: z.ZodNumber;
|
|
291
|
+
step: z.ZodNumber;
|
|
292
|
+
}, z.core.$strip>], null>]>;
|
|
293
|
+
};
|
|
294
|
+
result: {
|
|
295
|
+
to: z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
296
|
+
readonly __hex: true;
|
|
297
|
+
}>, bigint>>;
|
|
298
|
+
from: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
299
|
+
readonly __hex: true;
|
|
300
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
301
|
+
readonly __hex: true;
|
|
302
|
+
}>>>;
|
|
303
|
+
};
|
|
304
|
+
};
|
|
305
|
+
xyoViewer_networkStakeStepRewardStakerCount: {
|
|
306
|
+
params: {
|
|
307
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
308
|
+
block: z.ZodNumber;
|
|
309
|
+
step: z.ZodNumber;
|
|
310
|
+
}, z.core.$strip>], null>]>;
|
|
311
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
312
|
+
block: z.ZodNumber;
|
|
313
|
+
step: z.ZodNumber;
|
|
314
|
+
}, z.core.$strip>], null>]>;
|
|
315
|
+
};
|
|
316
|
+
result: {
|
|
317
|
+
to: z.ZodNumber;
|
|
318
|
+
from: z.ZodNumber;
|
|
319
|
+
};
|
|
320
|
+
};
|
|
321
|
+
xyoViewer_networkStakeStepRewardPoolShares: {
|
|
322
|
+
params: {
|
|
323
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
324
|
+
block: z.ZodNumber;
|
|
325
|
+
step: z.ZodNumber;
|
|
326
|
+
}, z.core.$strip>], null>]>;
|
|
327
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
328
|
+
block: z.ZodNumber;
|
|
329
|
+
step: z.ZodNumber;
|
|
330
|
+
}, z.core.$strip>], null>]>;
|
|
331
|
+
};
|
|
332
|
+
result: {
|
|
333
|
+
to: z.ZodRecord<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
334
|
+
readonly __hex: true;
|
|
335
|
+
}>, {
|
|
336
|
+
readonly __address: true;
|
|
337
|
+
}>, string>>, z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
338
|
+
readonly __hex: true;
|
|
339
|
+
}>, bigint>>>;
|
|
340
|
+
from: z.ZodRecord<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
23
341
|
readonly __hex: true;
|
|
24
342
|
}>, {
|
|
25
343
|
readonly __address: true;
|
|
26
|
-
}>, string>>, z.
|
|
344
|
+
}>, string>>, z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
345
|
+
readonly __hex: true;
|
|
346
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
347
|
+
readonly __hex: true;
|
|
348
|
+
}>>>>;
|
|
349
|
+
};
|
|
350
|
+
};
|
|
351
|
+
xyoViewer_networkStakeStepRewardForStepForPosition: {
|
|
352
|
+
params: {
|
|
353
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
354
|
+
block: z.ZodNumber;
|
|
355
|
+
step: z.ZodNumber;
|
|
356
|
+
}, z.core.$strip>, z.ZodNumber], null>]>;
|
|
357
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodObject<{
|
|
358
|
+
block: z.ZodNumber;
|
|
359
|
+
step: z.ZodNumber;
|
|
360
|
+
}, z.core.$strip>, z.ZodNumber], null>]>;
|
|
361
|
+
};
|
|
362
|
+
result: {
|
|
363
|
+
to: z.ZodTuple<[z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
364
|
+
readonly __hex: true;
|
|
365
|
+
}>, bigint>>, z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
366
|
+
readonly __hex: true;
|
|
367
|
+
}>, bigint>>], null>;
|
|
368
|
+
from: z.ZodTuple<[z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
369
|
+
readonly __hex: true;
|
|
370
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
371
|
+
readonly __hex: true;
|
|
372
|
+
}>>>, z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
373
|
+
readonly __hex: true;
|
|
374
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
375
|
+
readonly __hex: true;
|
|
376
|
+
}>>>], null>;
|
|
377
|
+
};
|
|
378
|
+
};
|
|
379
|
+
xyoViewer_accountBalance: {
|
|
380
|
+
params: {
|
|
381
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
382
|
+
readonly __hex: true;
|
|
383
|
+
}>, {
|
|
384
|
+
readonly __address: true;
|
|
385
|
+
}>, string>>], null>]>;
|
|
386
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
27
387
|
readonly __hex: true;
|
|
28
388
|
}>, {
|
|
29
389
|
readonly __address: true;
|
|
30
|
-
}>, string
|
|
390
|
+
}>, string>>], null>]>;
|
|
31
391
|
};
|
|
32
392
|
result: {
|
|
33
393
|
to: z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -46,28 +406,210 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
46
406
|
readonly __hex: true;
|
|
47
407
|
}>, {
|
|
48
408
|
readonly __address: true;
|
|
49
|
-
}>, string>>], null
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
409
|
+
}>, string>>], null>]>;
|
|
410
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
411
|
+
readonly __hex: true;
|
|
412
|
+
}>, {
|
|
413
|
+
readonly __address: true;
|
|
414
|
+
}>, string>>], null>]>;
|
|
415
|
+
};
|
|
416
|
+
result: {
|
|
417
|
+
to: z.ZodArray<z.ZodTuple<[z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
418
|
+
readonly __hex: true;
|
|
419
|
+
}>, {
|
|
420
|
+
readonly __hash: true;
|
|
421
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
422
|
+
readonly __hex: true;
|
|
423
|
+
}>, {
|
|
424
|
+
readonly __hash: true;
|
|
425
|
+
}>, unknown>>, z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
426
|
+
readonly __hex: true;
|
|
427
|
+
}>, {
|
|
428
|
+
readonly __hash: true;
|
|
429
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
430
|
+
readonly __hex: true;
|
|
431
|
+
}>, {
|
|
432
|
+
readonly __hash: true;
|
|
433
|
+
}>, unknown>>, z.ZodObject<{
|
|
434
|
+
schema: z.ZodLiteral<"network.xyo.transfer">;
|
|
435
|
+
epoch: z.ZodNumber;
|
|
436
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
437
|
+
readonly __hex: true;
|
|
438
|
+
}>, {
|
|
439
|
+
readonly __address: true;
|
|
440
|
+
}>, string>>;
|
|
441
|
+
transfers: z.ZodRecord<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
442
|
+
readonly __hex: true;
|
|
443
|
+
}>, {
|
|
444
|
+
readonly __address: true;
|
|
445
|
+
}>, string>>, z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
446
|
+
readonly __hex: true;
|
|
447
|
+
}>, bigint>>>;
|
|
448
|
+
}, z.core.$strict>], null>>;
|
|
449
|
+
from: z.ZodArray<z.ZodTuple<[z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
450
|
+
readonly __hex: true;
|
|
451
|
+
}>, {
|
|
452
|
+
readonly __hash: true;
|
|
453
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
454
|
+
readonly __hex: true;
|
|
455
|
+
}>, {
|
|
456
|
+
readonly __hash: true;
|
|
457
|
+
}>, unknown>>, z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
458
|
+
readonly __hex: true;
|
|
459
|
+
}>, {
|
|
460
|
+
readonly __hash: true;
|
|
461
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
462
|
+
readonly __hex: true;
|
|
463
|
+
}>, {
|
|
464
|
+
readonly __hash: true;
|
|
465
|
+
}>, unknown>>, z.ZodObject<{
|
|
466
|
+
schema: z.ZodLiteral<"network.xyo.transfer">;
|
|
467
|
+
epoch: z.ZodNumber;
|
|
468
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
469
|
+
readonly __hex: true;
|
|
470
|
+
}>, {
|
|
471
|
+
readonly __address: true;
|
|
472
|
+
}>, string>>;
|
|
473
|
+
transfers: z.ZodRecord<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
474
|
+
readonly __hex: true;
|
|
475
|
+
}>, {
|
|
476
|
+
readonly __address: true;
|
|
477
|
+
}>, string>>, z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
478
|
+
readonly __hex: true;
|
|
479
|
+
}>, bigint>>>;
|
|
480
|
+
}, z.core.$strict>], null>>;
|
|
481
|
+
};
|
|
482
|
+
};
|
|
483
|
+
xyoViewer_transferPairBalance: {
|
|
484
|
+
params: {
|
|
485
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
486
|
+
readonly __hex: true;
|
|
487
|
+
}>, {
|
|
488
|
+
readonly __address: true;
|
|
489
|
+
}>, string>>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
490
|
+
readonly __hex: true;
|
|
491
|
+
}>, {
|
|
492
|
+
readonly __address: true;
|
|
493
|
+
}>, string>>], null>], null>]>;
|
|
494
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
495
|
+
readonly __hex: true;
|
|
496
|
+
}>, {
|
|
497
|
+
readonly __address: true;
|
|
498
|
+
}>, string>>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
499
|
+
readonly __hex: true;
|
|
500
|
+
}>, {
|
|
501
|
+
readonly __address: true;
|
|
502
|
+
}>, string>>], null>], null>]>;
|
|
503
|
+
};
|
|
504
|
+
result: {
|
|
505
|
+
to: z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
506
|
+
readonly __hex: true;
|
|
507
|
+
}>, bigint>>;
|
|
508
|
+
from: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
509
|
+
readonly __hex: true;
|
|
510
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
511
|
+
readonly __hex: true;
|
|
512
|
+
}>>>;
|
|
513
|
+
};
|
|
514
|
+
};
|
|
515
|
+
xyoViewer_transferPairBalanceHistory: {
|
|
516
|
+
params: {
|
|
517
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
518
|
+
readonly __hex: true;
|
|
519
|
+
}>, {
|
|
520
|
+
readonly __address: true;
|
|
521
|
+
}>, string>>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
522
|
+
readonly __hex: true;
|
|
523
|
+
}>, {
|
|
524
|
+
readonly __address: true;
|
|
525
|
+
}>, string>>], null>], null>]>;
|
|
526
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
527
|
+
readonly __hex: true;
|
|
528
|
+
}>, {
|
|
529
|
+
readonly __address: true;
|
|
530
|
+
}>, string>>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
531
|
+
readonly __hex: true;
|
|
532
|
+
}>, {
|
|
533
|
+
readonly __address: true;
|
|
534
|
+
}>, string>>], null>], null>]>;
|
|
535
|
+
};
|
|
536
|
+
result: {
|
|
537
|
+
to: z.ZodArray<z.ZodTuple<[z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
538
|
+
readonly __hex: true;
|
|
539
|
+
}>, {
|
|
540
|
+
readonly __hash: true;
|
|
541
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
542
|
+
readonly __hex: true;
|
|
543
|
+
}>, {
|
|
544
|
+
readonly __hash: true;
|
|
545
|
+
}>, unknown>>, z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
546
|
+
readonly __hex: true;
|
|
547
|
+
}>, {
|
|
548
|
+
readonly __hash: true;
|
|
549
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
550
|
+
readonly __hex: true;
|
|
551
|
+
}>, {
|
|
552
|
+
readonly __hash: true;
|
|
553
|
+
}>, unknown>>, z.ZodObject<{
|
|
554
|
+
schema: z.ZodString;
|
|
555
|
+
}, z.core.$catchall<z.ZodAny>>], null>>;
|
|
556
|
+
from: z.ZodArray<z.ZodTuple<[z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
557
|
+
readonly __hex: true;
|
|
558
|
+
}>, {
|
|
559
|
+
readonly __hash: true;
|
|
560
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
561
|
+
readonly __hex: true;
|
|
562
|
+
}>, {
|
|
563
|
+
readonly __hash: true;
|
|
564
|
+
}>, unknown>>, z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
565
|
+
readonly __hex: true;
|
|
566
|
+
}>, {
|
|
567
|
+
readonly __hash: true;
|
|
568
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
569
|
+
readonly __hex: true;
|
|
570
|
+
}>, {
|
|
571
|
+
readonly __hash: true;
|
|
572
|
+
}>, unknown>>, z.ZodObject<{
|
|
573
|
+
schema: z.ZodString;
|
|
574
|
+
}, z.core.$catchall<z.ZodAny>>], null>>;
|
|
575
|
+
};
|
|
576
|
+
};
|
|
577
|
+
xyoViewer_transferBalance: {
|
|
578
|
+
params: {
|
|
579
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
580
|
+
readonly __hex: true;
|
|
581
|
+
}>, {
|
|
582
|
+
readonly __address: true;
|
|
583
|
+
}>, string>>], null>]>;
|
|
584
|
+
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
585
|
+
readonly __hex: true;
|
|
586
|
+
}>, {
|
|
587
|
+
readonly __address: true;
|
|
588
|
+
}>, string>>], null>]>;
|
|
589
|
+
};
|
|
590
|
+
result: {
|
|
591
|
+
to: z.ZodPipe<z.ZodBigInt, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
592
|
+
readonly __hex: true;
|
|
593
|
+
}>, bigint>>;
|
|
594
|
+
from: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
595
|
+
readonly __hex: true;
|
|
596
|
+
}>, string>>, z.ZodTransform<bigint, import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
597
|
+
readonly __hex: true;
|
|
598
|
+
}>>>;
|
|
599
|
+
};
|
|
600
|
+
};
|
|
601
|
+
xyoViewer_transferBalanceHistory: {
|
|
602
|
+
params: {
|
|
603
|
+
to: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
604
|
+
readonly __hex: true;
|
|
605
|
+
}>, {
|
|
606
|
+
readonly __address: true;
|
|
607
|
+
}>, string>>], null>]>;
|
|
58
608
|
from: z.ZodUnion<readonly [z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
59
609
|
readonly __hex: true;
|
|
60
610
|
}>, {
|
|
61
611
|
readonly __address: true;
|
|
62
|
-
}>, string>>], null
|
|
63
|
-
readonly __hex: true;
|
|
64
|
-
}>, {
|
|
65
|
-
readonly __address: true;
|
|
66
|
-
}>, string>>, z.ZodNumber], null>, z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
67
|
-
readonly __hex: true;
|
|
68
|
-
}>, {
|
|
69
|
-
readonly __address: true;
|
|
70
|
-
}>, string>>, z.ZodNumber, z.ZodBoolean], null>]>;
|
|
612
|
+
}>, string>>], null>]>;
|
|
71
613
|
};
|
|
72
614
|
result: {
|
|
73
615
|
to: z.ZodArray<z.ZodTuple<[z.ZodType<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -205,7 +747,7 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
205
747
|
}>>>>;
|
|
206
748
|
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
207
749
|
block: z.ZodNumber;
|
|
208
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
750
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
209
751
|
previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
210
752
|
readonly __hex: true;
|
|
211
753
|
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -294,7 +836,7 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
294
836
|
}>>>>;
|
|
295
837
|
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
296
838
|
block: z.ZodNumber;
|
|
297
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
839
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
298
840
|
previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
299
841
|
readonly __hex: true;
|
|
300
842
|
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -391,7 +933,7 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
391
933
|
}>>>>;
|
|
392
934
|
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
393
935
|
block: z.ZodNumber;
|
|
394
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
936
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
395
937
|
previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
396
938
|
readonly __hex: true;
|
|
397
939
|
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -480,7 +1022,7 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
480
1022
|
}>>>>;
|
|
481
1023
|
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
482
1024
|
block: z.ZodNumber;
|
|
483
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
1025
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
484
1026
|
previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
485
1027
|
readonly __hex: true;
|
|
486
1028
|
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -593,7 +1135,7 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
593
1135
|
}>>>>;
|
|
594
1136
|
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
595
1137
|
block: z.ZodNumber;
|
|
596
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
1138
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
597
1139
|
previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
598
1140
|
readonly __hex: true;
|
|
599
1141
|
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -682,7 +1224,7 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
682
1224
|
}>>>>;
|
|
683
1225
|
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
684
1226
|
block: z.ZodNumber;
|
|
685
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
1227
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
686
1228
|
previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
687
1229
|
readonly __hex: true;
|
|
688
1230
|
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -815,7 +1357,7 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
815
1357
|
}>>>>;
|
|
816
1358
|
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
817
1359
|
block: z.ZodNumber;
|
|
818
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
1360
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
819
1361
|
previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
820
1362
|
readonly __hex: true;
|
|
821
1363
|
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -904,7 +1446,7 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
904
1446
|
}>>>>;
|
|
905
1447
|
_sequence: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
906
1448
|
block: z.ZodNumber;
|
|
907
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
1449
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
908
1450
|
previous: z.ZodNullable<z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
909
1451
|
readonly __hex: true;
|
|
910
1452
|
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -976,7 +1518,7 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
976
1518
|
}>, string>>>;
|
|
977
1519
|
};
|
|
978
1520
|
};
|
|
979
|
-
|
|
1521
|
+
xyoViewer_stakeByStaker: {
|
|
980
1522
|
params: {
|
|
981
1523
|
to: z.ZodTuple<[z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
982
1524
|
readonly __hex: true;
|
|
@@ -991,8 +1533,8 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
991
1533
|
};
|
|
992
1534
|
result: {
|
|
993
1535
|
to: z.ZodPipe<z.ZodObject<{
|
|
994
|
-
addBlock: z.ZodNumber;
|
|
995
1536
|
amount: z.ZodBigInt;
|
|
1537
|
+
addBlock: z.ZodNumber;
|
|
996
1538
|
id: z.ZodNumber;
|
|
997
1539
|
removeBlock: z.ZodNumber;
|
|
998
1540
|
staked: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -1025,8 +1567,8 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1025
1567
|
}>;
|
|
1026
1568
|
withdrawBlock: number;
|
|
1027
1569
|
}, {
|
|
1028
|
-
addBlock: number;
|
|
1029
1570
|
amount: bigint;
|
|
1571
|
+
addBlock: number;
|
|
1030
1572
|
id: number;
|
|
1031
1573
|
removeBlock: number;
|
|
1032
1574
|
staked: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -1043,7 +1585,6 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1043
1585
|
}>>;
|
|
1044
1586
|
from: z.ZodPipe<z.ZodObject<{
|
|
1045
1587
|
addBlock: z.ZodNumber;
|
|
1046
|
-
amount: z.ZodBigInt;
|
|
1047
1588
|
id: z.ZodNumber;
|
|
1048
1589
|
removeBlock: z.ZodNumber;
|
|
1049
1590
|
staked: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -1057,6 +1598,11 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1057
1598
|
readonly __address: true;
|
|
1058
1599
|
}>, string>>;
|
|
1059
1600
|
withdrawBlock: z.ZodNumber;
|
|
1601
|
+
amount: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1602
|
+
readonly __hex: true;
|
|
1603
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1604
|
+
readonly __hex: true;
|
|
1605
|
+
}>, unknown>>;
|
|
1060
1606
|
}, z.core.$strip>, z.ZodTransform<{
|
|
1061
1607
|
addBlock: number;
|
|
1062
1608
|
amount: import("@xyo-network/xl1-protocol").AttoXL1;
|
|
@@ -1075,7 +1621,6 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1075
1621
|
withdrawBlock: number;
|
|
1076
1622
|
}, {
|
|
1077
1623
|
addBlock: number;
|
|
1078
|
-
amount: bigint;
|
|
1079
1624
|
id: number;
|
|
1080
1625
|
removeBlock: number;
|
|
1081
1626
|
staked: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -1089,6 +1634,9 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1089
1634
|
readonly __address: true;
|
|
1090
1635
|
}>;
|
|
1091
1636
|
withdrawBlock: number;
|
|
1637
|
+
amount: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1638
|
+
readonly __hex: true;
|
|
1639
|
+
}>;
|
|
1092
1640
|
}>>;
|
|
1093
1641
|
};
|
|
1094
1642
|
};
|
|
@@ -1099,8 +1647,8 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1099
1647
|
};
|
|
1100
1648
|
result: {
|
|
1101
1649
|
to: z.ZodPipe<z.ZodObject<{
|
|
1102
|
-
addBlock: z.ZodNumber;
|
|
1103
1650
|
amount: z.ZodBigInt;
|
|
1651
|
+
addBlock: z.ZodNumber;
|
|
1104
1652
|
id: z.ZodNumber;
|
|
1105
1653
|
removeBlock: z.ZodNumber;
|
|
1106
1654
|
staked: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -1133,8 +1681,8 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1133
1681
|
}>;
|
|
1134
1682
|
withdrawBlock: number;
|
|
1135
1683
|
}, {
|
|
1136
|
-
addBlock: number;
|
|
1137
1684
|
amount: bigint;
|
|
1685
|
+
addBlock: number;
|
|
1138
1686
|
id: number;
|
|
1139
1687
|
removeBlock: number;
|
|
1140
1688
|
staked: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -1151,7 +1699,6 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1151
1699
|
}>>;
|
|
1152
1700
|
from: z.ZodPipe<z.ZodObject<{
|
|
1153
1701
|
addBlock: z.ZodNumber;
|
|
1154
|
-
amount: z.ZodBigInt;
|
|
1155
1702
|
id: z.ZodNumber;
|
|
1156
1703
|
removeBlock: z.ZodNumber;
|
|
1157
1704
|
staked: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -1165,6 +1712,11 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1165
1712
|
readonly __address: true;
|
|
1166
1713
|
}>, string>>;
|
|
1167
1714
|
withdrawBlock: z.ZodNumber;
|
|
1715
|
+
amount: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1716
|
+
readonly __hex: true;
|
|
1717
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1718
|
+
readonly __hex: true;
|
|
1719
|
+
}>, unknown>>;
|
|
1168
1720
|
}, z.core.$strip>, z.ZodTransform<{
|
|
1169
1721
|
addBlock: number;
|
|
1170
1722
|
amount: import("@xyo-network/xl1-protocol").AttoXL1;
|
|
@@ -1183,7 +1735,6 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1183
1735
|
withdrawBlock: number;
|
|
1184
1736
|
}, {
|
|
1185
1737
|
addBlock: number;
|
|
1186
|
-
amount: bigint;
|
|
1187
1738
|
id: number;
|
|
1188
1739
|
removeBlock: number;
|
|
1189
1740
|
staked: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
@@ -1197,6 +1748,9 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1197
1748
|
readonly __address: true;
|
|
1198
1749
|
}>;
|
|
1199
1750
|
withdrawBlock: number;
|
|
1751
|
+
amount: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1752
|
+
readonly __hex: true;
|
|
1753
|
+
}>;
|
|
1200
1754
|
}>>;
|
|
1201
1755
|
};
|
|
1202
1756
|
};
|
|
@@ -1214,14 +1768,16 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1214
1768
|
}>, string>>], null>;
|
|
1215
1769
|
};
|
|
1216
1770
|
result: {
|
|
1217
|
-
to: z.ZodPipe<z.
|
|
1218
|
-
readonly __hex: true;
|
|
1219
|
-
}>, bigint>>;
|
|
1220
|
-
from: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1771
|
+
to: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1221
1772
|
readonly __hex: true;
|
|
1222
|
-
}>,
|
|
1773
|
+
}>, {
|
|
1774
|
+
readonly __address: true;
|
|
1775
|
+
}>, string>>>;
|
|
1776
|
+
from: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1223
1777
|
readonly __hex: true;
|
|
1224
|
-
}
|
|
1778
|
+
}>, {
|
|
1779
|
+
readonly __address: true;
|
|
1780
|
+
}>, string>>>;
|
|
1225
1781
|
};
|
|
1226
1782
|
};
|
|
1227
1783
|
xyoViewer_stakesByStaker: {
|
|
@@ -1238,8 +1794,112 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1238
1794
|
}>, string>>], null>;
|
|
1239
1795
|
};
|
|
1240
1796
|
result: {
|
|
1241
|
-
to: z.
|
|
1242
|
-
|
|
1797
|
+
to: z.ZodArray<z.ZodPipe<z.ZodObject<{
|
|
1798
|
+
amount: z.ZodBigInt;
|
|
1799
|
+
addBlock: z.ZodNumber;
|
|
1800
|
+
id: z.ZodNumber;
|
|
1801
|
+
removeBlock: z.ZodNumber;
|
|
1802
|
+
staked: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1803
|
+
readonly __hex: true;
|
|
1804
|
+
}>, {
|
|
1805
|
+
readonly __address: true;
|
|
1806
|
+
}>, string>>;
|
|
1807
|
+
staker: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1808
|
+
readonly __hex: true;
|
|
1809
|
+
}>, {
|
|
1810
|
+
readonly __address: true;
|
|
1811
|
+
}>, string>>;
|
|
1812
|
+
withdrawBlock: z.ZodNumber;
|
|
1813
|
+
}, z.core.$strip>, z.ZodTransform<{
|
|
1814
|
+
addBlock: number;
|
|
1815
|
+
amount: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1816
|
+
readonly __hex: true;
|
|
1817
|
+
}>;
|
|
1818
|
+
id: number;
|
|
1819
|
+
removeBlock: number;
|
|
1820
|
+
staked: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1821
|
+
readonly __hex: true;
|
|
1822
|
+
}>, {
|
|
1823
|
+
readonly __address: true;
|
|
1824
|
+
}>;
|
|
1825
|
+
staker: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1826
|
+
readonly __hex: true;
|
|
1827
|
+
}>, {
|
|
1828
|
+
readonly __address: true;
|
|
1829
|
+
}>;
|
|
1830
|
+
withdrawBlock: number;
|
|
1831
|
+
}, {
|
|
1832
|
+
amount: bigint;
|
|
1833
|
+
addBlock: number;
|
|
1834
|
+
id: number;
|
|
1835
|
+
removeBlock: number;
|
|
1836
|
+
staked: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1837
|
+
readonly __hex: true;
|
|
1838
|
+
}>, {
|
|
1839
|
+
readonly __address: true;
|
|
1840
|
+
}>;
|
|
1841
|
+
staker: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1842
|
+
readonly __hex: true;
|
|
1843
|
+
}>, {
|
|
1844
|
+
readonly __address: true;
|
|
1845
|
+
}>;
|
|
1846
|
+
withdrawBlock: number;
|
|
1847
|
+
}>>>;
|
|
1848
|
+
from: z.ZodArray<z.ZodPipe<z.ZodObject<{
|
|
1849
|
+
addBlock: z.ZodNumber;
|
|
1850
|
+
id: z.ZodNumber;
|
|
1851
|
+
removeBlock: z.ZodNumber;
|
|
1852
|
+
staked: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1853
|
+
readonly __hex: true;
|
|
1854
|
+
}>, {
|
|
1855
|
+
readonly __address: true;
|
|
1856
|
+
}>, string>>;
|
|
1857
|
+
staker: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1858
|
+
readonly __hex: true;
|
|
1859
|
+
}>, {
|
|
1860
|
+
readonly __address: true;
|
|
1861
|
+
}>, string>>;
|
|
1862
|
+
withdrawBlock: z.ZodNumber;
|
|
1863
|
+
amount: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1864
|
+
readonly __hex: true;
|
|
1865
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1866
|
+
readonly __hex: true;
|
|
1867
|
+
}>, unknown>>;
|
|
1868
|
+
}, z.core.$strip>, z.ZodTransform<{
|
|
1869
|
+
addBlock: number;
|
|
1870
|
+
amount: import("@xyo-network/xl1-protocol").AttoXL1;
|
|
1871
|
+
id: number;
|
|
1872
|
+
removeBlock: number;
|
|
1873
|
+
staked: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1874
|
+
readonly __hex: true;
|
|
1875
|
+
}>, {
|
|
1876
|
+
readonly __address: true;
|
|
1877
|
+
}>;
|
|
1878
|
+
staker: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1879
|
+
readonly __hex: true;
|
|
1880
|
+
}>, {
|
|
1881
|
+
readonly __address: true;
|
|
1882
|
+
}>;
|
|
1883
|
+
withdrawBlock: number;
|
|
1884
|
+
}, {
|
|
1885
|
+
addBlock: number;
|
|
1886
|
+
id: number;
|
|
1887
|
+
removeBlock: number;
|
|
1888
|
+
staked: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1889
|
+
readonly __hex: true;
|
|
1890
|
+
}>, {
|
|
1891
|
+
readonly __address: true;
|
|
1892
|
+
}>;
|
|
1893
|
+
staker: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1894
|
+
readonly __hex: true;
|
|
1895
|
+
}>, {
|
|
1896
|
+
readonly __address: true;
|
|
1897
|
+
}>;
|
|
1898
|
+
withdrawBlock: number;
|
|
1899
|
+
amount: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1900
|
+
readonly __hex: true;
|
|
1901
|
+
}>;
|
|
1902
|
+
}>>>;
|
|
1243
1903
|
};
|
|
1244
1904
|
};
|
|
1245
1905
|
xyoViewer_stakesByStaked: {
|
|
@@ -1256,8 +1916,112 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1256
1916
|
}>, string>>], null>;
|
|
1257
1917
|
};
|
|
1258
1918
|
result: {
|
|
1259
|
-
to: z.
|
|
1260
|
-
|
|
1919
|
+
to: z.ZodArray<z.ZodPipe<z.ZodObject<{
|
|
1920
|
+
amount: z.ZodBigInt;
|
|
1921
|
+
addBlock: z.ZodNumber;
|
|
1922
|
+
id: z.ZodNumber;
|
|
1923
|
+
removeBlock: z.ZodNumber;
|
|
1924
|
+
staked: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1925
|
+
readonly __hex: true;
|
|
1926
|
+
}>, {
|
|
1927
|
+
readonly __address: true;
|
|
1928
|
+
}>, string>>;
|
|
1929
|
+
staker: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1930
|
+
readonly __hex: true;
|
|
1931
|
+
}>, {
|
|
1932
|
+
readonly __address: true;
|
|
1933
|
+
}>, string>>;
|
|
1934
|
+
withdrawBlock: z.ZodNumber;
|
|
1935
|
+
}, z.core.$strip>, z.ZodTransform<{
|
|
1936
|
+
addBlock: number;
|
|
1937
|
+
amount: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1938
|
+
readonly __hex: true;
|
|
1939
|
+
}>;
|
|
1940
|
+
id: number;
|
|
1941
|
+
removeBlock: number;
|
|
1942
|
+
staked: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1943
|
+
readonly __hex: true;
|
|
1944
|
+
}>, {
|
|
1945
|
+
readonly __address: true;
|
|
1946
|
+
}>;
|
|
1947
|
+
staker: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1948
|
+
readonly __hex: true;
|
|
1949
|
+
}>, {
|
|
1950
|
+
readonly __address: true;
|
|
1951
|
+
}>;
|
|
1952
|
+
withdrawBlock: number;
|
|
1953
|
+
}, {
|
|
1954
|
+
amount: bigint;
|
|
1955
|
+
addBlock: number;
|
|
1956
|
+
id: number;
|
|
1957
|
+
removeBlock: number;
|
|
1958
|
+
staked: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1959
|
+
readonly __hex: true;
|
|
1960
|
+
}>, {
|
|
1961
|
+
readonly __address: true;
|
|
1962
|
+
}>;
|
|
1963
|
+
staker: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1964
|
+
readonly __hex: true;
|
|
1965
|
+
}>, {
|
|
1966
|
+
readonly __address: true;
|
|
1967
|
+
}>;
|
|
1968
|
+
withdrawBlock: number;
|
|
1969
|
+
}>>>;
|
|
1970
|
+
from: z.ZodArray<z.ZodPipe<z.ZodObject<{
|
|
1971
|
+
addBlock: z.ZodNumber;
|
|
1972
|
+
id: z.ZodNumber;
|
|
1973
|
+
removeBlock: z.ZodNumber;
|
|
1974
|
+
staked: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1975
|
+
readonly __hex: true;
|
|
1976
|
+
}>, {
|
|
1977
|
+
readonly __address: true;
|
|
1978
|
+
}>, string>>;
|
|
1979
|
+
staker: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1980
|
+
readonly __hex: true;
|
|
1981
|
+
}>, {
|
|
1982
|
+
readonly __address: true;
|
|
1983
|
+
}>, string>>;
|
|
1984
|
+
withdrawBlock: z.ZodNumber;
|
|
1985
|
+
amount: z.ZodType<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1986
|
+
readonly __hex: true;
|
|
1987
|
+
}>, unknown, z.core.$ZodTypeInternals<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1988
|
+
readonly __hex: true;
|
|
1989
|
+
}>, unknown>>;
|
|
1990
|
+
}, z.core.$strip>, z.ZodTransform<{
|
|
1991
|
+
addBlock: number;
|
|
1992
|
+
amount: import("@xyo-network/xl1-protocol").AttoXL1;
|
|
1993
|
+
id: number;
|
|
1994
|
+
removeBlock: number;
|
|
1995
|
+
staked: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
1996
|
+
readonly __hex: true;
|
|
1997
|
+
}>, {
|
|
1998
|
+
readonly __address: true;
|
|
1999
|
+
}>;
|
|
2000
|
+
staker: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
2001
|
+
readonly __hex: true;
|
|
2002
|
+
}>, {
|
|
2003
|
+
readonly __address: true;
|
|
2004
|
+
}>;
|
|
2005
|
+
withdrawBlock: number;
|
|
2006
|
+
}, {
|
|
2007
|
+
addBlock: number;
|
|
2008
|
+
id: number;
|
|
2009
|
+
removeBlock: number;
|
|
2010
|
+
staked: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
2011
|
+
readonly __hex: true;
|
|
2012
|
+
}>, {
|
|
2013
|
+
readonly __address: true;
|
|
2014
|
+
}>;
|
|
2015
|
+
staker: import("@xylabs/typeof").Brand<import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
2016
|
+
readonly __hex: true;
|
|
2017
|
+
}>, {
|
|
2018
|
+
readonly __address: true;
|
|
2019
|
+
}>;
|
|
2020
|
+
withdrawBlock: number;
|
|
2021
|
+
amount: import("@xylabs/typeof").Brand<Lowercase<string>, {
|
|
2022
|
+
readonly __hex: true;
|
|
2023
|
+
}>;
|
|
2024
|
+
}>>>;
|
|
1261
2025
|
};
|
|
1262
2026
|
};
|
|
1263
2027
|
xyoViewer_transactionByBlockHashAndIndex: {
|
|
@@ -1378,8 +2142,8 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1378
2142
|
readonly __hex: true;
|
|
1379
2143
|
}>, unknown>>;
|
|
1380
2144
|
}, z.core.$strip>;
|
|
1381
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
1382
|
-
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
2145
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
2146
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
1383
2147
|
script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
1384
2148
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
1385
2149
|
schema: z.ZodString;
|
|
@@ -1480,8 +2244,8 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1480
2244
|
readonly __hex: true;
|
|
1481
2245
|
}>, unknown>>;
|
|
1482
2246
|
}, z.core.$strip>;
|
|
1483
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
1484
|
-
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
2247
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
2248
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
1485
2249
|
script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
1486
2250
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
1487
2251
|
schema: z.ZodString;
|
|
@@ -1590,8 +2354,8 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1590
2354
|
readonly __hex: true;
|
|
1591
2355
|
}>, unknown>>;
|
|
1592
2356
|
}, z.core.$strip>;
|
|
1593
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
1594
|
-
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
2357
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
2358
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
1595
2359
|
script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
1596
2360
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
1597
2361
|
schema: z.ZodString;
|
|
@@ -1692,8 +2456,8 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1692
2456
|
readonly __hex: true;
|
|
1693
2457
|
}>, unknown>>;
|
|
1694
2458
|
}, z.core.$strip>;
|
|
1695
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
1696
|
-
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
2459
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
2460
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
1697
2461
|
script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
1698
2462
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
1699
2463
|
schema: z.ZodString;
|
|
@@ -1818,8 +2582,8 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1818
2582
|
readonly __hex: true;
|
|
1819
2583
|
}>, unknown>>;
|
|
1820
2584
|
}, z.core.$strip>;
|
|
1821
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
1822
|
-
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
2585
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
2586
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
1823
2587
|
script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
1824
2588
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
1825
2589
|
schema: z.ZodString;
|
|
@@ -1920,8 +2684,8 @@ export declare const XyoViewerRpcSchemas: {
|
|
|
1920
2684
|
readonly __hex: true;
|
|
1921
2685
|
}>, unknown>>;
|
|
1922
2686
|
}, z.core.$strip>;
|
|
1923
|
-
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
1924
|
-
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").
|
|
2687
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
2688
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/xl1-protocol").ChainId, string>>;
|
|
1925
2689
|
script: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
1926
2690
|
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
1927
2691
|
schema: z.ZodString;
|