@swapkit/core 4.4.45 → 4.4.46

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/core
2
2
 
3
+ ## 4.4.46
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/toolboxes@4.23.0)
8
+
3
9
  ## 4.4.45
4
10
 
5
11
  ### Patch Changes
@@ -3321,7 +3321,7 @@ export declare function SwapKit<Plugins extends ReturnType<typeof createPlugin>,
3321
3321
  transfer: (params: GenericTransferParams) => Promise<string>;
3322
3322
  validateAddress: typeof import("@swapkit/toolboxes/ripple/index").validateRippleAddress;
3323
3323
  };
3324
- RBH: ChainWallet<Chain.Robinhood> & {
3324
+ HOOD: ChainWallet<Chain.Robinhood> & {
3325
3325
  approve: ({ assetAddress, spenderAddress, feeOptionKey, amount, gasLimitFallback, from: fromParam, nonce, }: import("@swapkit/toolboxes/evm").ApproveParams) => Promise<string>;
3326
3326
  approvedAmount: ({ assetAddress, spenderAddress, from }: import("@swapkit/toolboxes/evm").IsApprovedParams) => Promise<bigint>;
3327
3327
  broadcastTransaction: ((signedTx: string) => Promise<import("ethers").TransactionResponse>) | ((signedTx: string) => Promise<import("ethers").TransactionResponse>);
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "author": "swapkit-dev",
3
3
  "dependencies": {
4
- "@swapkit/helpers": "4.16.0",
5
- "@swapkit/plugins": "4.6.59",
6
- "@swapkit/toolboxes": "4.22.0",
7
- "@swapkit/wallet-core": "4.3.12"
4
+ "@swapkit/helpers": "4.16.1",
5
+ "@swapkit/plugins": "4.6.60",
6
+ "@swapkit/toolboxes": "4.23.0",
7
+ "@swapkit/wallet-core": "4.3.13"
8
8
  },
9
9
  "description": "SwapKit - Core",
10
10
  "devDependencies": {
@@ -36,5 +36,5 @@
36
36
  "type-check:go": "tsgo"
37
37
  },
38
38
  "type": "module",
39
- "version": "4.4.45"
39
+ "version": "4.4.46"
40
40
  }