@volr/react 0.2.1 → 0.2.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/dist/index.cjs +0 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +0 -5
- package/dist/index.d.ts +0 -5
- package/dist/index.js +0 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -593,11 +593,6 @@ type VolrClient = {
|
|
|
593
593
|
* EVM namespace with address, signing methods, and chain client
|
|
594
594
|
*/
|
|
595
595
|
evm: EvmNamespace;
|
|
596
|
-
/**
|
|
597
|
-
* User's EVM wallet address
|
|
598
|
-
* @deprecated Use evm.address instead
|
|
599
|
-
*/
|
|
600
|
-
evmAddress: `0x${string}` | undefined;
|
|
601
596
|
/**
|
|
602
597
|
* User's email (if logged in with email)
|
|
603
598
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -593,11 +593,6 @@ type VolrClient = {
|
|
|
593
593
|
* EVM namespace with address, signing methods, and chain client
|
|
594
594
|
*/
|
|
595
595
|
evm: EvmNamespace;
|
|
596
|
-
/**
|
|
597
|
-
* User's EVM wallet address
|
|
598
|
-
* @deprecated Use evm.address instead
|
|
599
|
-
*/
|
|
600
|
-
evmAddress: `0x${string}` | undefined;
|
|
601
596
|
/**
|
|
602
597
|
* User's email (if logged in with email)
|
|
603
598
|
*/
|
package/dist/index.js
CHANGED
|
@@ -19604,8 +19604,6 @@ function useVolr() {
|
|
|
19604
19604
|
);
|
|
19605
19605
|
return {
|
|
19606
19606
|
evm,
|
|
19607
|
-
evmAddress: user?.evmAddress,
|
|
19608
|
-
// deprecated, kept for backward compatibility
|
|
19609
19607
|
email: user?.email,
|
|
19610
19608
|
isLoggedIn: user !== null,
|
|
19611
19609
|
signerType: user?.signerType,
|