@privata/widget 0.0.1
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/README.md +10 -0
- package/index.js +5 -0
- package/package.json +9 -0
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# @privata/widget
|
|
2
|
+
|
|
3
|
+
Reserved name for the upcoming standalone Privata embed widget loader.
|
|
4
|
+
For now, integrate via the hosted loader:
|
|
5
|
+
|
|
6
|
+
```html
|
|
7
|
+
<script src="https://privataswap.com/widget/sdk.js"></script>
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
See `@privata/wallet-api` for the typed partner client.
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@privata/widget",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Reserved. Privata embed widget loader. See @privata/wallet-api or https://privataswap.com/widget/sdk.js",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {"type": "git", "url": "https://github.com/privata/wallet-api"},
|
|
8
|
+
"homepage": "https://privataswap.com"
|
|
9
|
+
}
|