@privy-io/react-auth 1.59.2 → 1.59.3-beta-20240307234516
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/esm/index.js +231 -231
- package/dist/index.d.ts +4 -2
- package/dist/index.js +227 -227
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -467,7 +467,8 @@ declare class Embedded1193Provider extends EventEmitter implements EIP1193Provid
|
|
|
467
467
|
rpcConfig: RpcConfig;
|
|
468
468
|
chains: Chain[];
|
|
469
469
|
rpcTimeoutDuration: number;
|
|
470
|
-
|
|
470
|
+
appId: string;
|
|
471
|
+
constructor(walletProxy: EmbeddedWalletProxy, address: string, rpcConfig: RpcConfig, chains: Chain[], appId: string, chainId?: number);
|
|
471
472
|
handleSendTransaction(args: RequestArguments): Promise<string>;
|
|
472
473
|
private handleSwitchEthereumChain;
|
|
473
474
|
private handlePersonalSign;
|
|
@@ -775,6 +776,7 @@ declare class ConnectorManager extends EventEmitter<ConnectorManagerEvents> {
|
|
|
775
776
|
private initializedWalletConnectors;
|
|
776
777
|
private storedConnections;
|
|
777
778
|
private activeWallet?;
|
|
779
|
+
private privyAppId;
|
|
778
780
|
private walletConnectCloudProjectId;
|
|
779
781
|
private rpcConfig;
|
|
780
782
|
private chains;
|
|
@@ -782,7 +784,7 @@ declare class ConnectorManager extends EventEmitter<ConnectorManagerEvents> {
|
|
|
782
784
|
private store;
|
|
783
785
|
private walletList;
|
|
784
786
|
private shouldEnforceDefaultChainOnConnect;
|
|
785
|
-
constructor(walletConnectCloudProjectId: string, rpcConfig: RpcConfig, chains: Chain[], defaultChain: Chain, store: Store, walletList: WalletListEntry[], shouldEnforceDefaultChainOnConnect: boolean);
|
|
787
|
+
constructor(privyAppId: string, walletConnectCloudProjectId: string, rpcConfig: RpcConfig, chains: Chain[], defaultChain: Chain, store: Store, walletList: WalletListEntry[], shouldEnforceDefaultChainOnConnect: boolean);
|
|
786
788
|
/**
|
|
787
789
|
* The core wallets array that is exposed to developers. It builds
|
|
788
790
|
* the wallets away with the following logic:
|