@magic-sdk/provider 19.1.0-canary.98ed07f.0 → 19.1.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/CHANGELOG.md +27 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
# v19.1.0 (Tue Aug 08 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Jerryliu sc 81984 update loginwithemailotp interface with new [#596](https://github.com/magiclabs/magic-js/pull/596) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@Ariflo](https://github.com/Ariflo) [@Ethella](https://github.com/Ethella))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Implement nft.transfer api [#602](https://github.com/magiclabs/magic-js/pull/602) ([@ysm-dev](https://github.com/ysm-dev))
|
|
10
|
+
- code review: comment ([@ysm-dev](https://github.com/ysm-dev))
|
|
11
|
+
- implement nft.transfer api ([@ysm-dev](https://github.com/ysm-dev))
|
|
12
|
+
- Update IntermediaryEvents ([@Ethella](https://github.com/Ethella))
|
|
13
|
+
- Update Event handlers ([@Ethella](https://github.com/Ethella))
|
|
14
|
+
- Update events ([@Ethella](https://github.com/Ethella))
|
|
15
|
+
- Merge remote-tracking branch 'origin/master' into jerryliu-sc-81984-update-loginwithemailotp-interface-with-new ([@Ethella](https://github.com/Ethella))
|
|
16
|
+
- Add device verification events ([@Ethella](https://github.com/Ethella))
|
|
17
|
+
- Merge remote-tracking branch 'origin/master' ([@Ethella](https://github.com/Ethella))
|
|
18
|
+
|
|
19
|
+
#### Authors: 4
|
|
20
|
+
|
|
21
|
+
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
22
|
+
- Arian Flores ([@Ariflo](https://github.com/Ariflo))
|
|
23
|
+
- Chris Yang ([@ysm-dev](https://github.com/ysm-dev))
|
|
24
|
+
- Jerry Liu ([@Ethella](https://github.com/Ethella))
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
1
28
|
# v19.0.0 (Thu Jul 27 2023)
|
|
2
29
|
|
|
3
30
|
#### 💥 Breaking Change
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-sdk/provider",
|
|
3
|
-
"version": "19.1.0
|
|
3
|
+
"version": "19.1.0",
|
|
4
4
|
"description": "Core business logic for Magic SDK packages.",
|
|
5
5
|
"author": "Magic Labs <team@magic.link> (https://magic.link/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"tslib": "^2.3.1"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@magic-sdk/types": "16.1.0
|
|
38
|
+
"@magic-sdk/types": "^16.1.0",
|
|
39
39
|
"eventemitter3": "^4.0.4",
|
|
40
40
|
"web3-core": "1.5.2"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"localforage": "^1.7.4"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "b75b883c663b33405f63a0044f2129a453f0ec6b"
|
|
46
46
|
}
|