@xyo-network/xl1-schema 4.0.5 → 4.0.7
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/neutral/index.mjs +5 -5
- package/dist/neutral/index.mjs.map +1 -1
- package/package.json +10 -8
package/dist/neutral/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/boundwitness/BlockBoundWitness.ts
|
|
2
|
-
import { AddressRegEx, HashRegEx } from "@
|
|
2
|
+
import { AddressRegEx, HashRegEx } from "@ariestools/sdk";
|
|
3
3
|
import {
|
|
4
4
|
boundWitnessJsonSchema,
|
|
5
5
|
boundWitnessProperties,
|
|
@@ -52,7 +52,7 @@ import {
|
|
|
52
52
|
} from "@xyo-network/sdk-js";
|
|
53
53
|
|
|
54
54
|
// src/StorageMeta.ts
|
|
55
|
-
import { HashRegEx as HashRegEx2, HexRegEx } from "@
|
|
55
|
+
import { HashRegEx as HashRegEx2, HexRegEx } from "@ariestools/sdk";
|
|
56
56
|
var StorageMetaJsonSchema = {
|
|
57
57
|
$id: "https://schemas.xyo.network/2.0/storage-meta",
|
|
58
58
|
properties: {
|
|
@@ -84,7 +84,7 @@ var blockBoundWitnessWithStorageMetaSchemaBuilder = new PayloadBuilder2({ schema
|
|
|
84
84
|
var BlockBoundWitnessWithStorageMetaSchemaPayload = blockBoundWitnessWithStorageMetaSchemaBuilder.fields({ definition: BlockBoundWitnessWithStorageMetaJsonSchema }).build();
|
|
85
85
|
|
|
86
86
|
// src/boundwitness/TransactionBoundWitness.ts
|
|
87
|
-
import { AddressRegEx as AddressRegEx2 } from "@
|
|
87
|
+
import { AddressRegEx as AddressRegEx2 } from "@ariestools/sdk";
|
|
88
88
|
import {
|
|
89
89
|
boundWitnessJsonSchema as boundWitnessJsonSchema3,
|
|
90
90
|
BoundWitnessSchema as BoundWitnessSchema3,
|
|
@@ -135,7 +135,7 @@ var transactionBoundWitnessSchemaBuilder = new PayloadBuilder3({ schema: SchemaS
|
|
|
135
135
|
var TransactionBoundWitnessSchemaPayload = transactionBoundWitnessSchemaBuilder.fields({ definition: TransactionBoundWitnessJsonSchema }).build();
|
|
136
136
|
|
|
137
137
|
// src/boundwitness/TransactionBoundWitnessWithStorageMeta.ts
|
|
138
|
-
import { AddressRegEx as AddressRegEx3 } from "@
|
|
138
|
+
import { AddressRegEx as AddressRegEx3 } from "@ariestools/sdk";
|
|
139
139
|
import {
|
|
140
140
|
boundWitnessJsonSchema as boundWitnessJsonSchema4,
|
|
141
141
|
BoundWitnessSchema as BoundWitnessSchema4,
|
|
@@ -187,7 +187,7 @@ var chainStakeIntentPayloadJsonSchemaBuilder = new PayloadBuilder5({ schema: Sch
|
|
|
187
187
|
var ChainStakeIntentPayloadJsonSchemaPayload = chainStakeIntentPayloadJsonSchemaBuilder.fields({ definition: ChainStakeIntentPayloadJsonSchema }).build();
|
|
188
188
|
|
|
189
189
|
// src/payload/HashPayload.ts
|
|
190
|
-
import { HashRegEx as HashRegEx3 } from "@
|
|
190
|
+
import { HashRegEx as HashRegEx3 } from "@ariestools/sdk";
|
|
191
191
|
import {
|
|
192
192
|
PayloadBuilder as PayloadBuilder6,
|
|
193
193
|
payloadJsonSchema as payloadJsonSchema2,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/boundwitness/BlockBoundWitness.ts", "../../src/mergeJsonSchemaRequired.ts", "../../src/boundwitness/BlockBoundWitnessWithStorageMeta.ts", "../../src/StorageMeta.ts", "../../src/boundwitness/TransactionBoundWitness.ts", "../../src/Executable.ts", "../../src/boundwitness/TransactionBoundWitnessWithStorageMeta.ts", "../../src/payload/ChainStakeIntent.ts", "../../src/payload/HashPayload.ts", "../../src/payload/TransferPayload.ts"],
|
|
4
|
-
"sourcesContent": ["import { AddressRegEx, HashRegEx } from '@xylabs/sdk'\nimport type { SchemaPayload } from '@xyo-network/sdk-js'\nimport {\n boundWitnessJsonSchema, boundWitnessProperties, BoundWitnessSchema,\n PayloadBuilder, SchemaSchema,\n} from '@xyo-network/sdk-js'\nimport type { BlockBoundWitness } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\n\n/** JSON schema for validating BlockBoundWitness payloads. */\nexport const BlockBoundWitnessJsonSchema: JSONSchemaType<BlockBoundWitness> = {\n ...boundWitnessJsonSchema,\n $id: 'https://schemas.xyo.network/2.0/block',\n properties: {\n ...boundWitnessProperties,\n block: { type: 'integer' },\n chain: { type: 'string', pattern: AddressRegEx.source },\n previous: {\n type: 'string', pattern: HashRegEx.source, nullable: true,\n },\n step_hashes: {\n items: { type: 'string', pattern: HashRegEx.source },\n type: 'array',\n },\n $epoch: { type: 'integer' },\n schema: { type: 'string', pattern: BoundWitnessSchema },\n },\n\n required: mergeJsonSchemaRequired<BlockBoundWitness>(boundWitnessJsonSchema.required, 'block', 'chain', 'step_hashes', 'previous', '$epoch'),\n type: 'object',\n} as const\n\n/** Pre-built schema payload for BlockBoundWitness validation. */\nconst blockBoundWitnessSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const BlockBoundWitnessSchemaPayload = blockBoundWitnessSchemaBuilder\n .fields({ definition: BlockBoundWitnessJsonSchema }).build()\n", "import type { JSONSchemaType } from 'ajv'\n\nexport const asRequiredStrings = (required: unknown): readonly string[] => {\n if (typeof required === 'string') return [required]\n if (!Array.isArray(required)) return []\n return required.filter((item): item is string => typeof item === 'string')\n}\n\n/** Merge JSON schema `required` arrays without spreading untyped sdk-js values. */\nexport const mergeJsonSchemaRequired = <T>(\n ...groups: readonly unknown[]\n): JSONSchemaType<T> extends { required: infer R } ? R : never => (\n [...new Set(groups.flatMap(asRequiredStrings))] as JSONSchemaType<T> extends { required: infer R } ? R : never\n)\n", "import type { SchemaPayload, WithStorageMeta } from '@xyo-network/sdk-js'\nimport {\n boundWitnessJsonSchema, boundWitnessProperties, BoundWitnessSchema,\n PayloadBuilder, SchemaSchema,\n} from '@xyo-network/sdk-js'\nimport type { BlockBoundWitness } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\nimport { StorageMetaJsonSchema } from '../StorageMeta.ts'\nimport { BlockBoundWitnessJsonSchema } from './BlockBoundWitness.ts'\n\n/** JSON schema for validating BlockBoundWitness payloads including storage metadata. */\nexport const BlockBoundWitnessWithStorageMetaJsonSchema: JSONSchemaType<WithStorageMeta<BlockBoundWitness>> = {\n $id: 'https://schemas.xyo.network/2.0/block-with-storage-meta',\n properties: {\n ...boundWitnessProperties,\n ...BlockBoundWitnessJsonSchema.properties,\n ...StorageMetaJsonSchema.properties,\n schema: { type: 'string', pattern: BoundWitnessSchema },\n },\n\n required: mergeJsonSchemaRequired<WithStorageMeta<BlockBoundWitness>>(\n boundWitnessJsonSchema.required,\n BlockBoundWitnessJsonSchema.required,\n StorageMetaJsonSchema.required,\n ),\n type: 'object',\n} as const\n\n/** Pre-built schema payload for BlockBoundWitness with storage meta validation. */\nconst blockBoundWitnessWithStorageMetaSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const BlockBoundWitnessWithStorageMetaSchemaPayload = blockBoundWitnessWithStorageMetaSchemaBuilder\n .fields({ definition: BlockBoundWitnessWithStorageMetaJsonSchema }).build()\n", "import { HashRegEx, HexRegEx } from '@xylabs/sdk'\nimport type { StorageMeta } from '@xyo-network/sdk-js'\nimport type { JSONSchemaType } from 'ajv'\n\n/** JSON schema for validating storage metadata fields (_sequence, _hash, _dataHash). */\nexport const StorageMetaJsonSchema: JSONSchemaType<StorageMeta> = {\n $id: 'https://schemas.xyo.network/2.0/storage-meta',\n properties: {\n _sequence: { type: 'string', pattern: HexRegEx.source },\n _hash: { type: 'string', pattern: HashRegEx.source },\n _dataHash: { type: 'string', pattern: HashRegEx.source },\n },\n required: ['_sequence', '_hash', '_dataHash'],\n type: 'object',\n} as const\n", "import { AddressRegEx } from '@xylabs/sdk'\nimport type { SchemaPayload } from '@xyo-network/sdk-js'\nimport {\n boundWitnessJsonSchema, BoundWitnessSchema,\n PayloadBuilder, SchemaSchema,\n Uint256RegEx, XyoAddressRegEx,\n} from '@xyo-network/sdk-js'\nimport type { TransactionBoundWitness } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { ExecutableJsonSchema } from '../Executable.ts'\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\n\n/** JSON schema for validating TransactionBoundWitness payloads. */\nexport const TransactionBoundWitnessJsonSchema: JSONSchemaType<TransactionBoundWitness> = {\n ...boundWitnessJsonSchema,\n $id: 'https://schemas.xyo.network/2.0/transaction',\n additionalProperties: false,\n properties: {\n ...boundWitnessJsonSchema.properties,\n ...ExecutableJsonSchema.properties,\n chain: { type: 'string', pattern: AddressRegEx.source },\n fees: {\n type: 'object',\n properties: {\n base: { type: 'string', pattern: Uint256RegEx.source },\n gasLimit: { type: 'string', pattern: Uint256RegEx.source },\n gasPrice: { type: 'string', pattern: Uint256RegEx.source },\n priority: { type: 'string', pattern: Uint256RegEx.source },\n },\n required: ['base'],\n additionalProperties: false,\n },\n from: { type: 'string', pattern: XyoAddressRegEx.source },\n nbf: { type: 'integer' },\n exp: { type: 'integer' },\n schema: { type: 'string', pattern: BoundWitnessSchema },\n },\n\n required: mergeJsonSchemaRequired<TransactionBoundWitness>(boundWitnessJsonSchema.required, 'chain', 'fees', 'nbf', 'exp'),\n type: 'object',\n} as const\n\n/** Pre-built schema payload for TransactionBoundWitness validation. */\nconst transactionBoundWitnessSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const TransactionBoundWitnessSchemaPayload = transactionBoundWitnessSchemaBuilder\n .fields({ definition: TransactionBoundWitnessJsonSchema }).build()\n", "import type { Executable } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\n/** JSON schema for validating Executable payloads containing elevation scripts. */\nexport const ExecutableJsonSchema: JSONSchemaType<Executable> = {\n $id: 'https://schemas.xyo.network/2.0/executable',\n additionalProperties: true,\n properties: { script: { items: { type: 'string', pattern: String.raw`^elevate\\|` }, type: 'array' } },\n required: ['script'],\n type: 'object',\n} as const\n", "import { AddressRegEx } from '@xylabs/sdk'\nimport type { SchemaPayload } from '@xyo-network/sdk-js'\nimport {\n boundWitnessJsonSchema, BoundWitnessSchema,\n PayloadBuilder, SchemaSchema,\n Uint256RegEx,\n} from '@xyo-network/sdk-js'\nimport type { TransactionBoundWitness } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\nimport { StorageMetaJsonSchema } from '../StorageMeta.ts'\n\n/** JSON schema for validating TransactionBoundWitness payloads including storage metadata. */\nexport const TransactionBoundWitnessWithStorageMetaJsonSchema: JSONSchemaType<TransactionBoundWitness> = {\n ...boundWitnessJsonSchema,\n $id: 'https://schemas.xyo.network/2.0/transaction-with-storage-meta',\n additionalProperties: false,\n properties: {\n ...boundWitnessJsonSchema.properties,\n ...StorageMetaJsonSchema.properties,\n chain: { type: 'string', pattern: AddressRegEx.source },\n gas: { type: 'string', pattern: Uint256RegEx.source },\n nbf: { type: 'integer' },\n exp: { type: 'integer' },\n schema: { type: 'string', pattern: BoundWitnessSchema },\n },\n\n required: mergeJsonSchemaRequired<TransactionBoundWitness>(boundWitnessJsonSchema.required, StorageMetaJsonSchema.required, 'chain', 'gas', 'nbf', 'exp'),\n type: 'object',\n} as const\n\n/** Pre-built schema payload for TransactionBoundWitness with storage meta validation. */\nconst transactionBoundWitnessWithStorageMetaSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const TransactionBoundWitnessWithStorageMetaSchemaPayload = transactionBoundWitnessWithStorageMetaSchemaBuilder\n .fields({ definition: TransactionBoundWitnessWithStorageMetaJsonSchema }).build()\n", "import type { SchemaPayload } from '@xyo-network/sdk-js'\nimport {\n PayloadBuilder, payloadJsonSchema, SchemaSchema, XyoAddressRegEx,\n} from '@xyo-network/sdk-js'\nimport type { ChainStakeIntent } from '@xyo-network/xl1-protocol-lib'\nimport { ChainStakeIntentSchema } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\n\n/** JSON schema for validating ChainStakeIntent payloads. */\nexport const ChainStakeIntentPayloadJsonSchema: JSONSchemaType<ChainStakeIntent> = {\n ...payloadJsonSchema,\n $id: 'https://schemas.xyo.network/2.0/payload/chain-stake-intent',\n additionalProperties: false,\n properties: {\n ...payloadJsonSchema.properties,\n from: { type: 'string', pattern: XyoAddressRegEx.source },\n intent: { type: 'string', enum: ['producer'] },\n schema: { type: 'string', pattern: ChainStakeIntentSchema },\n },\n\n required: mergeJsonSchemaRequired<ChainStakeIntent>(payloadJsonSchema.required, 'intent'),\n type: 'object',\n}\n\n/** Pre-built schema payload for ChainStakeIntent validation. */\nconst chainStakeIntentPayloadJsonSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const ChainStakeIntentPayloadJsonSchemaPayload = chainStakeIntentPayloadJsonSchemaBuilder\n .fields({ definition: ChainStakeIntentPayloadJsonSchema }).build()\n", "import { HashRegEx } from '@xylabs/sdk'\nimport type { SchemaPayload } from '@xyo-network/sdk-js'\nimport {\n PayloadBuilder, payloadJsonSchema, SchemaSchema,\n} from '@xyo-network/sdk-js'\nimport type { HashPayload } from '@xyo-network/xl1-protocol-lib'\nimport { HashSchema } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\n\n/** JSON schema for validating Hash payloads. */\nexport const HashPayloadJsonSchema: JSONSchemaType<HashPayload> = {\n ...payloadJsonSchema,\n $id: 'https://schemas.xyo.network/2.0/payload/hash',\n additionalProperties: false,\n properties: {\n ...payloadJsonSchema.properties,\n hash: { type: 'string', pattern: HashRegEx.source },\n schema: { type: 'string', pattern: HashSchema },\n },\n\n required: mergeJsonSchemaRequired<HashPayload>(payloadJsonSchema.required, 'hash'),\n type: 'object',\n}\n\n/** Pre-built schema payload for Hash validation. */\nconst hashPayloadJsonSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const HashPayloadJsonSchemaPayload = hashPayloadJsonSchemaBuilder\n .fields({ definition: HashPayloadJsonSchema }).build()\n", "import type { SchemaPayload } from '@xyo-network/sdk-js'\nimport {\n PayloadBuilder, payloadJsonSchema, SchemaSchema,\n Uint256RegEx, XyoAddressRegEx,\n} from '@xyo-network/sdk-js'\nimport type { Transfer } from '@xyo-network/xl1-protocol-lib'\nimport { TransferSchema } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\n\n/** JSON schema for validating Transfer payloads. */\nexport const TransferPayloadJsonSchema: JSONSchemaType<Transfer> = {\n ...payloadJsonSchema,\n $id: 'https://schemas.xyo.network/2.0/payload/transfer',\n additionalProperties: false,\n properties: {\n ...payloadJsonSchema.properties,\n from: { type: 'string', pattern: XyoAddressRegEx.source },\n epoch: { type: 'number' },\n transfers: {\n type: 'object',\n propertyNames: { pattern: XyoAddressRegEx.source },\n patternProperties: { [XyoAddressRegEx.source]: { type: 'string', pattern: Uint256RegEx.source } },\n },\n schema: { type: 'string', pattern: TransferSchema },\n },\n\n required: mergeJsonSchemaRequired<Transfer>(payloadJsonSchema.required, 'transfers', 'epoch'),\n type: 'object',\n}\n\n/** Pre-built schema payload for Transfer validation. */\nconst transferPayloadJsonSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const TransferPayloadJsonSchemaPayload = transferPayloadJsonSchemaBuilder\n .fields({ definition: TransferPayloadJsonSchema }).build()\n"],
|
|
4
|
+
"sourcesContent": ["import { AddressRegEx, HashRegEx } from '@ariestools/sdk'\nimport type { SchemaPayload } from '@xyo-network/sdk-js'\nimport {\n boundWitnessJsonSchema, boundWitnessProperties, BoundWitnessSchema,\n PayloadBuilder, SchemaSchema,\n} from '@xyo-network/sdk-js'\nimport type { BlockBoundWitness } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\n\n/** JSON schema for validating BlockBoundWitness payloads. */\nexport const BlockBoundWitnessJsonSchema: JSONSchemaType<BlockBoundWitness> = {\n ...boundWitnessJsonSchema,\n $id: 'https://schemas.xyo.network/2.0/block',\n properties: {\n ...boundWitnessProperties,\n block: { type: 'integer' },\n chain: { type: 'string', pattern: AddressRegEx.source },\n previous: {\n type: 'string', pattern: HashRegEx.source, nullable: true,\n },\n step_hashes: {\n items: { type: 'string', pattern: HashRegEx.source },\n type: 'array',\n },\n $epoch: { type: 'integer' },\n schema: { type: 'string', pattern: BoundWitnessSchema },\n },\n\n required: mergeJsonSchemaRequired<BlockBoundWitness>(boundWitnessJsonSchema.required, 'block', 'chain', 'step_hashes', 'previous', '$epoch'),\n type: 'object',\n} as const\n\n/** Pre-built schema payload for BlockBoundWitness validation. */\nconst blockBoundWitnessSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const BlockBoundWitnessSchemaPayload = blockBoundWitnessSchemaBuilder\n .fields({ definition: BlockBoundWitnessJsonSchema }).build()\n", "import type { JSONSchemaType } from 'ajv'\n\nexport const asRequiredStrings = (required: unknown): readonly string[] => {\n if (typeof required === 'string') return [required]\n if (!Array.isArray(required)) return []\n return required.filter((item): item is string => typeof item === 'string')\n}\n\n/** Merge JSON schema `required` arrays without spreading untyped sdk-js values. */\nexport const mergeJsonSchemaRequired = <T>(\n ...groups: readonly unknown[]\n): JSONSchemaType<T> extends { required: infer R } ? R : never => (\n [...new Set(groups.flatMap(asRequiredStrings))] as JSONSchemaType<T> extends { required: infer R } ? R : never\n)\n", "import type { SchemaPayload, WithStorageMeta } from '@xyo-network/sdk-js'\nimport {\n boundWitnessJsonSchema, boundWitnessProperties, BoundWitnessSchema,\n PayloadBuilder, SchemaSchema,\n} from '@xyo-network/sdk-js'\nimport type { BlockBoundWitness } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\nimport { StorageMetaJsonSchema } from '../StorageMeta.ts'\nimport { BlockBoundWitnessJsonSchema } from './BlockBoundWitness.ts'\n\n/** JSON schema for validating BlockBoundWitness payloads including storage metadata. */\nexport const BlockBoundWitnessWithStorageMetaJsonSchema: JSONSchemaType<WithStorageMeta<BlockBoundWitness>> = {\n $id: 'https://schemas.xyo.network/2.0/block-with-storage-meta',\n properties: {\n ...boundWitnessProperties,\n ...BlockBoundWitnessJsonSchema.properties,\n ...StorageMetaJsonSchema.properties,\n schema: { type: 'string', pattern: BoundWitnessSchema },\n },\n\n required: mergeJsonSchemaRequired<WithStorageMeta<BlockBoundWitness>>(\n boundWitnessJsonSchema.required,\n BlockBoundWitnessJsonSchema.required,\n StorageMetaJsonSchema.required,\n ),\n type: 'object',\n} as const\n\n/** Pre-built schema payload for BlockBoundWitness with storage meta validation. */\nconst blockBoundWitnessWithStorageMetaSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const BlockBoundWitnessWithStorageMetaSchemaPayload = blockBoundWitnessWithStorageMetaSchemaBuilder\n .fields({ definition: BlockBoundWitnessWithStorageMetaJsonSchema }).build()\n", "import { HashRegEx, HexRegEx } from '@ariestools/sdk'\nimport type { StorageMeta } from '@xyo-network/sdk-js'\nimport type { JSONSchemaType } from 'ajv'\n\n/** JSON schema for validating storage metadata fields (_sequence, _hash, _dataHash). */\nexport const StorageMetaJsonSchema: JSONSchemaType<StorageMeta> = {\n $id: 'https://schemas.xyo.network/2.0/storage-meta',\n properties: {\n _sequence: { type: 'string', pattern: HexRegEx.source },\n _hash: { type: 'string', pattern: HashRegEx.source },\n _dataHash: { type: 'string', pattern: HashRegEx.source },\n },\n required: ['_sequence', '_hash', '_dataHash'],\n type: 'object',\n} as const\n", "import { AddressRegEx } from '@ariestools/sdk'\nimport type { SchemaPayload } from '@xyo-network/sdk-js'\nimport {\n boundWitnessJsonSchema, BoundWitnessSchema,\n PayloadBuilder, SchemaSchema,\n Uint256RegEx, XyoAddressRegEx,\n} from '@xyo-network/sdk-js'\nimport type { TransactionBoundWitness } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { ExecutableJsonSchema } from '../Executable.ts'\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\n\n/** JSON schema for validating TransactionBoundWitness payloads. */\nexport const TransactionBoundWitnessJsonSchema: JSONSchemaType<TransactionBoundWitness> = {\n ...boundWitnessJsonSchema,\n $id: 'https://schemas.xyo.network/2.0/transaction',\n additionalProperties: false,\n properties: {\n ...boundWitnessJsonSchema.properties,\n ...ExecutableJsonSchema.properties,\n chain: { type: 'string', pattern: AddressRegEx.source },\n fees: {\n type: 'object',\n properties: {\n base: { type: 'string', pattern: Uint256RegEx.source },\n gasLimit: { type: 'string', pattern: Uint256RegEx.source },\n gasPrice: { type: 'string', pattern: Uint256RegEx.source },\n priority: { type: 'string', pattern: Uint256RegEx.source },\n },\n required: ['base'],\n additionalProperties: false,\n },\n from: { type: 'string', pattern: XyoAddressRegEx.source },\n nbf: { type: 'integer' },\n exp: { type: 'integer' },\n schema: { type: 'string', pattern: BoundWitnessSchema },\n },\n\n required: mergeJsonSchemaRequired<TransactionBoundWitness>(boundWitnessJsonSchema.required, 'chain', 'fees', 'nbf', 'exp'),\n type: 'object',\n} as const\n\n/** Pre-built schema payload for TransactionBoundWitness validation. */\nconst transactionBoundWitnessSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const TransactionBoundWitnessSchemaPayload = transactionBoundWitnessSchemaBuilder\n .fields({ definition: TransactionBoundWitnessJsonSchema }).build()\n", "import type { Executable } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\n/** JSON schema for validating Executable payloads containing elevation scripts. */\nexport const ExecutableJsonSchema: JSONSchemaType<Executable> = {\n $id: 'https://schemas.xyo.network/2.0/executable',\n additionalProperties: true,\n properties: { script: { items: { type: 'string', pattern: String.raw`^elevate\\|` }, type: 'array' } },\n required: ['script'],\n type: 'object',\n} as const\n", "import { AddressRegEx } from '@ariestools/sdk'\nimport type { SchemaPayload } from '@xyo-network/sdk-js'\nimport {\n boundWitnessJsonSchema, BoundWitnessSchema,\n PayloadBuilder, SchemaSchema,\n Uint256RegEx,\n} from '@xyo-network/sdk-js'\nimport type { TransactionBoundWitness } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\nimport { StorageMetaJsonSchema } from '../StorageMeta.ts'\n\n/** JSON schema for validating TransactionBoundWitness payloads including storage metadata. */\nexport const TransactionBoundWitnessWithStorageMetaJsonSchema: JSONSchemaType<TransactionBoundWitness> = {\n ...boundWitnessJsonSchema,\n $id: 'https://schemas.xyo.network/2.0/transaction-with-storage-meta',\n additionalProperties: false,\n properties: {\n ...boundWitnessJsonSchema.properties,\n ...StorageMetaJsonSchema.properties,\n chain: { type: 'string', pattern: AddressRegEx.source },\n gas: { type: 'string', pattern: Uint256RegEx.source },\n nbf: { type: 'integer' },\n exp: { type: 'integer' },\n schema: { type: 'string', pattern: BoundWitnessSchema },\n },\n\n required: mergeJsonSchemaRequired<TransactionBoundWitness>(boundWitnessJsonSchema.required, StorageMetaJsonSchema.required, 'chain', 'gas', 'nbf', 'exp'),\n type: 'object',\n} as const\n\n/** Pre-built schema payload for TransactionBoundWitness with storage meta validation. */\nconst transactionBoundWitnessWithStorageMetaSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const TransactionBoundWitnessWithStorageMetaSchemaPayload = transactionBoundWitnessWithStorageMetaSchemaBuilder\n .fields({ definition: TransactionBoundWitnessWithStorageMetaJsonSchema }).build()\n", "import type { SchemaPayload } from '@xyo-network/sdk-js'\nimport {\n PayloadBuilder, payloadJsonSchema, SchemaSchema, XyoAddressRegEx,\n} from '@xyo-network/sdk-js'\nimport type { ChainStakeIntent } from '@xyo-network/xl1-protocol-lib'\nimport { ChainStakeIntentSchema } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\n\n/** JSON schema for validating ChainStakeIntent payloads. */\nexport const ChainStakeIntentPayloadJsonSchema: JSONSchemaType<ChainStakeIntent> = {\n ...payloadJsonSchema,\n $id: 'https://schemas.xyo.network/2.0/payload/chain-stake-intent',\n additionalProperties: false,\n properties: {\n ...payloadJsonSchema.properties,\n from: { type: 'string', pattern: XyoAddressRegEx.source },\n intent: { type: 'string', enum: ['producer'] },\n schema: { type: 'string', pattern: ChainStakeIntentSchema },\n },\n\n required: mergeJsonSchemaRequired<ChainStakeIntent>(payloadJsonSchema.required, 'intent'),\n type: 'object',\n}\n\n/** Pre-built schema payload for ChainStakeIntent validation. */\nconst chainStakeIntentPayloadJsonSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const ChainStakeIntentPayloadJsonSchemaPayload = chainStakeIntentPayloadJsonSchemaBuilder\n .fields({ definition: ChainStakeIntentPayloadJsonSchema }).build()\n", "import { HashRegEx } from '@ariestools/sdk'\nimport type { SchemaPayload } from '@xyo-network/sdk-js'\nimport {\n PayloadBuilder, payloadJsonSchema, SchemaSchema,\n} from '@xyo-network/sdk-js'\nimport type { HashPayload } from '@xyo-network/xl1-protocol-lib'\nimport { HashSchema } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\n\n/** JSON schema for validating Hash payloads. */\nexport const HashPayloadJsonSchema: JSONSchemaType<HashPayload> = {\n ...payloadJsonSchema,\n $id: 'https://schemas.xyo.network/2.0/payload/hash',\n additionalProperties: false,\n properties: {\n ...payloadJsonSchema.properties,\n hash: { type: 'string', pattern: HashRegEx.source },\n schema: { type: 'string', pattern: HashSchema },\n },\n\n required: mergeJsonSchemaRequired<HashPayload>(payloadJsonSchema.required, 'hash'),\n type: 'object',\n}\n\n/** Pre-built schema payload for Hash validation. */\nconst hashPayloadJsonSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const HashPayloadJsonSchemaPayload = hashPayloadJsonSchemaBuilder\n .fields({ definition: HashPayloadJsonSchema }).build()\n", "import type { SchemaPayload } from '@xyo-network/sdk-js'\nimport {\n PayloadBuilder, payloadJsonSchema, SchemaSchema,\n Uint256RegEx, XyoAddressRegEx,\n} from '@xyo-network/sdk-js'\nimport type { Transfer } from '@xyo-network/xl1-protocol-lib'\nimport { TransferSchema } from '@xyo-network/xl1-protocol-lib'\nimport type { JSONSchemaType } from 'ajv'\n\nimport { mergeJsonSchemaRequired } from '../mergeJsonSchemaRequired.ts'\n\n/** JSON schema for validating Transfer payloads. */\nexport const TransferPayloadJsonSchema: JSONSchemaType<Transfer> = {\n ...payloadJsonSchema,\n $id: 'https://schemas.xyo.network/2.0/payload/transfer',\n additionalProperties: false,\n properties: {\n ...payloadJsonSchema.properties,\n from: { type: 'string', pattern: XyoAddressRegEx.source },\n epoch: { type: 'number' },\n transfers: {\n type: 'object',\n propertyNames: { pattern: XyoAddressRegEx.source },\n patternProperties: { [XyoAddressRegEx.source]: { type: 'string', pattern: Uint256RegEx.source } },\n },\n schema: { type: 'string', pattern: TransferSchema },\n },\n\n required: mergeJsonSchemaRequired<Transfer>(payloadJsonSchema.required, 'transfers', 'epoch'),\n type: 'object',\n}\n\n/** Pre-built schema payload for Transfer validation. */\nconst transferPayloadJsonSchemaBuilder = new PayloadBuilder<SchemaPayload>({ schema: SchemaSchema })\nexport const TransferPayloadJsonSchemaPayload = transferPayloadJsonSchemaBuilder\n .fields({ definition: TransferPayloadJsonSchema }).build()\n"],
|
|
5
5
|
"mappings": "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",
|
|
6
6
|
"names": ["boundWitnessJsonSchema", "boundWitnessProperties", "BoundWitnessSchema", "PayloadBuilder", "SchemaSchema", "HashRegEx", "boundWitnessProperties", "BoundWitnessSchema", "boundWitnessJsonSchema", "PayloadBuilder", "SchemaSchema", "AddressRegEx", "boundWitnessJsonSchema", "BoundWitnessSchema", "PayloadBuilder", "SchemaSchema", "boundWitnessJsonSchema", "AddressRegEx", "BoundWitnessSchema", "PayloadBuilder", "SchemaSchema", "AddressRegEx", "boundWitnessJsonSchema", "BoundWitnessSchema", "PayloadBuilder", "SchemaSchema", "Uint256RegEx", "boundWitnessJsonSchema", "AddressRegEx", "Uint256RegEx", "BoundWitnessSchema", "PayloadBuilder", "SchemaSchema", "PayloadBuilder", "SchemaSchema", "XyoAddressRegEx", "XyoAddressRegEx", "PayloadBuilder", "SchemaSchema", "HashRegEx", "PayloadBuilder", "payloadJsonSchema", "SchemaSchema", "payloadJsonSchema", "HashRegEx", "PayloadBuilder", "SchemaSchema", "PayloadBuilder", "payloadJsonSchema", "SchemaSchema", "Uint256RegEx", "XyoAddressRegEx", "payloadJsonSchema", "XyoAddressRegEx", "Uint256RegEx", "PayloadBuilder", "SchemaSchema"]
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/xl1-schema",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.7",
|
|
4
4
|
"description": "XYO Layer One SDK Schema",
|
|
5
5
|
"homepage": "https://xylabs.com",
|
|
6
6
|
"bugs": {
|
|
@@ -34,20 +34,21 @@
|
|
|
34
34
|
"README.md"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@xyo-network/xl1-protocol-lib": "~4.0.
|
|
37
|
+
"@xyo-network/xl1-protocol-lib": "~4.0.7"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
+
"@ariestools/sdk": "^7.0.3",
|
|
40
41
|
"@bitauth/libauth": "~3.0.0",
|
|
41
42
|
"@noble/post-quantum": "~0.6.1",
|
|
42
43
|
"@opentelemetry/api": "^1.9.1",
|
|
43
44
|
"@opentelemetry/sdk-trace-base": "^2.8.0",
|
|
44
45
|
"@scure/base": "~2.2.0",
|
|
45
46
|
"@scure/bip39": "~2.2.0",
|
|
46
|
-
"@xylabs/geo": "^7.0.
|
|
47
|
-
"@xylabs/sdk": "^7.0
|
|
48
|
-
"@xylabs/threads": "^7.0.
|
|
49
|
-
"@xylabs/toolchain": "~8.5.
|
|
50
|
-
"@xylabs/tsconfig": "~8.5.
|
|
47
|
+
"@xylabs/geo": "^7.0.3",
|
|
48
|
+
"@xylabs/sdk": "^7.0",
|
|
49
|
+
"@xylabs/threads": "^7.0.3",
|
|
50
|
+
"@xylabs/toolchain": "~8.5.11",
|
|
51
|
+
"@xylabs/tsconfig": "~8.5.11",
|
|
51
52
|
"@xyo-network/sdk-js": "~7.0.4",
|
|
52
53
|
"@xyo-network/sdk-protocol": "~7.0.5",
|
|
53
54
|
"ajv": "^8.20.0",
|
|
@@ -60,11 +61,12 @@
|
|
|
60
61
|
"lru-cache": "^11.5.1",
|
|
61
62
|
"observable-fns": "~0.6.1",
|
|
62
63
|
"typescript": "~6.0.3",
|
|
63
|
-
"vite": "^8.1.
|
|
64
|
+
"vite": "^8.1.2",
|
|
64
65
|
"vitest": "~4.1.9",
|
|
65
66
|
"zod": "~4.4.3"
|
|
66
67
|
},
|
|
67
68
|
"peerDependencies": {
|
|
69
|
+
"@ariestools/sdk": "^7.0",
|
|
68
70
|
"@bitauth/libauth": "~3.0",
|
|
69
71
|
"@noble/post-quantum": "~0.6.1",
|
|
70
72
|
"@opentelemetry/api": "^1.9",
|