@exodus/ethereum-plugin 2.1.1 → 2.1.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/CHANGELOG.md +83 -0
  2. package/package.json +14 -5
package/CHANGELOG.md ADDED
@@ -0,0 +1,83 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [2.1.2](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.1.1...@exodus/ethereum-plugin@2.1.2) (2024-06-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * avax integration test ([#2372](https://github.com/ExodusMovement/assets/issues/2372)) ([0f614a2](https://github.com/ExodusMovement/assets/commit/0f614a2b9a41460af0124b628e83467a0a4b2d05))
12
+ * **ethereum:** duplicate 'confirmationsNumber' argument in createAsset() ([#2569](https://github.com/ExodusMovement/assets/issues/2569)) ([7472fe5](https://github.com/ExodusMovement/assets/commit/7472fe5476839f879bad4fc82a9085d84d6868e9))
13
+
14
+
15
+
16
+ ## [2.1.1](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.1.0...@exodus/ethereum-plugin@2.1.1) (2024-05-20)
17
+
18
+ **Note:** Version bump only for package @exodus/ethereum-plugin
19
+
20
+
21
+
22
+
23
+
24
+ ## [2.1.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.0.0...@exodus/ethereum-plugin@2.1.0) (2024-05-17)
25
+
26
+
27
+ ### Features
28
+
29
+ * **ethereum-api:** expose `web3.simulateMessage` API ([#2302](https://github.com/ExodusMovement/assets/issues/2302)) ([fe97ec3](https://github.com/ExodusMovement/assets/commit/fe97ec3b6ae60d28b2f3ec2aed75aa228176b816))
30
+
31
+
32
+
33
+ ## [2.0.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@1.3.0...@exodus/ethereum-plugin@2.0.0) (2024-05-17)
34
+
35
+
36
+ ### ⚠ BREAKING CHANGES
37
+
38
+ * evm chain data to be factory params (#2115)
39
+ * chain id param in create and sign tx (#2282)
40
+ * moved fee data to each EVM plugin (#2233)
41
+
42
+ ### Features
43
+
44
+ * evm chain data to be factory params ([#2115](https://github.com/ExodusMovement/assets/issues/2115)) ([a2aeec1](https://github.com/ExodusMovement/assets/commit/a2aeec1b4da177b1e1bb85f92e93115fc97d5377))
45
+
46
+
47
+ ### Code Refactoring
48
+
49
+ * chain id param in create and sign tx ([#2282](https://github.com/ExodusMovement/assets/issues/2282)) ([4d915ac](https://github.com/ExodusMovement/assets/commit/4d915ac60e49ebe9d4e36d2fcecf7c17777f13b9))
50
+ * moved fee data to each EVM plugin ([#2233](https://github.com/ExodusMovement/assets/issues/2233)) ([ec066c0](https://github.com/ExodusMovement/assets/commit/ec066c076bc36a4c7c05810e83cdd47a7a25384b))
51
+
52
+
53
+
54
+ ## [1.3.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@1.2.0...@exodus/ethereum-plugin@1.3.0) (2024-05-10)
55
+
56
+
57
+ ### Features
58
+
59
+ * **BTC:** only support purpose 86 for multisig wallet accounts ([#2214](https://github.com/ExodusMovement/assets/issues/2214)) ([adac906](https://github.com/ExodusMovement/assets/commit/adac906c22d9a183531070015a7d5ff65a39b581))
60
+
61
+
62
+
63
+ ## [1.2.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@1.1.0...@exodus/ethereum-plugin@1.2.0) (2024-05-01)
64
+
65
+
66
+ ### Features
67
+
68
+ * eth unconfirmed receive/sent ([#2146](https://github.com/ExodusMovement/assets/issues/2146)) ([6b750c7](https://github.com/ExodusMovement/assets/commit/6b750c7d1f0ac633d72c285eaa31428a01cd1543))
69
+
70
+
71
+ ### Bug Fixes
72
+
73
+ * **ethereum-api:** set ZERO fee if not supplied ([#2201](https://github.com/ExodusMovement/assets/issues/2201)) ([be11417](https://github.com/ExodusMovement/assets/commit/be1141792882a7f0ffbb754d51970b30b15923ea))
74
+
75
+
76
+
77
+ ## 1.1.0 (2024-04-17)
78
+
79
+
80
+ ### Features
81
+
82
+ * ethereum-plugin (EVM 4) ([#2023](https://github.com/ExodusMovement/assets/issues/2023)) ([3c897c5](https://github.com/ExodusMovement/assets/commit/3c897c572e423e54d53a5737415481ec4e3cd654))
83
+ * generic evm fee monitors ([#2104](https://github.com/ExodusMovement/assets/issues/2104)) ([70ef5fd](https://github.com/ExodusMovement/assets/commit/70ef5fdb8d87b67957eb56878868145867797af5))
package/package.json CHANGED
@@ -1,25 +1,26 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-plugin",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "Exodus ethereum-plugin",
5
5
  "main": "src/index.js",
6
6
  "files": [
7
7
  "src",
8
+ "CHANGELOG.md",
8
9
  "!src/**/__tests__"
9
10
  ],
10
- "author": "Exodus",
11
+ "author": "Exodus Movement, Inc.",
11
12
  "license": "ISC",
12
13
  "publishConfig": {
13
14
  "access": "restricted"
14
15
  },
15
16
  "scripts": {
16
17
  "test": "run -T jest",
17
- "lint": "run -T eslint ./src",
18
+ "lint": "run -T eslint .",
18
19
  "lint:fix": "yarn lint --fix"
19
20
  },
20
21
  "dependencies": {
21
22
  "@exodus/asset-lib": "^4.1.0",
22
- "@exodus/ethereum-api": "^8.1.0",
23
+ "@exodus/ethereum-api": "^8.4.2",
23
24
  "@exodus/ethereum-lib": "^5.0.1",
24
25
  "@exodus/ethereum-meta": "^1.5.1",
25
26
  "@exodus/web3-ethereum-utils": "^3.27.1"
@@ -31,5 +32,13 @@
31
32
  "@exodus/fetch": "^1.3.0",
32
33
  "lodash": "^4.17.21"
33
34
  },
34
- "gitHead": "6c650d072cc04a4733f99e824a979530d1cd5302"
35
+ "bugs": {
36
+ "url": "https://github.com/ExodusMovement/assets/issues?q=is%3Aissue+is%3Aopen+label%3Aethereum-plugin"
37
+ },
38
+ "homepage": "https://github.com/ExodusMovement/assets/tree/master/ethereum/ethereum-plugin",
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git+https://github.com/ExodusMovement/assets.git"
42
+ },
43
+ "gitHead": "af504da8c4e9f5105c30b97b3e08e4e96f1e8fd4"
35
44
  }