@depay/widgets 5.0.5 → 6.0.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.
- package/README.md +6 -6
- package/dist/{es → esm}/index.bundle.js +15 -15
- package/dist/{es → esm}/index.js +4 -2
- package/dist/umd/index.bundle.js +15 -15
- package/dist/umd/index.js +4 -2
- package/package.json +11 -10
- package/dist/cjs/index.bundle.js +0 -74205
- package/dist/cjs/index.js +0 -4496
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
You can either load the `@depay/widgets` package via CDN:
|
|
4
4
|
|
|
5
5
|
```
|
|
6
|
-
<script src="https://integrate.depay.fi/widgets/
|
|
6
|
+
<script src="https://integrate.depay.fi/widgets/v6.js"></script>
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
or you install `@depay/widgets` via the package manager of your choice and ship it as part of your application bundle:
|
|
@@ -58,7 +58,7 @@ In order to receive decentralized payments on any blockchain you need to have yo
|
|
|
58
58
|
### Quick start
|
|
59
59
|
|
|
60
60
|
```
|
|
61
|
-
<script src="https://integrate.depay.fi/widgets/
|
|
61
|
+
<script src="https://integrate.depay.fi/widgets/v6.js"/>
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
```
|
|
@@ -539,7 +539,7 @@ In order to sell tokens in a decentralized way, that token needs to have a liqui
|
|
|
539
539
|
### Quick start
|
|
540
540
|
|
|
541
541
|
```
|
|
542
|
-
<script src="https://integrate.depay.fi/widgets/
|
|
542
|
+
<script src="https://integrate.depay.fi/widgets/v6.js"/>
|
|
543
543
|
```
|
|
544
544
|
|
|
545
545
|
```javascript
|
|
@@ -901,7 +901,7 @@ In order to receive decentralized donation payments on any blockchain you need t
|
|
|
901
901
|
### Quick start
|
|
902
902
|
|
|
903
903
|
```
|
|
904
|
-
<script src="https://integrate.depay.fi/widgets/
|
|
904
|
+
<script src="https://integrate.depay.fi/widgets/v6.js"/>
|
|
905
905
|
```
|
|
906
906
|
|
|
907
907
|
```javascript
|
|
@@ -1255,7 +1255,7 @@ DePay Connect allows you to have your users connect their crypto wallet to your
|
|
|
1255
1255
|
Returns connected `account`, `accounts` and `wallet` in return.
|
|
1256
1256
|
|
|
1257
1257
|
```
|
|
1258
|
-
<script src="https://integrate.depay.fi/widgets/
|
|
1258
|
+
<script src="https://integrate.depay.fi/widgets/v6.js"/>
|
|
1259
1259
|
```
|
|
1260
1260
|
|
|
1261
1261
|
```javascript
|
|
@@ -1298,7 +1298,7 @@ test:cypress:debug
|
|
|
1298
1298
|
Test and debug single cypress file:
|
|
1299
1299
|
|
|
1300
1300
|
```
|
|
1301
|
-
yarn test:cypress:debug --spec "cypress/integration/
|
|
1301
|
+
yarn test:cypress:debug --spec "cypress/integration/Donation/overview.js"
|
|
1302
1302
|
```
|
|
1303
1303
|
|
|
1304
1304
|
### Release new versions to npm
|