@onekeyfe/hd-web-sdk 0.2.25 → 0.2.27
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/build/data/messages/messages.json +20 -1
- package/build/iframe.html +1 -1
- package/build/js/iframe.6d61ba3a93548e6151ac.js +3 -0
- package/build/js/{iframe.42fb62cbb0005a131d3c.js.LICENSE.txt → iframe.6d61ba3a93548e6151ac.js.LICENSE.txt} +0 -0
- package/build/js/iframe.6d61ba3a93548e6151ac.js.map +1 -0
- package/build/onekey-js-sdk.js +4 -4
- package/build/onekey-js-sdk.js.map +1 -1
- package/build/onekey-js-sdk.min.js +1 -1
- package/build/onekey-js-sdk.min.js.map +1 -1
- package/package.json +6 -6
- package/build/js/iframe.42fb62cbb0005a131d3c.js +0 -3
- package/build/js/iframe.42fb62cbb0005a131d3c.js.map +0 -1
|
@@ -7029,9 +7029,19 @@
|
|
|
7029
7029
|
"packed": false
|
|
7030
7030
|
}
|
|
7031
7031
|
},
|
|
7032
|
+
"prefix": {
|
|
7033
|
+
"rule": "required",
|
|
7034
|
+
"type": "uint32",
|
|
7035
|
+
"id": 2
|
|
7036
|
+
},
|
|
7037
|
+
"network": {
|
|
7038
|
+
"rule": "required",
|
|
7039
|
+
"type": "string",
|
|
7040
|
+
"id": 3
|
|
7041
|
+
},
|
|
7032
7042
|
"show_display": {
|
|
7033
7043
|
"type": "bool",
|
|
7034
|
-
"id":
|
|
7044
|
+
"id": 4
|
|
7035
7045
|
}
|
|
7036
7046
|
}
|
|
7037
7047
|
},
|
|
@@ -7040,6 +7050,10 @@
|
|
|
7040
7050
|
"address": {
|
|
7041
7051
|
"type": "string",
|
|
7042
7052
|
"id": 1
|
|
7053
|
+
},
|
|
7054
|
+
"public_key": {
|
|
7055
|
+
"type": "string",
|
|
7056
|
+
"id": 2
|
|
7043
7057
|
}
|
|
7044
7058
|
}
|
|
7045
7059
|
},
|
|
@@ -7057,6 +7071,11 @@
|
|
|
7057
7071
|
"rule": "required",
|
|
7058
7072
|
"type": "bytes",
|
|
7059
7073
|
"id": 2
|
|
7074
|
+
},
|
|
7075
|
+
"network": {
|
|
7076
|
+
"rule": "required",
|
|
7077
|
+
"type": "string",
|
|
7078
|
+
"id": 3
|
|
7060
7079
|
}
|
|
7061
7080
|
}
|
|
7062
7081
|
},
|
package/build/iframe.html
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
const iframeScript = document.createElement('script');
|
|
26
26
|
iframeScript.setAttribute('type', 'text/javascript');
|
|
27
|
-
iframeScript.setAttribute('src', './js/iframe.
|
|
27
|
+
iframeScript.setAttribute('src', './js/iframe.6d61ba3a93548e6151ac.js');
|
|
28
28
|
iframeScript.setAttribute('async', 'false');
|
|
29
29
|
document.body.appendChild(iframeScript);
|
|
30
30
|
</script>
|