@cookill/wallet-adapter 3.1.1 → 3.1.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.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/react.cjs +1378 -0
- package/dist/react.cjs.map +1 -1
- package/dist/react.d.cts +131 -1
- package/dist/react.d.ts +131 -1
- package/dist/react.js +1354 -1
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -190,6 +190,7 @@ interface ScanConnectURI {
|
|
|
190
190
|
/** Parsed session info */
|
|
191
191
|
session: ScanConnectSession;
|
|
192
192
|
}
|
|
193
|
+
type ScanConnectStatus = 'idle' | 'generating' | 'waiting' | 'scanned' | 'approving' | 'connected' | 'expired' | 'rejected' | 'error';
|
|
193
194
|
interface WalletInfo {
|
|
194
195
|
id: string;
|
|
195
196
|
name: string;
|
|
@@ -405,4 +406,4 @@ declare class SheepWallet {
|
|
|
405
406
|
private _setupEvents;
|
|
406
407
|
}
|
|
407
408
|
|
|
408
|
-
export { type BalanceResult, NETWORKS, type NetworkConfig, type RialoChainId, type RialoNetwork, type RialoProvider, SheepWallet as RialoWallet, SheepWallet, type SignedMessage, type TransactionRequest, type TransactionResult, type WalletAccount, type WalletEventType, type WalletInfo, SheepWallet as default, formatAddress, formatBalance, fromChainId, getProvider, getProvider as getRialoProvider, isInstalled, isInstalled as isRialoInstalled, isValidAddress, normalizeAccounts, parseBalance, toChainId, waitForProvider, waitForProvider as waitForRialoProvider, withTimeout };
|
|
409
|
+
export { type BalanceResult, NETWORKS, type NetworkConfig, type REXAccessPolicy, type REXCapabilities, type REXConfig, type REXPrivacyMode, type REXTransactionResult, type RialoChainId, type RialoNetwork, type RialoProvider, SheepWallet as RialoWallet, type ScanConnectDAppMetadata, type ScanConnectSession, type ScanConnectStatus, type ScanConnectURI, type ScanConnectWalletMetadata, type SfSCreateParams, type SfSCreditBalance, type SfSPosition, type SfSUpdateParams, SheepWallet, type SignedMessage, type TransactionRequest, type TransactionResult, type WalletAccount, type WalletEventType, type WalletInfo, SheepWallet as default, formatAddress, formatBalance, fromChainId, getProvider, getProvider as getRialoProvider, isInstalled, isInstalled as isRialoInstalled, isValidAddress, normalizeAccounts, parseBalance, toChainId, waitForProvider, waitForProvider as waitForRialoProvider, withTimeout };
|
package/dist/index.d.ts
CHANGED
|
@@ -190,6 +190,7 @@ interface ScanConnectURI {
|
|
|
190
190
|
/** Parsed session info */
|
|
191
191
|
session: ScanConnectSession;
|
|
192
192
|
}
|
|
193
|
+
type ScanConnectStatus = 'idle' | 'generating' | 'waiting' | 'scanned' | 'approving' | 'connected' | 'expired' | 'rejected' | 'error';
|
|
193
194
|
interface WalletInfo {
|
|
194
195
|
id: string;
|
|
195
196
|
name: string;
|
|
@@ -405,4 +406,4 @@ declare class SheepWallet {
|
|
|
405
406
|
private _setupEvents;
|
|
406
407
|
}
|
|
407
408
|
|
|
408
|
-
export { type BalanceResult, NETWORKS, type NetworkConfig, type RialoChainId, type RialoNetwork, type RialoProvider, SheepWallet as RialoWallet, SheepWallet, type SignedMessage, type TransactionRequest, type TransactionResult, type WalletAccount, type WalletEventType, type WalletInfo, SheepWallet as default, formatAddress, formatBalance, fromChainId, getProvider, getProvider as getRialoProvider, isInstalled, isInstalled as isRialoInstalled, isValidAddress, normalizeAccounts, parseBalance, toChainId, waitForProvider, waitForProvider as waitForRialoProvider, withTimeout };
|
|
409
|
+
export { type BalanceResult, NETWORKS, type NetworkConfig, type REXAccessPolicy, type REXCapabilities, type REXConfig, type REXPrivacyMode, type REXTransactionResult, type RialoChainId, type RialoNetwork, type RialoProvider, SheepWallet as RialoWallet, type ScanConnectDAppMetadata, type ScanConnectSession, type ScanConnectStatus, type ScanConnectURI, type ScanConnectWalletMetadata, type SfSCreateParams, type SfSCreditBalance, type SfSPosition, type SfSUpdateParams, SheepWallet, type SignedMessage, type TransactionRequest, type TransactionResult, type WalletAccount, type WalletEventType, type WalletInfo, SheepWallet as default, formatAddress, formatBalance, fromChainId, getProvider, getProvider as getRialoProvider, isInstalled, isInstalled as isRialoInstalled, isValidAddress, normalizeAccounts, parseBalance, toChainId, waitForProvider, waitForProvider as waitForRialoProvider, withTimeout };
|