@swapkit/helpers 4.16.0 → 4.16.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @swapkit/helpers
2
2
 
3
+ ## 4.16.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#315](https://github.com/swapkit/sdk/pull/315) [`b42ef37`](https://github.com/swapkit/sdk/commit/b42ef37d2510ffa6ffaf5f9e36ad13fa4881bbf7) Thanks [@towanTG](https://github.com/towanTG)! - Rename Robinhood Chain string identifier from RBH to HOOD. `Chain.Robinhood` now equals `"HOOD"`, the gas asset identifier is `HOOD.ETH`, and the EVM toolbox export is `HOODToolbox` (previously `RBHToolbox`). Chain ID (4663) and all other chain config values are unchanged. Anyone consuming the short-lived `"RBH"` string or `RBHToolbox` export from 4.16.0 must switch to `"HOOD"` / `HOODToolbox`. (via @swapkit/types@0.11.0)
8
+
3
9
  ## 4.16.0
4
10
 
5
11
  ### Minor Changes
@@ -151,7 +151,7 @@ declare const initialState: {
151
151
  POL: string[];
152
152
  XRD: string[];
153
153
  XRP: string[];
154
- RBH: string[];
154
+ HOOD: string[];
155
155
  SOL: string[];
156
156
  SONIC: string[];
157
157
  SPARK: string[];
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "author": "swapkit-dev",
3
- "dependencies": { "@swapkit/contracts": "4.1.5", "@swapkit/tokens": "4.3.1", "@swapkit/types": "0.10.0" },
3
+ "dependencies": { "@swapkit/contracts": "4.1.5", "@swapkit/tokens": "4.3.1", "@swapkit/types": "0.11.0" },
4
4
  "description": "SwapKit - Helpers",
5
- "devDependencies": { "@near-js/providers": "2.5.1", "@swapkit/toolboxes": "4.22.0", "ethers": "6.16.0" },
5
+ "devDependencies": { "@near-js/providers": "2.5.1", "@swapkit/toolboxes": "4.23.0", "ethers": "6.16.0" },
6
6
  "exports": {
7
7
  ".": { "default": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/types/index.d.ts" },
8
8
  "./api": {
@@ -39,5 +39,5 @@
39
39
  "type-check:go": "tsgo"
40
40
  },
41
41
  "type": "module",
42
- "version": "4.16.0"
42
+ "version": "4.16.1"
43
43
  }