@unisat/wallet-state 1.1.0 → 1.2.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/lib/actions/global.d.ts +2 -0
- package/lib/actions/global.d.ts.map +1 -0
- package/lib/context/ApprovalContext.d.ts +9 -0
- package/lib/context/ApprovalContext.d.ts.map +1 -0
- package/lib/context/DeviceContext.d.ts +17 -0
- package/lib/context/DeviceContext.d.ts.map +1 -0
- package/lib/context/I18nContext.d.ts +13 -0
- package/lib/context/I18nContext.d.ts.map +1 -0
- package/lib/context/NavigationContext.d.ts +218 -0
- package/lib/context/NavigationContext.d.ts.map +1 -0
- package/lib/context/PriceContext.d.ts +13 -0
- package/lib/context/PriceContext.d.ts.map +1 -0
- package/lib/context/StorageContext.d.ts +60 -0
- package/lib/context/StorageContext.d.ts.map +1 -0
- package/lib/context/ToolsContext.d.ts +17 -0
- package/lib/context/ToolsContext.d.ts.map +1 -0
- package/lib/context/WalletContext.d.ts +493 -0
- package/lib/context/WalletContext.d.ts.map +1 -0
- package/lib/context/index.d.ts +9 -0
- package/lib/context/index.d.ts.map +1 -0
- package/lib/hooks/accounts.d.ts +34 -0
- package/lib/hooks/accounts.d.ts.map +1 -0
- package/lib/hooks/base.d.ts +14 -0
- package/lib/hooks/base.d.ts.map +1 -0
- package/lib/hooks/browser.d.ts +32 -0
- package/lib/hooks/browser.d.ts.map +1 -0
- package/lib/hooks/discovery.d.ts +17 -0
- package/lib/hooks/discovery.d.ts.map +1 -0
- package/lib/hooks/global.d.ts +43 -0
- package/lib/hooks/global.d.ts.map +1 -0
- package/lib/hooks/index.d.ts +10 -0
- package/lib/hooks/index.d.ts.map +1 -0
- package/lib/hooks/keyrings.d.ts +5 -0
- package/lib/hooks/keyrings.d.ts.map +1 -0
- package/lib/hooks/settings.d.ts +43 -0
- package/lib/hooks/settings.d.ts.map +1 -0
- package/lib/hooks/transactions.d.ts +67 -0
- package/lib/hooks/transactions.d.ts.map +1 -0
- package/lib/hooks/ui.d.ts +112 -0
- package/lib/hooks/ui.d.ts.map +1 -0
- package/lib/index.d.mts +79 -18
- package/lib/index.d.ts +31 -2758
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +291 -78
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +289 -80
- package/lib/index.mjs.map +1 -1
- package/lib/reducers/accounts.d.ts +49 -0
- package/lib/reducers/accounts.d.ts.map +1 -0
- package/lib/reducers/browser.d.ts +49 -0
- package/lib/reducers/browser.d.ts.map +1 -0
- package/lib/reducers/discovery.d.ts +22 -0
- package/lib/reducers/discovery.d.ts.map +1 -0
- package/lib/reducers/global.d.ts +35 -0
- package/lib/reducers/global.d.ts.map +1 -0
- package/lib/reducers/index.d.ts +9 -0
- package/lib/reducers/index.d.ts.map +1 -0
- package/lib/reducers/keyrings.d.ts +10 -0
- package/lib/reducers/keyrings.d.ts.map +1 -0
- package/lib/reducers/settings.d.ts +16 -0
- package/lib/reducers/settings.d.ts.map +1 -0
- package/lib/reducers/transactions.d.ts +61 -0
- package/lib/reducers/transactions.d.ts.map +1 -0
- package/lib/reducers/ui.d.ts +55 -0
- package/lib/reducers/ui.d.ts.map +1 -0
- package/lib/types/index.d.mts +6 -2
- package/lib/types/index.d.ts +3 -30
- package/lib/types/index.d.ts.map +1 -0
- package/lib/types/index.js +7 -1
- package/lib/types/index.js.map +1 -1
- package/lib/types/index.mjs +7 -2
- package/lib/types/index.mjs.map +1 -1
- package/lib/types/ui.d.ts +31 -0
- package/lib/types/ui.d.ts.map +1 -0
- package/lib/ui-hooks/index.d.ts +55 -0
- package/lib/ui-hooks/index.d.ts.map +1 -0
- package/lib/ui-hooks/useActionOverviewSectionLogic.d.ts +12 -0
- package/lib/ui-hooks/useActionOverviewSectionLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useAddressTypeScreenLogic.d.ts +19 -0
- package/lib/ui-hooks/useAddressTypeScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useAlkanesBalanceCardLogic.d.ts +19 -0
- package/lib/ui-hooks/useAlkanesBalanceCardLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useAlkanesCollectionListLogic.d.ts +11 -0
- package/lib/ui-hooks/useAlkanesCollectionListLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useAlkanesListLogic.d.ts +14 -0
- package/lib/ui-hooks/useAlkanesListLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useAlkanesNFTListLogic.d.ts +11 -0
- package/lib/ui-hooks/useAlkanesNFTListLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useAlkanesNFTScreenLogic.d.ts +9 -0
- package/lib/ui-hooks/useAlkanesNFTScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useAlkanesTokenScreenLogic.d.ts +22 -0
- package/lib/ui-hooks/useAlkanesTokenScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useAmountInputLogic.d.ts +22 -0
- package/lib/ui-hooks/useAmountInputLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useAnnouncementCardLogic.d.ts +11 -0
- package/lib/ui-hooks/useAnnouncementCardLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useBRC20BalanceCardLogic.d.ts +26 -0
- package/lib/ui-hooks/useBRC20BalanceCardLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useBRC20InscribeTransferLogic.d.ts +103 -0
- package/lib/ui-hooks/useBRC20InscribeTransferLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useBRC20ListLogic.d.ts +14 -0
- package/lib/ui-hooks/useBRC20ListLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useBRC20ProgListLogic.d.ts +14 -0
- package/lib/ui-hooks/useBRC20ProgListLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useBRC20SendScreenLogic.d.ts +67 -0
- package/lib/ui-hooks/useBRC20SendScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useBRC20SingleStepScreenLogic.d.ts +36 -0
- package/lib/ui-hooks/useBRC20SingleStepScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useBRC20TokenScreenLogic.d.ts +75 -0
- package/lib/ui-hooks/useBRC20TokenScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useBalanceCardLogic.d.ts +26 -0
- package/lib/ui-hooks/useBalanceCardLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useBtcDisplayLogic.d.ts +5 -0
- package/lib/ui-hooks/useBtcDisplayLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useCAT20BalanceCardLogic.d.ts +20 -0
- package/lib/ui-hooks/useCAT20BalanceCardLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useCAT20ListLogic.d.ts +14 -0
- package/lib/ui-hooks/useCAT20ListLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useCAT20TokenScreenLogic.d.ts +19 -0
- package/lib/ui-hooks/useCAT20TokenScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useCAT721ListLogic.d.ts +11 -0
- package/lib/ui-hooks/useCAT721ListLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useCAT721NFTScreenLogic.d.ts +9 -0
- package/lib/ui-hooks/useCAT721NFTScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useCreatePasswordScreenLogic.d.ts +27 -0
- package/lib/ui-hooks/useCreatePasswordScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useCreateWalletLogicImportWordsStep.d.ts +78 -0
- package/lib/ui-hooks/useCreateWalletLogicImportWordsStep.d.ts.map +1 -0
- package/lib/ui-hooks/useEditAccountNameScreenLogic.d.ts +18 -0
- package/lib/ui-hooks/useEditAccountNameScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useEditContactScreenLogic.d.ts +24 -0
- package/lib/ui-hooks/useEditContactScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useEditWalletNameScreenLogic.d.ts +15 -0
- package/lib/ui-hooks/useEditWalletNameScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useExportMnemonicsScreenLogic.d.ts +18 -0
- package/lib/ui-hooks/useExportMnemonicsScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useExportPrivateKeyScreenLogic.d.ts +17 -0
- package/lib/ui-hooks/useExportPrivateKeyScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useFeeRateBarLogic.d.ts +34 -0
- package/lib/ui-hooks/useFeeRateBarLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useInfiniteList.d.ts +19 -0
- package/lib/ui-hooks/useInfiniteList.d.ts.map +1 -0
- package/lib/ui-hooks/useInscriptionListLogic.d.ts +11 -0
- package/lib/ui-hooks/useInscriptionListLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useLockTimePageLogic.d.ts +11 -0
- package/lib/ui-hooks/useLockTimePageLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useNotificationsLogic.d.ts +14 -0
- package/lib/ui-hooks/useNotificationsLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useOrdinalsInscriptionScreenLogic.d.ts +27 -0
- package/lib/ui-hooks/useOrdinalsInscriptionScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useRunesBalanceCardLogic.d.ts +19 -0
- package/lib/ui-hooks/useRunesBalanceCardLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useRunesListLogic.d.ts +14 -0
- package/lib/ui-hooks/useRunesListLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useRunesTokenScreenLogic.d.ts +22 -0
- package/lib/ui-hooks/useRunesTokenScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useSecurityCardLogic.d.ts +1 -0
- package/lib/ui-hooks/useSecurityCardLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useSendAlkanesNFTScreenLogic.d.ts +32 -0
- package/lib/ui-hooks/useSendAlkanesNFTScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useSendAlkanesScreenLogic.d.ts +37 -0
- package/lib/ui-hooks/useSendAlkanesScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useSendCAT20ScreenLogic.d.ts +44 -0
- package/lib/ui-hooks/useSendCAT20ScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useSendCAT721ScreenLogic.d.ts +40 -0
- package/lib/ui-hooks/useSendCAT721ScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useSendOrdinalsInscriptionScreenLogic.d.ts +22 -0
- package/lib/ui-hooks/useSendOrdinalsInscriptionScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useSendRunesScreenLogic.d.ts +30 -0
- package/lib/ui-hooks/useSendRunesScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useSettingsTabScreenLogic.d.ts +72 -0
- package/lib/ui-hooks/useSettingsTabScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useSignMessageLogic.d.ts +54 -0
- package/lib/ui-hooks/useSignMessageLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useSignPsbtLogic.d.ts +82 -0
- package/lib/ui-hooks/useSignPsbtLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useSplitOrdinalsInscriptionScreenLogic.d.ts +15 -0
- package/lib/ui-hooks/useSplitOrdinalsInscriptionScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useTxConfirmScreenLogic.d.ts +8 -0
- package/lib/ui-hooks/useTxConfirmScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useTxCreateScreenLogic.d.ts +28 -0
- package/lib/ui-hooks/useTxCreateScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useTxFailScreenLogic.d.ts +7 -0
- package/lib/ui-hooks/useTxFailScreenLogic.d.ts.map +1 -0
- package/lib/ui-hooks/useTxSuccessScreenLogic.d.ts +8 -0
- package/lib/ui-hooks/useTxSuccessScreenLogic.d.ts.map +1 -0
- package/lib/updater/accounts.d.ts +2 -0
- package/lib/updater/accounts.d.ts.map +1 -0
- package/lib/updater/index.d.ts +2 -0
- package/lib/updater/index.d.ts.map +1 -0
- package/lib/utils/bitcoin-utils.d.ts +7 -0
- package/lib/utils/bitcoin-utils.d.ts.map +1 -0
- package/lib/utils/eventBus.d.ts +12 -0
- package/lib/utils/eventBus.d.ts.map +1 -0
- package/lib/utils/password-utils.d.ts +12 -0
- package/lib/utils/password-utils.d.ts.map +1 -0
- package/lib/utils/ui-utils.d.ts +4 -0
- package/lib/utils/ui-utils.d.ts.map +1 -0
- package/package.json +3 -3
- package/src/context/WalletContext.tsx +56 -23
- package/src/hooks/settings.ts +10 -0
- package/src/hooks/transactions.ts +23 -2
- package/src/hooks/ui.ts +9 -1
- package/src/reducers/accounts.ts +3 -0
- package/src/reducers/ui.ts +21 -0
- package/src/types/ui.ts +6 -1
- package/src/ui-hooks/useAlkanesTokenScreenLogic.ts +8 -0
- package/src/ui-hooks/useBRC20InscribeTransferLogic.ts +30 -10
- package/src/ui-hooks/useBRC20ListLogic.ts +6 -2
- package/src/ui-hooks/useBRC20ProgListLogic.ts +7 -3
- package/src/ui-hooks/useBRC20SendScreenLogic.ts +19 -6
- package/src/ui-hooks/useBRC20TokenScreenLogic.ts +44 -24
- package/src/ui-hooks/useCAT20TokenScreenLogic.ts +5 -0
- package/src/ui-hooks/useEditAccountNameScreenLogic.ts +4 -4
- package/src/ui-hooks/useEditWalletNameScreenLogic.ts +5 -3
- package/src/ui-hooks/useRunesTokenScreenLogic.ts +7 -0
- package/src/ui-hooks/useSendAlkanesNFTScreenLogic.ts +24 -2
- package/src/ui-hooks/useSendAlkanesScreenLogic.ts +17 -1
- package/src/ui-hooks/useSendOrdinalsInscriptionScreenLogic.ts +15 -0
- package/src/ui-hooks/useSendRunesScreenLogic.ts +18 -1
- package/src/ui-hooks/useSplitOrdinalsInscriptionScreenLogic.ts +15 -1
- package/src/ui-hooks/useTxCreateScreenLogic.ts +17 -1
package/lib/index.d.mts
CHANGED
|
@@ -2,11 +2,11 @@ import * as _reduxjs_toolkit_dist_configureStore from '@reduxjs/toolkit/dist/con
|
|
|
2
2
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
3
3
|
import * as redux from 'redux';
|
|
4
4
|
import * as _unisat_wallet_shared from '@unisat/wallet-shared';
|
|
5
|
-
import { AppInfo, Inscription, WalletKeyring, WalletConfig, UnspentOutput, Account, BitcoinBalanceV2, TxHistoryItem, AppSummary, InscriptionSummary, AddressSummary, TokenBalance, TokenInfo, RuneBalance, RuneInfo, AlkanesBalance, AlkanesInfo, CAT_VERSION, CAT20Balance, CAT20TokenInfo, CAT721CollectionInfo, BabylonTxInfo, ToSignData, CoinPrice, VersionDetail, BitcoinBalance, SignedData, ToSignMessage, SignedMessage, ConnectedSite, FeeSummary, TickPriceItem, InscribeOrder, TokenTransfer, DecodedPsbt, LocalPsbtSummary, AddressTokenSummary, UTXO_Detail, UTXO, WebsiteResult, SignPsbtOptions, ToSignInput, AddressFlagType, CosmosSignDataType, AddressRunesTokenSummary, AddressCAT20TokenSummary, AddressCAT20UtxoSummary, CAT20MergeOrder, CAT721Balance, AddressCAT721CollectionSummary, BtcChannelItem, BabylonAddressSummary, CosmosBalance, AddressAlkanesTokenSummary, AlkanesCollection, BRC20HistoryItem, RateUsStatus, Announcement, StoredNotification, DummyTxType, ToAddressInfo, RawTxInfo, SignPsbtParams, SignPsbtResult, WordsType, RestoreWalletType, ApprovalSession, PsbtActionInfo } from '@unisat/wallet-shared';
|
|
5
|
+
import { AppInfo, Inscription, WalletKeyring, WalletConfig, UnspentOutput, Account, BitcoinBalanceV2, TxHistoryItem, AppSummary, InscriptionSummary, AddressSummary, TokenBalance, TokenInfo, RuneBalance, RuneInfo, AlkanesBalance, AlkanesInfo, CAT_VERSION, CAT20Balance, CAT20TokenInfo, CAT721CollectionInfo, BabylonTxInfo, ToSignData, CoinPrice, VersionDetail, BitcoinBalance, SignedData, ToSignMessage, SignedMessage, ConnectedSite, FeeSummary, TickPriceItem, InscribeOrder, TokenTransfer, DecodedPsbt, LocalPsbtSummary, AddressTokenSummary, UTXO_Detail, UTXO, WebsiteResult, SignPsbtOptions, ToSignInput, AddressFlagType, CosmosSignDataType, AddressRunesTokenSummary, AddressCAT20TokenSummary, AddressCAT20UtxoSummary, CAT20MergeOrder, AppExtra, CAT721Balance, AddressCAT721CollectionSummary, BtcChannelItem, BabylonAddressSummary, CosmosBalance, AddressAlkanesTokenSummary, AlkanesCollection, BRC20HistoryItem, RateUsStatus, Announcement, StoredNotification, DummyTxType, ToAddressInfo, RawTxInfo, SignPsbtParams, SignPsbtResult, WordsType, RestoreWalletType, ApprovalSession, PsbtActionInfo } from '@unisat/wallet-shared';
|
|
6
6
|
export { PsbtLocalInfo } from '@unisat/wallet-shared';
|
|
7
7
|
import * as _unisat_wallet_types from '@unisat/wallet-types';
|
|
8
8
|
import { ChainType, NetworkType, AddressType } from '@unisat/wallet-types';
|
|
9
|
-
import { AssetTabKey, OrdinalsAssetTabKey, CATAssetTabKey, AlkanesAssetTabKey, NavigationSource, TabOption } from './types/index.mjs';
|
|
9
|
+
import { AssetTabKey, OrdinalsAssetTabKey, CATAssetTabKey, AlkanesAssetTabKey, MoreAssetTabKey, NavigationSource, TabOption } from './types/index.mjs';
|
|
10
10
|
import * as react from 'react';
|
|
11
11
|
import react__default, { ReactNode } from 'react';
|
|
12
12
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
@@ -89,6 +89,7 @@ interface UIState {
|
|
|
89
89
|
ordinalsAssetTabKey: OrdinalsAssetTabKey;
|
|
90
90
|
catAssetTabKey: CATAssetTabKey;
|
|
91
91
|
alkanesAssetTabKey: AlkanesAssetTabKey;
|
|
92
|
+
moreAssetTabKey: MoreAssetTabKey;
|
|
92
93
|
uiTxCreateScreen: {
|
|
93
94
|
toInfo: {
|
|
94
95
|
address: string;
|
|
@@ -96,6 +97,7 @@ interface UIState {
|
|
|
96
97
|
inscription?: Inscription;
|
|
97
98
|
};
|
|
98
99
|
inputAmount: string;
|
|
100
|
+
enableRBF: boolean;
|
|
99
101
|
};
|
|
100
102
|
addressInput: {
|
|
101
103
|
address: string;
|
|
@@ -722,6 +724,7 @@ interface WalletController {
|
|
|
722
724
|
amount: number;
|
|
723
725
|
btcUtxos: UnspentOutput[];
|
|
724
726
|
feeRate: number;
|
|
727
|
+
enableRBF?: boolean;
|
|
725
728
|
memo?: string;
|
|
726
729
|
memos?: string[];
|
|
727
730
|
}): Promise<ToSignData>;
|
|
@@ -729,6 +732,7 @@ interface WalletController {
|
|
|
729
732
|
to: string;
|
|
730
733
|
btcUtxos: UnspentOutput[];
|
|
731
734
|
feeRate: number;
|
|
735
|
+
enableRBF?: boolean;
|
|
732
736
|
}): Promise<ToSignData>;
|
|
733
737
|
createSendInscriptionPsbt(data: {
|
|
734
738
|
to: string;
|
|
@@ -736,18 +740,21 @@ interface WalletController {
|
|
|
736
740
|
feeRate: number;
|
|
737
741
|
outputValue?: number;
|
|
738
742
|
btcUtxos: UnspentOutput[];
|
|
743
|
+
enableRBF?: boolean;
|
|
739
744
|
}): Promise<ToSignData>;
|
|
740
745
|
createSendMultipleInscriptionsPsbt(data: {
|
|
741
746
|
to: string;
|
|
742
747
|
inscriptionIds: string[];
|
|
743
748
|
feeRate: number;
|
|
744
749
|
btcUtxos: UnspentOutput[];
|
|
750
|
+
enableRBF?: boolean;
|
|
745
751
|
}): Promise<ToSignData>;
|
|
746
752
|
createSplitInscriptionPsbt(data: {
|
|
747
753
|
inscriptionId: string;
|
|
748
754
|
feeRate: number;
|
|
749
755
|
outputValue: number;
|
|
750
756
|
btcUtxos: UnspentOutput[];
|
|
757
|
+
enableRBF?: boolean;
|
|
751
758
|
}): Promise<ToSignData>;
|
|
752
759
|
pushTx(rawtx: string): Promise<string>;
|
|
753
760
|
queryDomainInfo(domain: string): Promise<Inscription>;
|
|
@@ -801,19 +808,33 @@ interface WalletController {
|
|
|
801
808
|
total: number;
|
|
802
809
|
list: Inscription[];
|
|
803
810
|
}>;
|
|
804
|
-
getBRC20List(address
|
|
811
|
+
getBRC20List({ address, currentPage, pageSize, }: {
|
|
812
|
+
address: string;
|
|
813
|
+
currentPage: number;
|
|
814
|
+
pageSize: number;
|
|
815
|
+
}): Promise<{
|
|
805
816
|
currentPage: number;
|
|
806
817
|
pageSize: number;
|
|
807
818
|
total: number;
|
|
808
819
|
list: TokenBalance[];
|
|
809
820
|
}>;
|
|
810
|
-
getBRC20ProgList(address
|
|
821
|
+
getBRC20ProgList({ address, currentPage, pageSize, }: {
|
|
822
|
+
address: string;
|
|
823
|
+
currentPage: number;
|
|
824
|
+
pageSize: number;
|
|
825
|
+
}): Promise<{
|
|
811
826
|
currentPage: number;
|
|
812
827
|
pageSize: number;
|
|
813
828
|
total: number;
|
|
814
829
|
list: TokenBalance[];
|
|
815
830
|
}>;
|
|
816
|
-
getBRC20TransferableList(address
|
|
831
|
+
getBRC20TransferableList({ address, ticker, tickerHex, currentPage, pageSize, }: {
|
|
832
|
+
address: string;
|
|
833
|
+
ticker: string;
|
|
834
|
+
tickerHex: string;
|
|
835
|
+
currentPage: number;
|
|
836
|
+
pageSize: number;
|
|
837
|
+
}): Promise<{
|
|
817
838
|
currentPage: number;
|
|
818
839
|
pageSize: number;
|
|
819
840
|
total: number;
|
|
@@ -825,7 +846,10 @@ interface WalletController {
|
|
|
825
846
|
total: number;
|
|
826
847
|
list: Inscription[];
|
|
827
848
|
}>;
|
|
828
|
-
getBRC20Summary(address
|
|
849
|
+
getBRC20Summary({ address, ticker, }: {
|
|
850
|
+
address: string;
|
|
851
|
+
ticker: string;
|
|
852
|
+
}): Promise<AddressTokenSummary>;
|
|
829
853
|
expireUICachedData(address: string): Promise<void>;
|
|
830
854
|
getWalletConfig(): Promise<WalletConfig>;
|
|
831
855
|
getSkippedVersion(): Promise<string>;
|
|
@@ -896,6 +920,7 @@ interface WalletController {
|
|
|
896
920
|
btcUtxos?: UnspentOutput[];
|
|
897
921
|
assetUtxos?: UnspentOutput[];
|
|
898
922
|
outputValue?: number;
|
|
923
|
+
enableRBF?: boolean;
|
|
899
924
|
}): Promise<ToSignData>;
|
|
900
925
|
setAutoLockTimeId(timeId: number): Promise<void>;
|
|
901
926
|
getAutoLockTimeId(): Promise<number>;
|
|
@@ -931,6 +956,7 @@ interface WalletController {
|
|
|
931
956
|
tab: string;
|
|
932
957
|
items: AppInfo[];
|
|
933
958
|
}[]>;
|
|
959
|
+
getAppExtra(id: string | number, locale?: string): Promise<AppExtra>;
|
|
934
960
|
getBannerList(): Promise<{
|
|
935
961
|
id: string;
|
|
936
962
|
img: string;
|
|
@@ -1008,7 +1034,7 @@ interface WalletController {
|
|
|
1008
1034
|
createSendBTCOffsetPsbt(tos: {
|
|
1009
1035
|
address: string;
|
|
1010
1036
|
satoshis: number;
|
|
1011
|
-
}[], feeRate: number): Promise<ToSignData>;
|
|
1037
|
+
}[], feeRate: number, enableRBF?: boolean): Promise<ToSignData>;
|
|
1012
1038
|
getAlkanesList(address: string, currentPage: number, pageSize: number): Promise<{
|
|
1013
1039
|
currentPage: number;
|
|
1014
1040
|
pageSize: number;
|
|
@@ -1023,6 +1049,7 @@ interface WalletController {
|
|
|
1023
1049
|
amount: string;
|
|
1024
1050
|
feeRate: number;
|
|
1025
1051
|
type: 'ft' | 'nft';
|
|
1052
|
+
enableRBF?: boolean;
|
|
1026
1053
|
}): Promise<ToSignData>;
|
|
1027
1054
|
getAlkanesCollectionList(address: string, currentPage: number, pageSize: number): Promise<{
|
|
1028
1055
|
list: AlkanesCollection[];
|
|
@@ -1054,6 +1081,8 @@ interface WalletController {
|
|
|
1054
1081
|
getNotificationUnreadCount(): Promise<number>;
|
|
1055
1082
|
getAcceptLowFeeMode(): Promise<boolean>;
|
|
1056
1083
|
setAcceptLowFeeMode(accept: boolean): Promise<void>;
|
|
1084
|
+
getEnableRBF(): Promise<boolean>;
|
|
1085
|
+
setEnableRBF(enableRBF: boolean): Promise<void>;
|
|
1057
1086
|
createTmpKeyringWithPublicKey(publicKey: string, addressType: AddressType): Promise<WalletKeyring>;
|
|
1058
1087
|
createKeyringWithPublicKey(data: string, addressType: AddressType): Promise<void>;
|
|
1059
1088
|
createTmpKeyringWithAddress(address: string): Promise<WalletKeyring>;
|
|
@@ -1185,6 +1214,8 @@ declare function useGetTxExplorerUrlCallback(): (txid: string) => string;
|
|
|
1185
1214
|
declare function useAddressExplorerUrl(address: string): string;
|
|
1186
1215
|
declare function useCAT20TokenInfoExplorerUrl(version: CAT_VERSION, tokenId: string): string;
|
|
1187
1216
|
declare function useBRC20TokenInfoExplorerUrl(ticker: string): string;
|
|
1217
|
+
declare function useRunesTokenInfoExplorerUrl(runeId: string): string;
|
|
1218
|
+
declare function useAlkanesTokenInfoExplorerUrl(alkaneId: string): string;
|
|
1188
1219
|
declare function useUnisatWebsite(): string;
|
|
1189
1220
|
declare function useIconBaseUrl(): string;
|
|
1190
1221
|
declare function useOrdinalsWebsite(): string;
|
|
@@ -1211,18 +1242,20 @@ declare function useSetDeveloperModeCallback(): (developerMode: boolean) => Prom
|
|
|
1211
1242
|
|
|
1212
1243
|
declare function useTransactionsState(): AppState['transactions'];
|
|
1213
1244
|
declare function useBitcoinTx(): BitcoinTx;
|
|
1214
|
-
declare function usePrepareSendBTCCallback(): ({ toAddressInfo, toAmount, feeRate, memo, memos, disableAutoAdjust, }: {
|
|
1245
|
+
declare function usePrepareSendBTCCallback(): ({ toAddressInfo, toAmount, feeRate, memo, memos, disableAutoAdjust, enableRBF, }: {
|
|
1215
1246
|
toAddressInfo: ToAddressInfo;
|
|
1216
1247
|
toAmount: number;
|
|
1217
1248
|
feeRate?: number;
|
|
1218
1249
|
memo?: string;
|
|
1219
1250
|
memos?: string[];
|
|
1220
1251
|
disableAutoAdjust?: boolean;
|
|
1252
|
+
enableRBF?: boolean;
|
|
1221
1253
|
}) => Promise<ToSignData>;
|
|
1222
|
-
declare function usePrepareSendBypassHeadOffsetsCallback(): ({ toAddressInfo, toAmount, feeRate, }: {
|
|
1254
|
+
declare function usePrepareSendBypassHeadOffsetsCallback(): ({ toAddressInfo, toAmount, feeRate, enableRBF, }: {
|
|
1223
1255
|
toAddressInfo: ToAddressInfo;
|
|
1224
1256
|
toAmount: number;
|
|
1225
1257
|
feeRate: number;
|
|
1258
|
+
enableRBF?: boolean;
|
|
1226
1259
|
}) => Promise<ToSignData>;
|
|
1227
1260
|
declare function usePushBitcoinTxCallback(): (rawtx: string) => Promise<{
|
|
1228
1261
|
success: boolean;
|
|
@@ -1230,21 +1263,24 @@ declare function usePushBitcoinTxCallback(): (rawtx: string) => Promise<{
|
|
|
1230
1263
|
error: string;
|
|
1231
1264
|
}>;
|
|
1232
1265
|
declare function useOrdinalsTx(): OrdinalsTx;
|
|
1233
|
-
declare function usePrepareSendOrdinalsInscriptionCallback(): ({ toAddressInfo, inscriptionId, feeRate, outputValue, }: {
|
|
1266
|
+
declare function usePrepareSendOrdinalsInscriptionCallback(): ({ toAddressInfo, inscriptionId, feeRate, outputValue, enableRBF, }: {
|
|
1234
1267
|
toAddressInfo: ToAddressInfo;
|
|
1235
1268
|
inscriptionId: string;
|
|
1236
1269
|
feeRate?: number;
|
|
1237
1270
|
outputValue?: number;
|
|
1271
|
+
enableRBF?: boolean;
|
|
1238
1272
|
}) => Promise<ToSignData>;
|
|
1239
|
-
declare function usePrepareSendOrdinalsInscriptionsCallback(): ({ toAddressInfo, inscriptionIds, feeRate, }: {
|
|
1273
|
+
declare function usePrepareSendOrdinalsInscriptionsCallback(): ({ toAddressInfo, inscriptionIds, feeRate, enableRBF, }: {
|
|
1240
1274
|
toAddressInfo: ToAddressInfo;
|
|
1241
1275
|
inscriptionIds: string[];
|
|
1242
1276
|
feeRate?: number;
|
|
1277
|
+
enableRBF?: boolean;
|
|
1243
1278
|
}) => Promise<ToSignData>;
|
|
1244
|
-
declare function useCreateSplitTxCallback(): ({ inscriptionId, feeRate, outputValue, }: {
|
|
1279
|
+
declare function useCreateSplitTxCallback(): ({ inscriptionId, feeRate, outputValue, enableRBF, }: {
|
|
1245
1280
|
inscriptionId: string;
|
|
1246
1281
|
feeRate: number;
|
|
1247
1282
|
outputValue: number;
|
|
1283
|
+
enableRBF?: boolean;
|
|
1248
1284
|
}) => Promise<ToSignData>;
|
|
1249
1285
|
declare function usePushOrdinalsTxCallback(): (rawtx: string) => Promise<{
|
|
1250
1286
|
success: boolean;
|
|
@@ -1258,21 +1294,23 @@ declare function useSetSpendUnavailableUtxosCallback(): (utxos: UnspentOutput[])
|
|
|
1258
1294
|
declare function useSafeBalance(): string;
|
|
1259
1295
|
declare function useAssetUtxosRunes(): UnspentOutput[];
|
|
1260
1296
|
declare function useFetchAssetUtxosRunesCallback(): (rune: string) => Promise<UnspentOutput[]>;
|
|
1261
|
-
declare function usePrepareSendRunesCallback(): ({ toAddressInfo, runeid, runeAmount, outputValue, feeRate, }: {
|
|
1297
|
+
declare function usePrepareSendRunesCallback(): ({ toAddressInfo, runeid, runeAmount, outputValue, feeRate, enableRBF, }: {
|
|
1262
1298
|
toAddressInfo: ToAddressInfo;
|
|
1263
1299
|
runeid: string;
|
|
1264
1300
|
runeAmount: string;
|
|
1265
1301
|
outputValue?: number;
|
|
1266
1302
|
feeRate: number;
|
|
1303
|
+
enableRBF?: boolean;
|
|
1267
1304
|
}) => Promise<ToSignData>;
|
|
1268
1305
|
declare function useRunesTx(): RunesTx;
|
|
1269
|
-
declare function usePrepareSendAlkanesCallback(): (toAddressInfo: ToAddressInfo, alkaneid: string, amount: string, feeRate: number, type: 'ft' | 'nft') => Promise<ToSignData>;
|
|
1306
|
+
declare function usePrepareSendAlkanesCallback(): (toAddressInfo: ToAddressInfo, alkaneid: string, amount: string, feeRate: number, type: 'ft' | 'nft', enableRBF?: boolean) => Promise<ToSignData>;
|
|
1270
1307
|
|
|
1271
1308
|
declare function useUIState(): AppState['ui'];
|
|
1272
1309
|
declare function useAssetTabKey(): AssetTabKey;
|
|
1273
1310
|
declare function useOrdinalsAssetTabKey(): OrdinalsAssetTabKey;
|
|
1274
1311
|
declare function useCATAssetTabKey(): CATAssetTabKey;
|
|
1275
1312
|
declare function useAlkanesAssetTabKey(): AlkanesAssetTabKey;
|
|
1313
|
+
declare function useMoreAssetTabKey(): MoreAssetTabKey;
|
|
1276
1314
|
declare function useUiTxCreateScreen(): {
|
|
1277
1315
|
toInfo: {
|
|
1278
1316
|
address: string;
|
|
@@ -1280,14 +1318,16 @@ declare function useUiTxCreateScreen(): {
|
|
|
1280
1318
|
inscription?: Inscription;
|
|
1281
1319
|
};
|
|
1282
1320
|
inputAmount: string;
|
|
1321
|
+
enableRBF: boolean;
|
|
1283
1322
|
};
|
|
1284
|
-
declare function useUpdateUiTxCreateScreen(): ({ toInfo, inputAmount, }: {
|
|
1323
|
+
declare function useUpdateUiTxCreateScreen(): ({ toInfo, inputAmount, enableRBF, }: {
|
|
1285
1324
|
toInfo?: {
|
|
1286
1325
|
address: string;
|
|
1287
1326
|
domain: string;
|
|
1288
1327
|
inscription?: Inscription;
|
|
1289
1328
|
};
|
|
1290
1329
|
inputAmount?: string;
|
|
1330
|
+
enableRBF?: boolean;
|
|
1291
1331
|
}) => void;
|
|
1292
1332
|
declare function useFeeRateBar(): {
|
|
1293
1333
|
feeRate: number;
|
|
@@ -1479,6 +1519,7 @@ interface ContextData$2 {
|
|
|
1479
1519
|
transferableList: TokenTransfer[];
|
|
1480
1520
|
inscriptionIdSet: Set<string>;
|
|
1481
1521
|
receiver: string;
|
|
1522
|
+
enableRBF: boolean;
|
|
1482
1523
|
rawTxInfo: RawTxInfo;
|
|
1483
1524
|
tokenInfo: TokenInfo;
|
|
1484
1525
|
}
|
|
@@ -1489,6 +1530,7 @@ interface UpdateContextDataParams$2 {
|
|
|
1489
1530
|
transferableList?: TokenTransfer[];
|
|
1490
1531
|
inscriptionIdSet?: Set<string>;
|
|
1491
1532
|
receiver?: string;
|
|
1533
|
+
enableRBF?: boolean;
|
|
1492
1534
|
rawTxInfo?: RawTxInfo;
|
|
1493
1535
|
}
|
|
1494
1536
|
interface BRC20SendStepParams {
|
|
@@ -1600,7 +1642,6 @@ declare function useBRC20TokenScreenLogic(): {
|
|
|
1600
1642
|
onProgBalance: string;
|
|
1601
1643
|
inWalletBalance: string;
|
|
1602
1644
|
outWalletBalanceItems: BRC20OutWalletBalanceItem[];
|
|
1603
|
-
hasOutWalletBalance: boolean;
|
|
1604
1645
|
enableHistory: boolean;
|
|
1605
1646
|
enableTrade: boolean;
|
|
1606
1647
|
enableMint: boolean;
|
|
@@ -1623,12 +1664,13 @@ declare function useBRC20TokenScreenLogic(): {
|
|
|
1623
1664
|
iconUrl: string;
|
|
1624
1665
|
iconShortName: string;
|
|
1625
1666
|
};
|
|
1667
|
+
showProgBalance: boolean;
|
|
1668
|
+
showSwapBalance: boolean;
|
|
1626
1669
|
onClickWrapBrc20Prog: () => void;
|
|
1627
1670
|
onClickUnwrapBrc20Prog: () => void;
|
|
1628
1671
|
onClickSendBrc20Prog: () => void;
|
|
1629
1672
|
onClickSwapInSwap: () => void;
|
|
1630
1673
|
onClickAddLiquidityInSwap: () => void;
|
|
1631
|
-
onClickRemoveLiquidityInSwap: () => void;
|
|
1632
1674
|
onClickWrapInSwap: () => void;
|
|
1633
1675
|
onClickUnwrapInSwap: () => void;
|
|
1634
1676
|
onClickSendInSwap: () => void;
|
|
@@ -1716,6 +1758,8 @@ declare function useSendOrdinalsInscriptionScreenLogic(): {
|
|
|
1716
1758
|
domain: string;
|
|
1717
1759
|
};
|
|
1718
1760
|
outputValue: number;
|
|
1761
|
+
enableRBF: boolean;
|
|
1762
|
+
setEnableRBF: (value: boolean) => void;
|
|
1719
1763
|
minOutputValue: number;
|
|
1720
1764
|
defaultOutputValue: number;
|
|
1721
1765
|
setOutputValue: react.Dispatch<react.SetStateAction<number>>;
|
|
@@ -1739,6 +1783,8 @@ declare function useTxCreateScreenLogic(): {
|
|
|
1739
1783
|
inputAmount: string;
|
|
1740
1784
|
onAmountInputChange: (amount: any) => void;
|
|
1741
1785
|
onAmountMaxClick: () => void;
|
|
1786
|
+
enableRBF: boolean;
|
|
1787
|
+
onRBFChange: (value: boolean) => void;
|
|
1742
1788
|
showUnavailable: boolean;
|
|
1743
1789
|
availableAmount: string;
|
|
1744
1790
|
unavailableAmount: string;
|
|
@@ -1769,6 +1815,7 @@ interface ContextData$1 {
|
|
|
1769
1815
|
isApproval: boolean;
|
|
1770
1816
|
tokenInfo?: TokenInfo;
|
|
1771
1817
|
amountEditable?: boolean;
|
|
1818
|
+
enableRBF: boolean;
|
|
1772
1819
|
}
|
|
1773
1820
|
interface UpdateContextDataParams$1 {
|
|
1774
1821
|
step?: Step;
|
|
@@ -1780,6 +1827,7 @@ interface UpdateContextDataParams$1 {
|
|
|
1780
1827
|
amount?: string;
|
|
1781
1828
|
tokenInfo?: TokenInfo;
|
|
1782
1829
|
amountEditable?: boolean;
|
|
1830
|
+
enableRBF?: boolean;
|
|
1783
1831
|
}
|
|
1784
1832
|
interface BRC20InscribeTransferParams {
|
|
1785
1833
|
contextData: ContextData$1;
|
|
@@ -1802,6 +1850,8 @@ declare function useBRC20InscribeTransferLogicStep1(params: BRC20InscribeTransfe
|
|
|
1802
1850
|
defaultOutputValue: number;
|
|
1803
1851
|
setOutputValue: react.Dispatch<react.SetStateAction<number>>;
|
|
1804
1852
|
disabled: boolean;
|
|
1853
|
+
enableRBF: boolean;
|
|
1854
|
+
setEnableRBF: (value: boolean) => void;
|
|
1805
1855
|
loadingOnly: boolean;
|
|
1806
1856
|
handleCancel: () => void;
|
|
1807
1857
|
};
|
|
@@ -1870,6 +1920,7 @@ declare function useAlkanesTokenScreenLogic(): {
|
|
|
1870
1920
|
onClickMint: () => void;
|
|
1871
1921
|
onClickSend: () => void;
|
|
1872
1922
|
onClickTrade: () => void;
|
|
1923
|
+
onClickViewOnExplorer: () => void;
|
|
1873
1924
|
iconInfo: {
|
|
1874
1925
|
iconUrl: string;
|
|
1875
1926
|
iconShortName: string;
|
|
@@ -1993,6 +2044,7 @@ declare function useRunesTokenScreenLogic(): {
|
|
|
1993
2044
|
onClickSend: () => void;
|
|
1994
2045
|
enableTrade: boolean;
|
|
1995
2046
|
onClickTrade: () => void;
|
|
2047
|
+
onClickViewOnExplorer: () => void;
|
|
1996
2048
|
};
|
|
1997
2049
|
|
|
1998
2050
|
interface BRC20BalanceCardProps {
|
|
@@ -2072,6 +2124,8 @@ declare function useSendRunesScreenLogic(): {
|
|
|
2072
2124
|
defaultOutputValue: number;
|
|
2073
2125
|
minOutputValue: number;
|
|
2074
2126
|
setOutputValue: react.Dispatch<react.SetStateAction<number>>;
|
|
2127
|
+
enableRBF: boolean;
|
|
2128
|
+
setEnableRBF: (value: boolean) => void;
|
|
2075
2129
|
t: (key: string, substitutions?: string | string[] | Record<string, string | number>) => string;
|
|
2076
2130
|
onClickBack: () => void;
|
|
2077
2131
|
onClickNext: () => void;
|
|
@@ -2302,6 +2356,7 @@ declare function useCAT20TokenScreenLogic(): {
|
|
|
2302
2356
|
onClickSend: (e: any) => void;
|
|
2303
2357
|
onClickTrade: (e: any) => void;
|
|
2304
2358
|
onClickBack: () => void;
|
|
2359
|
+
onClickViewOnExplorer: (e: any) => void;
|
|
2305
2360
|
t: (key: string, substitutions?: string | string[] | Record<string, string | number>) => string;
|
|
2306
2361
|
};
|
|
2307
2362
|
|
|
@@ -2310,6 +2365,8 @@ declare function useSplitOrdinalsInscriptionScreenLogic(): {
|
|
|
2310
2365
|
inscriptions: Inscription[];
|
|
2311
2366
|
minOutputValue: number;
|
|
2312
2367
|
splitedCount: number;
|
|
2368
|
+
enableRBF: boolean;
|
|
2369
|
+
setEnableRBF: (value: boolean) => void;
|
|
2313
2370
|
error: string;
|
|
2314
2371
|
disabled: boolean;
|
|
2315
2372
|
onOutputValueChange: (value: number) => void;
|
|
@@ -2357,6 +2414,7 @@ declare function useSendAlkanesNFTScreenLogic(): {
|
|
|
2357
2414
|
domain: string;
|
|
2358
2415
|
inscription?: Inscription;
|
|
2359
2416
|
};
|
|
2417
|
+
enableRBF: boolean;
|
|
2360
2418
|
disabled: boolean;
|
|
2361
2419
|
error: string;
|
|
2362
2420
|
setToInfo: react.Dispatch<react.SetStateAction<{
|
|
@@ -2364,6 +2422,7 @@ declare function useSendAlkanesNFTScreenLogic(): {
|
|
|
2364
2422
|
domain: string;
|
|
2365
2423
|
inscription?: Inscription;
|
|
2366
2424
|
}>>;
|
|
2425
|
+
setEnableRBF: (value: boolean) => void;
|
|
2367
2426
|
onCreateTxHandleConfirm: () => Promise<void>;
|
|
2368
2427
|
onCreateTxHandleBack: () => void;
|
|
2369
2428
|
onSignPsbtHandleConfirm: (signedDatas: SignedData[]) => Promise<void>;
|
|
@@ -2389,6 +2448,7 @@ declare function useSendAlkanesScreenLogic(): {
|
|
|
2389
2448
|
totalBalanceStr: string;
|
|
2390
2449
|
availableBalanceStr: string;
|
|
2391
2450
|
inputAmount: string;
|
|
2451
|
+
enableRBF: boolean;
|
|
2392
2452
|
disabled: boolean;
|
|
2393
2453
|
error: string;
|
|
2394
2454
|
setToInfo: react.Dispatch<react.SetStateAction<{
|
|
@@ -2397,6 +2457,7 @@ declare function useSendAlkanesScreenLogic(): {
|
|
|
2397
2457
|
inscription?: Inscription;
|
|
2398
2458
|
}>>;
|
|
2399
2459
|
setInputAmount: react.Dispatch<react.SetStateAction<string>>;
|
|
2460
|
+
setEnableRBF: (value: boolean) => void;
|
|
2400
2461
|
onClickBack: () => void;
|
|
2401
2462
|
onClickNext: () => Promise<void>;
|
|
2402
2463
|
onSignPsbtHandleConfirm: (signedDatas: SignedData[]) => Promise<void>;
|
|
@@ -2755,4 +2816,4 @@ type AppStore = ReturnType<typeof createAppStore>;
|
|
|
2755
2816
|
type AppState = ReturnType<AppStore['getState']>;
|
|
2756
2817
|
type AppDispatch = AppStore['dispatch'];
|
|
2757
2818
|
|
|
2758
|
-
export { AccountUpdater, ActionOverviewSectionProps, AlkanesAssetTabKey, AlkanesBalanceCardProps, AppDispatch, AppState, AppStore, ApprovalContext, ApprovalContextType, AssetTabKey, BRC20BalanceCardProps, BRC20InscribeTransferParams, BRC20OutWalletBalanceItem, BRC20SendStepParams, BRC20SendTabKey, BRC20SingleStepKey, BRC20TokenScreenTabKey, CAT20BalanceCardProps, CATAssetTabKey, ContextData$2 as ContextData, DeviceContext, DeviceContextType, I18nContext, I18nContextType, NavigationContext, NavigationContextType, NavigationSource, OrdinalsAssetTabKey, PriceProvider, RouteTypes, RunesBalanceCardProps, SendAlkanesNFTScreenStep, SendAlkanesScreenStep, SendCAT20ScreenStep, SendCAT721ScreenStep, SettingsItemType, SignMessageProps, SignPsbtProps, StorageContext, StorageContextType, TabOption, ToolsContext, ToolsContextType, UpdateContextDataParams$2 as UpdateContextDataParams, WalletProvider, WalletTabScreenTabKey, accountActions, browserActions, createAppStore, createStorageProvider, discoveryActions, getSupportedAssets, globalActions, keyringsActions, settingsActions, transactionsActions, uiActions, uiEventBus, useAccountAddress, useAccountBalance, useAccountInscriptions, useAccounts, useAccountsState, useActionOverviewSectionLogic, useAddressExplorerUrl, useAddressInput, useAddressSummary, useAddressTips, useAddressTypeScreenLogic, useAlkanesAssetTabKey, useAlkanesBalanceCardLogic, useAlkanesCollectionListLogic, useAlkanesIconInfo, useAlkanesListLogic, useAlkanesMarketPlaceWebsite, useAlkanesNFTListLogic, useAlkanesNFTScreenLogic, useAlkanesTokenScreenLogic, useAmountInput, useAmountInputLogic, useAnnouncementCardLogic, useAppDispatch, useAppList, useAppSelector, useAppSummary, useApproval, useAssetTabKey, useAssetUtxosRunes, useAsyncEffect, useAutoLockTimeId, useBRC20BalanceCardLogic, useBRC20IconInfo, useBRC20InscribeTransferLogic, useBRC20InscribeTransferLogicStep1, useBRC20InscribeTransferLogicStep2, useBRC20InscribeTransferLogicStep3, useBRC20InscribeTransferLogicStep4, useBRC20ListLogic, useBRC20MarketPlaceWebsite, useBRC20ProgListLogic, useBRC20SendScreenLogic, useBRC20SendScreenLogicStep1, useBRC20SendScreenLogicStep2, useBRC20SendScreenLogicStep3, useBRC20SingleStepScreenLogic, useBRC20TokenHistoryLogic, useBRC20TokenInfoExplorerUrl, useBRC20TokenScreenLogic, useBTCUnit, useBabylonConfig, useBackRefresh, useBalanceCardDetailExpanded, useBalanceCardLogic, useBannerList, useBitcoinTx, useBooted, useBrowserState, useBtcDisplayLogic, useCAT20BalanceCardLogic, useCAT20IconInfo, useCAT20ListLogic, useCAT20MarketPlaceWebsite, useCAT20TokenInfoExplorerUrl, useCAT20TokenScreenLogic, useCAT721ListLogic, useCAT721NFTContentBaseUrl, useCAT721NFTScreenLogic, useCATAssetTabKey, useChain, useChainType, useChangeAddressFlagCallback, useChangeChainTypeCallback, useChangeLocaleCallback, useChangeNetworkTypeCallback, useCreateAccountCallback, useCreateColdWalletCallback, useCreatePasswordScreenLogic, useCreateSplitTxCallback, useCreateWalletLogicImportWordsStep, useCurrentAccount, useCurrentAddress, useCurrentKeyring, useDeveloperMode, useDevice, useDiscoveryState, useEditAccountNameScreenLogic, useEditContactScreenLogic, useEditWalletNameScreenLogic, useExportMnemonicsScreenLogic, useExportPrivateKeyScreenLogic, useFeeRateBar, useFeeRateBarLogic, useFetchAssetUtxosRunesCallback, useFetchBalanceCallback, useFetchUtxosCallback, useGetTxExplorerUrlCallback, useGlobalState, useGoBackRefresh, useHasBiometricsKey, useHasNewBanner, useHistory, useI18n, useIconBaseUrl, useImportAccountCallback, useImportAccountsFromKeystoneCallback, useInfiniteListScrollOffset, useInfiniteListScrollState, useInscriptionListLogic, useInscriptionSummary, useIsBiometricsSupported, useIsInExpandView, useIsKeystoneWallet, useIsMainnetChain, useIsReady, useIsRefresh, useIsScrollViewBot, useIsScrollViewTop, useIsUnlockTimeRefres, useIsUnlocked, useKeyrings, useKeyringsState, useLastFetchInfo, useLayerState, useLocale, useLockCallback, useLockTimePageLogic, useLockedOverlayVisible, useModelPopover, useNavigation, useNetworkType, useNotificationsLogic, useOrdinalsAssetTabKey, useOrdinalsInscriptionScreenLogic, useOrdinalsTx, useOrdinalsWebsite, usePrepareSendAlkanesCallback, usePrepareSendBTCCallback, usePrepareSendBypassHeadOffsetsCallback, usePrepareSendOrdinalsInscriptionCallback, usePrepareSendOrdinalsInscriptionsCallback, usePrepareSendRunesCallback, usePrice, usePushBitcoinTxCallback, usePushOrdinalsTxCallback, useReadApp, useReadTab, useReloadAccounts, useResetAddressInput, useResetAmountInput, useResetFeeRateBar, useResetTxState, useResetUiTxCreateScreen, useRunesBalanceCardLogic, useRunesIconInfo, useRunesInscribeUrl, useRunesListLogic, useRunesMarketUrl, useRunesTokenScreenLogic, useRunesTx, useSafeBalance, useScreenState, useSendAlkanesNFTScreenLogic, useSendAlkanesScreenLogic, useSendCAT20ScreenLogic, useSendCAT721ScreenLogic, useSendOrdinalsInscriptionScreenLogic, useSendRunesScreenLogic, useSetCurrentAccountCallback, useSetDeveloperModeCallback, useSetLockedOverlayVisibleCallback, useSetSpendUnavailableUtxosCallback, useSetTabCallback, useSettingsState, useSettingsTabScreenLogic, useSignMessageLogic, useSignPsbtLogic, useSkipVersionCallback, useSpendUnavailableUtxos, useSplitOrdinalsInscriptionScreenLogic, useStorage, useSupportedAssets, useSwitchChainModalVisible, useTab, useThrottle, useToggleBalanceCardDetailExpanded, useTools, useTransactionsState, useTransferableListLogic, useTxConfirmScreenLogic, useTxCreateScreenLogic, useTxExplorerUrl, useTxFailScreenLogic, useTxSuccessScreenLogic, useUIState, useUiTxCreateScreen, useUnisatWebsite, useUnlockCallback, useUnlockRead, useUnlockRefresh, useUnreadAppSummary, useUnreadNotificationsCount, useUpdateAddressInput, useUpdateAmountInput, useUpdateFeeRateBar, useUpdateScreenStateCallback, useUpdateUiTxCreateScreen, useUtxos, useVersionInfo, useWallRefresh, useWallTabFocusRefresh, useWallTabRefresh, useWallet, useWalletConfig, useWalletTabScreenState, useWalletTopTabScreenState };
|
|
2819
|
+
export { AccountUpdater, ActionOverviewSectionProps, AlkanesAssetTabKey, AlkanesBalanceCardProps, AppDispatch, AppState, AppStore, ApprovalContext, ApprovalContextType, AssetTabKey, BRC20BalanceCardProps, BRC20InscribeTransferParams, BRC20OutWalletBalanceItem, BRC20SendStepParams, BRC20SendTabKey, BRC20SingleStepKey, BRC20TokenScreenTabKey, CAT20BalanceCardProps, CATAssetTabKey, ContextData$2 as ContextData, DeviceContext, DeviceContextType, I18nContext, I18nContextType, MoreAssetTabKey, NavigationContext, NavigationContextType, NavigationSource, OrdinalsAssetTabKey, PriceProvider, RouteTypes, RunesBalanceCardProps, SendAlkanesNFTScreenStep, SendAlkanesScreenStep, SendCAT20ScreenStep, SendCAT721ScreenStep, SettingsItemType, SignMessageProps, SignPsbtProps, StorageContext, StorageContextType, TabOption, ToolsContext, ToolsContextType, UpdateContextDataParams$2 as UpdateContextDataParams, WalletProvider, WalletTabScreenTabKey, accountActions, browserActions, createAppStore, createStorageProvider, discoveryActions, getSupportedAssets, globalActions, keyringsActions, settingsActions, transactionsActions, uiActions, uiEventBus, useAccountAddress, useAccountBalance, useAccountInscriptions, useAccounts, useAccountsState, useActionOverviewSectionLogic, useAddressExplorerUrl, useAddressInput, useAddressSummary, useAddressTips, useAddressTypeScreenLogic, useAlkanesAssetTabKey, useAlkanesBalanceCardLogic, useAlkanesCollectionListLogic, useAlkanesIconInfo, useAlkanesListLogic, useAlkanesMarketPlaceWebsite, useAlkanesNFTListLogic, useAlkanesNFTScreenLogic, useAlkanesTokenInfoExplorerUrl, useAlkanesTokenScreenLogic, useAmountInput, useAmountInputLogic, useAnnouncementCardLogic, useAppDispatch, useAppList, useAppSelector, useAppSummary, useApproval, useAssetTabKey, useAssetUtxosRunes, useAsyncEffect, useAutoLockTimeId, useBRC20BalanceCardLogic, useBRC20IconInfo, useBRC20InscribeTransferLogic, useBRC20InscribeTransferLogicStep1, useBRC20InscribeTransferLogicStep2, useBRC20InscribeTransferLogicStep3, useBRC20InscribeTransferLogicStep4, useBRC20ListLogic, useBRC20MarketPlaceWebsite, useBRC20ProgListLogic, useBRC20SendScreenLogic, useBRC20SendScreenLogicStep1, useBRC20SendScreenLogicStep2, useBRC20SendScreenLogicStep3, useBRC20SingleStepScreenLogic, useBRC20TokenHistoryLogic, useBRC20TokenInfoExplorerUrl, useBRC20TokenScreenLogic, useBTCUnit, useBabylonConfig, useBackRefresh, useBalanceCardDetailExpanded, useBalanceCardLogic, useBannerList, useBitcoinTx, useBooted, useBrowserState, useBtcDisplayLogic, useCAT20BalanceCardLogic, useCAT20IconInfo, useCAT20ListLogic, useCAT20MarketPlaceWebsite, useCAT20TokenInfoExplorerUrl, useCAT20TokenScreenLogic, useCAT721ListLogic, useCAT721NFTContentBaseUrl, useCAT721NFTScreenLogic, useCATAssetTabKey, useChain, useChainType, useChangeAddressFlagCallback, useChangeChainTypeCallback, useChangeLocaleCallback, useChangeNetworkTypeCallback, useCreateAccountCallback, useCreateColdWalletCallback, useCreatePasswordScreenLogic, useCreateSplitTxCallback, useCreateWalletLogicImportWordsStep, useCurrentAccount, useCurrentAddress, useCurrentKeyring, useDeveloperMode, useDevice, useDiscoveryState, useEditAccountNameScreenLogic, useEditContactScreenLogic, useEditWalletNameScreenLogic, useExportMnemonicsScreenLogic, useExportPrivateKeyScreenLogic, useFeeRateBar, useFeeRateBarLogic, useFetchAssetUtxosRunesCallback, useFetchBalanceCallback, useFetchUtxosCallback, useGetTxExplorerUrlCallback, useGlobalState, useGoBackRefresh, useHasBiometricsKey, useHasNewBanner, useHistory, useI18n, useIconBaseUrl, useImportAccountCallback, useImportAccountsFromKeystoneCallback, useInfiniteListScrollOffset, useInfiniteListScrollState, useInscriptionListLogic, useInscriptionSummary, useIsBiometricsSupported, useIsInExpandView, useIsKeystoneWallet, useIsMainnetChain, useIsReady, useIsRefresh, useIsScrollViewBot, useIsScrollViewTop, useIsUnlockTimeRefres, useIsUnlocked, useKeyrings, useKeyringsState, useLastFetchInfo, useLayerState, useLocale, useLockCallback, useLockTimePageLogic, useLockedOverlayVisible, useModelPopover, useMoreAssetTabKey, useNavigation, useNetworkType, useNotificationsLogic, useOrdinalsAssetTabKey, useOrdinalsInscriptionScreenLogic, useOrdinalsTx, useOrdinalsWebsite, usePrepareSendAlkanesCallback, usePrepareSendBTCCallback, usePrepareSendBypassHeadOffsetsCallback, usePrepareSendOrdinalsInscriptionCallback, usePrepareSendOrdinalsInscriptionsCallback, usePrepareSendRunesCallback, usePrice, usePushBitcoinTxCallback, usePushOrdinalsTxCallback, useReadApp, useReadTab, useReloadAccounts, useResetAddressInput, useResetAmountInput, useResetFeeRateBar, useResetTxState, useResetUiTxCreateScreen, useRunesBalanceCardLogic, useRunesIconInfo, useRunesInscribeUrl, useRunesListLogic, useRunesMarketUrl, useRunesTokenInfoExplorerUrl, useRunesTokenScreenLogic, useRunesTx, useSafeBalance, useScreenState, useSendAlkanesNFTScreenLogic, useSendAlkanesScreenLogic, useSendCAT20ScreenLogic, useSendCAT721ScreenLogic, useSendOrdinalsInscriptionScreenLogic, useSendRunesScreenLogic, useSetCurrentAccountCallback, useSetDeveloperModeCallback, useSetLockedOverlayVisibleCallback, useSetSpendUnavailableUtxosCallback, useSetTabCallback, useSettingsState, useSettingsTabScreenLogic, useSignMessageLogic, useSignPsbtLogic, useSkipVersionCallback, useSpendUnavailableUtxos, useSplitOrdinalsInscriptionScreenLogic, useStorage, useSupportedAssets, useSwitchChainModalVisible, useTab, useThrottle, useToggleBalanceCardDetailExpanded, useTools, useTransactionsState, useTransferableListLogic, useTxConfirmScreenLogic, useTxCreateScreenLogic, useTxExplorerUrl, useTxFailScreenLogic, useTxSuccessScreenLogic, useUIState, useUiTxCreateScreen, useUnisatWebsite, useUnlockCallback, useUnlockRead, useUnlockRefresh, useUnreadAppSummary, useUnreadNotificationsCount, useUpdateAddressInput, useUpdateAmountInput, useUpdateFeeRateBar, useUpdateScreenStateCallback, useUpdateUiTxCreateScreen, useUtxos, useVersionInfo, useWallRefresh, useWallTabFocusRefresh, useWallTabRefresh, useWallet, useWalletConfig, useWalletTabScreenState, useWalletTopTabScreenState };
|