@depay/web3-wallets-evm 14.6.4 → 14.7.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 +8 -0
- package/dist/esm/index.evm.js +481 -464
- package/dist/esm/index.js +27 -10
- package/dist/umd/index.evm.js +481 -464
- package/dist/umd/index.js +26 -9
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -408,6 +408,14 @@ transaction.value // '1000000000000000000'
|
|
|
408
408
|
|
|
409
409
|
in case wallet is connected to the wrong network and network cant be switched automatically.
|
|
410
410
|
|
|
411
|
+
### Get wallet transaction count
|
|
412
|
+
|
|
413
|
+
```javascript
|
|
414
|
+
import { transactionCount } from '@depay/web3-wallets'
|
|
415
|
+
|
|
416
|
+
let count = await transactionCount({ blockchain: 'polygon', address: '0x8Ffdb4Ee24a625856c82db7FAAE5Bd8B3406eF86' })
|
|
417
|
+
```
|
|
418
|
+
|
|
411
419
|
### Sign messages
|
|
412
420
|
|
|
413
421
|
```javascript
|