@xyo-network/chain-sdk 1.7.11 → 1.7.12

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.
Files changed (2) hide show
  1. package/README.md +219 -1
  2. package/package.json +30 -30
package/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  XYO Layer One SDK
12
12
 
13
- ## Documentation
13
+
14
14
 
15
15
  ## Reference
16
16
 
@@ -7675,6 +7675,224 @@ spanLevel(span): number;
7675
7675
 
7676
7676
  `number`
7677
7677
 
7678
+ ### <a id="XyoDataLake"></a>XyoDataLake
7679
+
7680
+ [**@xyo-network/chain-sdk**](#../../README)
7681
+
7682
+ ***
7683
+
7684
+ ## Implements
7685
+
7686
+ - `XyoDataLakeProvider`
7687
+
7688
+ ## Constructors
7689
+
7690
+ ### Constructor
7691
+
7692
+ ```ts
7693
+ new XyoDataLake(endpoint): XyoDataLake;
7694
+ ```
7695
+
7696
+ ### Parameters
7697
+
7698
+ #### endpoint
7699
+
7700
+ `string`
7701
+
7702
+ ### Returns
7703
+
7704
+ `XyoDataLake`
7705
+
7706
+ ## Accessors
7707
+
7708
+ ### endpoint
7709
+
7710
+ ### Get Signature
7711
+
7712
+ ```ts
7713
+ get endpoint(): string;
7714
+ ```
7715
+
7716
+ #### Returns
7717
+
7718
+ `string`
7719
+
7720
+ ## Methods
7721
+
7722
+ ### add()
7723
+
7724
+ ```ts
7725
+ add(items): Promise<DataLakeData[]>;
7726
+ ```
7727
+
7728
+ ### Parameters
7729
+
7730
+ #### items
7731
+
7732
+ `DataLakeData`[]
7733
+
7734
+ ### Returns
7735
+
7736
+ `Promise`\<`DataLakeData`[]\>
7737
+
7738
+ ### Implementation of
7739
+
7740
+ ```ts
7741
+ XyoDataLakeProvider.add
7742
+ ```
7743
+
7744
+ ***
7745
+
7746
+ ### fetch()
7747
+
7748
+ ```ts
7749
+ fetch(hashes, maxDepth?): Promise<DataLakeData[]>;
7750
+ ```
7751
+
7752
+ ### Parameters
7753
+
7754
+ #### hashes
7755
+
7756
+ `Lowercase`\<`string`\>[]
7757
+
7758
+ #### maxDepth?
7759
+
7760
+ `number`
7761
+
7762
+ ### Returns
7763
+
7764
+ `Promise`\<`DataLakeData`[]\>
7765
+
7766
+ ### Implementation of
7767
+
7768
+ ```ts
7769
+ XyoDataLakeProvider.fetch
7770
+ ```
7771
+
7772
+ ***
7773
+
7774
+ ### get()
7775
+
7776
+ ```ts
7777
+ get(hashes): Promise<DataLakeData[]>;
7778
+ ```
7779
+
7780
+ ### Parameters
7781
+
7782
+ #### hashes
7783
+
7784
+ `Lowercase`\<`string`\>[]
7785
+
7786
+ ### Returns
7787
+
7788
+ `Promise`\<`DataLakeData`[]\>
7789
+
7790
+ ### Implementation of
7791
+
7792
+ ```ts
7793
+ XyoDataLakeProvider.get
7794
+ ```
7795
+
7796
+ ***
7797
+
7798
+ ### trace()
7799
+
7800
+ ```ts
7801
+ trace(hash): Promise<[undefined | DataLakeData, Payload[]]>;
7802
+ ```
7803
+
7804
+ ### Parameters
7805
+
7806
+ #### hash
7807
+
7808
+ `Lowercase`\<`string`\>
7809
+
7810
+ ### Returns
7811
+
7812
+ `Promise`\<\[`undefined` \| `DataLakeData`, `Payload`[]\]\>
7813
+
7814
+ ### Implementation of
7815
+
7816
+ ```ts
7817
+ XyoDataLakeProvider.trace
7818
+ ```
7819
+
7820
+ ***
7821
+
7822
+ ### addArrayBuffer()
7823
+
7824
+ ```ts
7825
+ protected addArrayBuffer(item): Promise<undefined | ArrayBuffer>;
7826
+ ```
7827
+
7828
+ ### Parameters
7829
+
7830
+ #### item
7831
+
7832
+ `ArrayBuffer`
7833
+
7834
+ ### Returns
7835
+
7836
+ `Promise`\<`undefined` \| `ArrayBuffer`\>
7837
+
7838
+ ***
7839
+
7840
+ ### addPayload()
7841
+
7842
+ ```ts
7843
+ protected addPayload(item): Promise<undefined | Payload>;
7844
+ ```
7845
+
7846
+ ### Parameters
7847
+
7848
+ #### item
7849
+
7850
+ `Payload`
7851
+
7852
+ ### Returns
7853
+
7854
+ `Promise`\<`undefined` \| `Payload`\>
7855
+
7856
+ ***
7857
+
7858
+ ### fetchOne()
7859
+
7860
+ ```ts
7861
+ protected fetchOne(hash, maxDepth?): Promise<undefined | DataLakeData>;
7862
+ ```
7863
+
7864
+ ### Parameters
7865
+
7866
+ #### hash
7867
+
7868
+ `Lowercase`\<`string`\>
7869
+
7870
+ #### maxDepth?
7871
+
7872
+ `number`
7873
+
7874
+ ### Returns
7875
+
7876
+ `Promise`\<`undefined` \| `DataLakeData`\>
7877
+
7878
+ ***
7879
+
7880
+ ### getOne()
7881
+
7882
+ ```ts
7883
+ protected getOne(hash): Promisable<undefined | DataLakeData>;
7884
+ ```
7885
+
7886
+ ### Parameters
7887
+
7888
+ #### hash
7889
+
7890
+ `Lowercase`\<`string`\>
7891
+
7892
+ ### Returns
7893
+
7894
+ `Promisable`\<`undefined` \| `DataLakeData`\>
7895
+
7678
7896
  ### <a id="XyoStakeIntentService"></a>XyoStakeIntentService
7679
7897
 
7680
7898
  [**@xyo-network/chain-sdk**](#../../README)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "http://json.schemastore.org/package.json",
3
3
  "name": "@xyo-network/chain-sdk",
4
- "version": "1.7.11",
4
+ "version": "1.7.12",
5
5
  "description": "XYO Layer One SDK",
6
6
  "homepage": "https://xylabs.com",
7
7
  "bugs": {
@@ -57,39 +57,39 @@
57
57
  "deploy3": "echo Deploy3 not allowed!"
58
58
  },
59
59
  "dependencies": {
60
- "@xylabs/assert": "^4.13.21",
61
- "@xylabs/delay": "^4.13.21",
62
- "@xylabs/hex": "^4.13.21",
63
- "@xyo-network/account": "^4.1.6",
64
- "@xyo-network/account-model": "^4.1.6",
65
- "@xyo-network/chain-ethereum": "^1.7.11",
66
- "@xyo-network/chain-modules": "^1.7.11",
67
- "@xyo-network/chain-orchestration": "^1.7.11",
68
- "@xyo-network/chain-protocol": "^1.7.11",
69
- "@xyo-network/chain-services": "^1.7.11",
70
- "@xyo-network/chain-utils": "^1.7.11",
71
- "@xyo-network/chain-validation": "^1.7.11",
72
- "@xyo-network/payload-builder": "^4.1.6",
60
+ "@xylabs/assert": "^4.13.23",
61
+ "@xylabs/delay": "^4.13.23",
62
+ "@xylabs/hex": "^4.13.23",
63
+ "@xyo-network/account": "^4.1.7",
64
+ "@xyo-network/account-model": "^4.1.7",
65
+ "@xyo-network/chain-ethereum": "^1.7.12",
66
+ "@xyo-network/chain-modules": "^1.7.12",
67
+ "@xyo-network/chain-orchestration": "^1.7.12",
68
+ "@xyo-network/chain-protocol": "^1.7.12",
69
+ "@xyo-network/chain-services": "^1.7.12",
70
+ "@xyo-network/chain-utils": "^1.7.12",
71
+ "@xyo-network/chain-validation": "^1.7.12",
72
+ "@xyo-network/payload-builder": "^4.1.7",
73
73
  "@xyo-network/typechain": "^3.5.4",
74
- "@xyo-network/wallet-model": "^4.1.6",
75
- "@xyo-network/xl1-protocol": "^1.7.10",
76
- "@xyo-network/xl1-protocol-sdk": "^1.7.11",
74
+ "@xyo-network/wallet-model": "^4.1.7",
75
+ "@xyo-network/xl1-protocol": "^1.7.19",
76
+ "@xyo-network/xl1-protocol-sdk": "^1.7.12",
77
77
  "ethers": "6.15.0"
78
78
  },
79
79
  "devDependencies": {
80
- "@types/node": "^24.0.15",
81
- "@xylabs/decimal-precision": "^4.13.21",
82
- "@xylabs/delay": "^4.13.21",
83
- "@xylabs/ts-scripts-yarn3": "^7.0.0",
84
- "@xylabs/tsconfig": "^7.0.0",
85
- "@xyo-network/account": "^4.1.6",
86
- "@xyo-network/account-model": "^4.1.6",
87
- "@xyo-network/archivist-memory": "^4.1.6",
88
- "@xyo-network/archivist-model": "^4.1.6",
89
- "@xyo-network/boundwitness-builder": "^4.1.6",
90
- "@xyo-network/chain-analyze": "^1.7.11",
91
- "@xyo-network/payload-model": "^4.1.6",
92
- "@xyo-network/wallet": "^4.1.6",
80
+ "@types/node": "^24.1.0",
81
+ "@xylabs/decimal-precision": "^4.13.23",
82
+ "@xylabs/delay": "^4.13.23",
83
+ "@xylabs/ts-scripts-yarn3": "^7.0.1",
84
+ "@xylabs/tsconfig": "^7.0.1",
85
+ "@xyo-network/account": "^4.1.7",
86
+ "@xyo-network/account-model": "^4.1.7",
87
+ "@xyo-network/archivist-memory": "^4.1.7",
88
+ "@xyo-network/archivist-model": "^4.1.7",
89
+ "@xyo-network/boundwitness-builder": "^4.1.7",
90
+ "@xyo-network/chain-analyze": "^1.7.12",
91
+ "@xyo-network/payload-model": "^4.1.7",
92
+ "@xyo-network/wallet": "^4.1.7",
93
93
  "eslint": "^9.31.0",
94
94
  "knip": "^5.62.0",
95
95
  "typescript": "^5.8.3",