@depay/web3-wallets-evm 15.2.4 → 15.3.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/README.md +9 -0
- package/dist/esm/index.evm.js +402 -431
- package/dist/esm/index.js +27 -410
- package/dist/esm/index.solana.js +60770 -0
- package/dist/umd/index.evm.js +412 -441
- package/dist/umd/index.js +22 -405
- package/dist/umd/index.solana.js +60775 -0
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -32,6 +32,7 @@ This library supports the following blockchains:
|
|
|
32
32
|
- [BNB Smart Chain](https://www.binance.org/smartChain)
|
|
33
33
|
- [Polygon](https://polygon.technology)
|
|
34
34
|
- [Solana](https://solana.com)
|
|
35
|
+
- [Fantom](https://fantom.foundation)
|
|
35
36
|
- [Velas](https://velas.com)
|
|
36
37
|
|
|
37
38
|
This library supports the following wallets:
|
|
@@ -61,10 +62,18 @@ This library supports the following wallets:
|
|
|
61
62
|
|
|
62
63
|
In case you want to use and package only specific platforms, use platform-specific packages:
|
|
63
64
|
|
|
65
|
+
### EVM specific packaging
|
|
66
|
+
|
|
64
67
|
```javascript
|
|
65
68
|
import { getWallets } from '@depay/web3-wallets-evm'
|
|
66
69
|
```
|
|
67
70
|
|
|
71
|
+
### SOLANA specific packaging
|
|
72
|
+
|
|
73
|
+
```javascript
|
|
74
|
+
import { getWallets } from '@depay/web3-wallets-solana'
|
|
75
|
+
```
|
|
76
|
+
|
|
68
77
|
## Functionalities
|
|
69
78
|
|
|
70
79
|
### getWallets
|