@coinmasters/types 4.4.1 → 4.4.2

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/package.json +2 -2
  2. package/src/network.ts +2 -2
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "@types/node": "20.10.0",
6
6
  "ethers": "6.9.0",
7
7
  "vite": "4.4.9",
8
- "@internal/config": "2.4.1"
8
+ "@internal/config": "2.4.2"
9
9
  },
10
10
  "eslintConfig": {
11
11
  "extends": "../../../internal/eslint-config"
@@ -33,7 +33,7 @@
33
33
  "repository": "https://github.com/thorswap/SwapKit.git",
34
34
  "type": "module",
35
35
  "types": "./dist/index.d.ts",
36
- "version": "4.4.1",
36
+ "version": "4.4.2",
37
37
  "scripts": {
38
38
  "build": "vite build",
39
39
  "build:watch": "nodemon --watch src --exec 'pnpm run build'",
package/src/network.ts CHANGED
@@ -307,7 +307,7 @@ export enum RPCUrl {
307
307
  Dogecoin = 'https://node-router.thorswap.net/dogecoin',
308
308
  Ethereum = 'https://daemon.ethereum.shapeshift.com',
309
309
  Litecoin = 'https://node-router.thorswap.net/litecoin',
310
- Mayachain = 'https://tendermint.mayachain.info',
310
+ Mayachain = 'https://mayanode.mayachain.info',
311
311
  MayaStagenet = 'https://stagenet.tendermint.mayachain.info',
312
312
  Optimism = 'https://mainnet.optimism.io',
313
313
  Osmosis = 'https://lcd-osmosis.keplr.app',
@@ -387,7 +387,7 @@ export const ChainIdToChain: Record<ChainId, Chain> = {
387
387
  [ChainId.Ethereum]: Chain.Ethereum,
388
388
  [ChainId.Litecoin]: Chain.Litecoin,
389
389
  [ChainId.MayaStagenet]: Chain.Mayachain,
390
- [ChainId.Maya]: Chain.Mayachain,
390
+ [ChainId.Mayachain]: Chain.Mayachain,
391
391
  [ChainId.OptimismHex]: Chain.Optimism,
392
392
  [ChainId.Optimism]: Chain.Optimism,
393
393
  [ChainId.Osmosis]: Chain.Osmosis,