@xyo-network/xl1-wrappers 1.17.0 → 1.17.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "http://json.schemastore.org/package.json",
3
3
  "name": "@xyo-network/xl1-wrappers",
4
- "version": "1.17.0",
4
+ "version": "1.17.1",
5
5
  "description": "XYO Layer One SDK Wrappers",
6
6
  "homepage": "https://xylabs.com",
7
7
  "bugs": {
@@ -39,14 +39,14 @@
39
39
  "!**/*.test.*"
40
40
  ],
41
41
  "dependencies": {
42
- "@xylabs/sdk-js": "~5.0.46",
43
- "@xyo-network/boundwitness-model": "~5.2.10",
44
- "@xyo-network/boundwitness-validator": "~5.2.10",
45
- "@xyo-network/payload-builder": "~5.2.10",
46
- "@xyo-network/payload-model": "~5.2.10",
47
- "@xyo-network/xl1-protocol": "~1.14.15",
48
- "@xyo-network/xl1-protocol-sdk": "~1.17.0",
49
- "@xyo-network/xl1-validation": "~1.17.0"
42
+ "@xylabs/sdk-js": "~5.0.48",
43
+ "@xyo-network/boundwitness-model": "~5.2.13",
44
+ "@xyo-network/boundwitness-validator": "~5.2.13",
45
+ "@xyo-network/payload-builder": "~5.2.13",
46
+ "@xyo-network/payload-model": "~5.2.13",
47
+ "@xyo-network/xl1-protocol": "~1.14.16",
48
+ "@xyo-network/xl1-protocol-sdk": "~1.17.1",
49
+ "@xyo-network/xl1-validation": "~1.17.1"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/node": "~24.10.1",
@@ -54,7 +54,7 @@
54
54
  "@xylabs/tsconfig": "~7.2.8",
55
55
  "eslint": "^9.39.1",
56
56
  "typescript": "~5.9.3",
57
- "vitest": "~4.0.14"
57
+ "vitest": "~4.0.15"
58
58
  },
59
59
  "engines": {
60
60
  "node": ">=22.3 <23"
@@ -9,10 +9,10 @@ import { AddressWrapper } from './Address.ts'
9
9
 
10
10
  export class AddressStateWrapper extends AddressWrapper implements AddressStateInstance {
11
11
  get blockWindow(): BlockWindowInstance {
12
- throw new Error('Method not implemented.')
12
+ throw new Error('Method [blockWindow] not implemented.')
13
13
  }
14
14
 
15
15
  balance(): Promisable<[XL1AmountInstance, BlockWindowInstance]> {
16
- throw new Error('Method not implemented.')
16
+ throw new Error('Method [balance] not implemented.')
17
17
  }
18
18
  }
@@ -14,6 +14,6 @@ export class BlockWindowBalanceCache implements BlockWindowBalanceCacheInstance
14
14
  }
15
15
 
16
16
  balance(_address: Address): Promisable<bigint> {
17
- throw new Error('Method not implemented.')
17
+ throw new Error('Method [balance] not implemented.')
18
18
  }
19
19
  }