@xyo-network/chain-sdk 1.8.3 → 1.9.0

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/chain-sdk",
4
- "version": "1.8.3",
4
+ "version": "1.9.0",
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.15.0",
61
- "@xylabs/delay": "^4.15.0",
62
- "@xylabs/hex": "^4.15.0",
63
- "@xyo-network/account": "^4.3.0",
64
- "@xyo-network/account-model": "^4.3.0",
65
- "@xyo-network/chain-ethereum": "^1.8.3",
66
- "@xyo-network/chain-modules": "^1.8.3",
67
- "@xyo-network/chain-orchestration": "^1.8.3",
68
- "@xyo-network/chain-protocol": "^1.8.3",
69
- "@xyo-network/chain-services": "^1.8.3",
70
- "@xyo-network/chain-utils": "^1.8.3",
71
- "@xyo-network/chain-validation": "^1.8.3",
72
- "@xyo-network/payload-builder": "^4.3.0",
60
+ "@xylabs/assert": "^5.0.0",
61
+ "@xylabs/delay": "^5.0.0",
62
+ "@xylabs/hex": "^5.0.0",
63
+ "@xyo-network/account": "^5.0.0",
64
+ "@xyo-network/account-model": "^5.0.0",
65
+ "@xyo-network/chain-ethereum": "^1.9.0",
66
+ "@xyo-network/chain-modules": "^1.9.0",
67
+ "@xyo-network/chain-orchestration": "^1.9.0",
68
+ "@xyo-network/chain-protocol": "^1.9.0",
69
+ "@xyo-network/chain-services": "^1.9.0",
70
+ "@xyo-network/chain-utils": "^1.9.0",
71
+ "@xyo-network/chain-validation": "^1.9.0",
72
+ "@xyo-network/payload-builder": "^5.0.0",
73
73
  "@xyo-network/typechain": "^3.5.4",
74
- "@xyo-network/wallet-model": "^4.3.0",
75
- "@xyo-network/xl1-protocol": "^1.7.33",
76
- "@xyo-network/xl1-protocol-sdk": "^1.8.3",
74
+ "@xyo-network/wallet-model": "^5.0.0",
75
+ "@xyo-network/xl1-protocol": "^1.8.0",
76
+ "@xyo-network/xl1-protocol-sdk": "^1.9.0",
77
77
  "ethers": "6.15.0"
78
78
  },
79
79
  "devDependencies": {
80
80
  "@types/node": "^24.1.0",
81
- "@xylabs/decimal-precision": "^4.15.0",
82
- "@xylabs/delay": "^4.15.0",
83
- "@xylabs/ts-scripts-yarn3": "^7.0.1",
84
- "@xylabs/tsconfig": "^7.0.1",
85
- "@xyo-network/account": "^4.3.0",
86
- "@xyo-network/account-model": "^4.3.0",
87
- "@xyo-network/archivist-memory": "^4.3.0",
88
- "@xyo-network/archivist-model": "^4.3.0",
89
- "@xyo-network/boundwitness-builder": "^4.3.0",
90
- "@xyo-network/chain-analyze": "^1.8.3",
91
- "@xyo-network/payload-model": "^4.3.0",
92
- "@xyo-network/wallet": "^4.3.0",
81
+ "@xylabs/decimal-precision": "^5.0.0",
82
+ "@xylabs/delay": "^5.0.0",
83
+ "@xylabs/ts-scripts-yarn3": "^7.0.2",
84
+ "@xylabs/tsconfig": "^7.0.2",
85
+ "@xyo-network/account": "^5.0.0",
86
+ "@xyo-network/account-model": "^5.0.0",
87
+ "@xyo-network/archivist-memory": "^5.0.0",
88
+ "@xyo-network/archivist-model": "^5.0.0",
89
+ "@xyo-network/boundwitness-builder": "^5.0.0",
90
+ "@xyo-network/chain-analyze": "^1.9.0",
91
+ "@xyo-network/payload-model": "^5.0.0",
92
+ "@xyo-network/wallet": "^5.0.0",
93
93
  "eslint": "^9.32.0",
94
94
  "knip": "^5.62.0",
95
95
  "typescript": "^5.8.3",
@@ -3,9 +3,8 @@ import type { ChildProcess } from 'node:child_process'
3
3
  import { assertEx } from '@xylabs/assert'
4
4
  import { toFixedPoint } from '@xylabs/decimal-precision'
5
5
  import { delay } from '@xylabs/delay'
6
- import type { Hash } from '@xylabs/hex'
6
+ import type { EthAddress, Hash } from '@xylabs/hex'
7
7
  import { Account } from '@xyo-network/account'
8
- import type { EthAddress } from '@xyo-network/chain-ethereum'
9
8
  import {
10
9
  createChainContract, createChainRewardsContract, getDefaultGasConfig,
11
10
  } from '@xyo-network/chain-ethereum'
@@ -2,9 +2,9 @@ import type { ChildProcess } from 'node:child_process'
2
2
 
3
3
  import { assertEx } from '@xylabs/assert'
4
4
  import { delay } from '@xylabs/delay'
5
- import { asAddress } from '@xylabs/hex'
5
+ import { asAddress, toEthAddress } from '@xylabs/hex'
6
6
  import type { AccountInstance } from '@xyo-network/account-model'
7
- import { createChain, toEthAddress } from '@xyo-network/chain-ethereum'
7
+ import { createChain } from '@xyo-network/chain-ethereum'
8
8
  import { EvmChainService } from '@xyo-network/chain-services'
9
9
  import type { BurnableErc20 } from '@xyo-network/typechain'
10
10
  import { BurnableErc20__factory as Erc20Factory, StakedXyoChain__factory as StakedXyoChainFactory } from '@xyo-network/typechain'
@@ -1,6 +1,6 @@
1
1
  import { assertEx } from '@xylabs/assert'
2
- import { asAddress } from '@xylabs/hex'
3
- import { createChain, toEthAddress } from '@xyo-network/chain-ethereum'
2
+ import { asAddress, toEthAddress } from '@xylabs/hex'
3
+ import { createChain } from '@xyo-network/chain-ethereum'
4
4
  import { EvmChainService } from '@xyo-network/chain-services'
5
5
  import { BurnableErc20__factory as Erc20Factory, StakedXyoChain__factory as StakedXyoChainFactory } from '@xyo-network/typechain'
6
6
  import { HDWallet } from '@xyo-network/wallet'