├── .babelrc ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── desktop-logo ├── icns │ ├── rabet128.icns │ ├── rabet128r.icns │ ├── rabet16.icns │ ├── rabet16r.icns │ ├── rabet256.icns │ ├── rabet256r.icns │ ├── rabet32.icns │ ├── rabet32r.icns │ ├── rabet512r.icns │ └── rabet64.icns ├── ico │ ├── rabet128.ico │ ├── rabet16.ico │ ├── rabet16t.png │ ├── rabet256.ico │ ├── rabet256t.ico │ ├── rabet32.ico │ ├── rabet32t.ico │ ├── rabet64.ico │ └── rabet64t.ico └── png │ ├── rabet128.png │ ├── rabet128r.png │ ├── rabet16.png │ ├── rabet256.png │ ├── rabet256r.png │ ├── rabet32.png │ └── rabet64.png ├── externals.d.ts ├── jsconfig.json ├── logo ├── 128x128.png ├── 16x16.png ├── 32x32.png └── 48x48.png ├── manifest.json ├── manifestPlugin.js ├── manifest_template.json ├── package.json ├── packager ├── deb.js ├── redhat.js └── win.js ├── postcss.config.js ├── src ├── assets │ ├── fonts │ │ ├── Roboto │ │ │ ├── roboto-v20-latin-100.eot │ │ │ ├── roboto-v20-latin-100.svg │ │ │ ├── roboto-v20-latin-100.ttf │ │ │ ├── roboto-v20-latin-100.woff │ │ │ ├── roboto-v20-latin-100.woff2 │ │ │ ├── roboto-v20-latin-100italic.eot │ │ │ ├── roboto-v20-latin-100italic.svg │ │ │ ├── roboto-v20-latin-100italic.ttf │ │ │ ├── roboto-v20-latin-100italic.woff │ │ │ ├── roboto-v20-latin-100italic.woff2 │ │ │ ├── roboto-v20-latin-300.eot │ │ │ ├── roboto-v20-latin-300.svg │ │ │ ├── roboto-v20-latin-300.ttf │ │ │ ├── roboto-v20-latin-300.woff │ │ │ ├── roboto-v20-latin-300.woff2 │ │ │ ├── roboto-v20-latin-300italic.eot │ │ │ ├── roboto-v20-latin-300italic.svg │ │ │ ├── roboto-v20-latin-300italic.ttf │ │ │ ├── roboto-v20-latin-300italic.woff │ │ │ ├── roboto-v20-latin-300italic.woff2 │ │ │ ├── roboto-v20-latin-500.eot │ │ │ ├── roboto-v20-latin-500.svg │ │ │ ├── roboto-v20-latin-500.ttf │ │ │ ├── roboto-v20-latin-500.woff │ │ │ ├── roboto-v20-latin-500.woff2 │ │ │ ├── roboto-v20-latin-500italic.eot │ │ │ ├── roboto-v20-latin-500italic.svg │ │ │ ├── roboto-v20-latin-500italic.ttf │ │ │ ├── roboto-v20-latin-500italic.woff │ │ │ ├── roboto-v20-latin-500italic.woff2 │ │ │ ├── roboto-v20-latin-700.eot │ │ │ ├── roboto-v20-latin-700.svg │ │ │ ├── roboto-v20-latin-700.ttf │ │ │ ├── roboto-v20-latin-700.woff │ │ │ ├── roboto-v20-latin-700.woff2 │ │ │ ├── roboto-v20-latin-700italic.eot │ │ │ ├── roboto-v20-latin-700italic.svg │ │ │ ├── roboto-v20-latin-700italic.ttf │ │ │ ├── roboto-v20-latin-700italic.woff │ │ │ ├── roboto-v20-latin-700italic.woff2 │ │ │ ├── roboto-v20-latin-900.eot │ │ │ ├── roboto-v20-latin-900.svg │ │ │ ├── roboto-v20-latin-900.ttf │ │ │ ├── roboto-v20-latin-900.woff │ │ │ ├── roboto-v20-latin-900.woff2 │ │ │ ├── roboto-v20-latin-900italic.eot │ │ │ ├── roboto-v20-latin-900italic.svg │ │ │ ├── roboto-v20-latin-900italic.ttf │ │ │ ├── roboto-v20-latin-900italic.woff │ │ │ ├── roboto-v20-latin-900italic.woff2 │ │ │ ├── roboto-v20-latin-italic.eot │ │ │ ├── roboto-v20-latin-italic.svg │ │ │ ├── roboto-v20-latin-italic.ttf │ │ │ ├── roboto-v20-latin-italic.woff │ │ │ ├── roboto-v20-latin-italic.woff2 │ │ │ ├── roboto-v20-latin-regular.eot │ │ │ ├── roboto-v20-latin-regular.svg │ │ │ ├── roboto-v20-latin-regular.ttf │ │ │ ├── roboto-v20-latin-regular.woff │ │ │ └── roboto-v20-latin-regular.woff2 │ │ └── icon │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ └── images │ │ ├── angle-down.svg │ │ ├── angle-right.svg │ │ ├── arrow-down.svg │ │ ├── arrow-rotate.svg │ │ ├── checked.svg │ │ ├── checkmark.svg │ │ ├── double-arrow.svg │ │ ├── expand.svg │ │ ├── globe.svg │ │ ├── loading copy.svg │ │ ├── loading.svg │ │ ├── logo-light.png │ │ ├── logo.svg │ │ ├── offline.svg │ │ ├── pen-edit.svg │ │ ├── question-circle.png │ │ ├── share-arrow.svg │ │ ├── slides │ │ ├── design.png │ │ ├── first.png │ │ ├── identity.png │ │ ├── intraction.png │ │ └── secure.png │ │ ├── stellar-black.png │ │ ├── stellar.png │ │ ├── swap.svg │ │ ├── text-logo copy.svg │ │ ├── text-logo.svg │ │ ├── trash-delete.svg │ │ ├── world.svg │ │ ├── xlm-logo.svg │ │ └── xlm.png ├── background_script │ ├── actions │ │ ├── closeWindow.ts │ │ ├── connect.ts │ │ ├── contactRequestResponse.ts │ │ ├── disconnect.ts │ │ ├── isUnlocked.ts │ │ ├── login.ts │ │ ├── loginToSign.ts │ │ ├── network.ts │ │ ├── sign.ts │ │ └── signXdrResponse.ts │ ├── index.ts │ ├── types.ts │ └── utils │ │ ├── hasLoggedBefore.ts │ │ ├── isWebsiteConnected.ts │ │ ├── sendInterval.ts │ │ ├── sendResponseFactory.ts │ │ ├── setTimer.ts │ │ ├── sign.ts │ │ └── window.ts ├── client_script │ └── index.ts ├── common │ ├── messageEvents.ts │ ├── messageTypes.ts │ └── responses.ts ├── config.ts ├── content_script │ ├── createEventListener.js │ └── index.js ├── electron.js ├── helpers │ ├── BN.ts │ ├── ImageOnErrorHandler.ts │ ├── camelToTitle.ts │ ├── chromeHelper.ts │ ├── crypto.ts │ ├── getNetwork.ts │ ├── humanizeAmount.ts │ ├── isEmpty.ts │ ├── readConnectedWebsites.ts │ ├── shortName.ts │ ├── shorter.ts │ ├── showName.ts │ ├── smallDetail.js │ ├── storage-desktop.ts │ ├── storage-extension-old.ts │ ├── storage.ts │ └── svgToMarkupString.ts ├── interaction │ ├── actions │ │ ├── hadLoggedBeforeAction.js │ │ └── listenMessage.js │ ├── components │ │ ├── Button │ │ │ ├── index.jsx │ │ │ └── styles.less │ │ ├── Card │ │ │ ├── index.jsx │ │ │ └── styles.less │ │ ├── CopyText │ │ │ ├── index.jsx │ │ │ └── styles.less │ │ ├── Input │ │ │ ├── index.jsx │ │ │ └── styles.less │ │ ├── Loading │ │ │ ├── index.jsx │ │ │ └── styles.less │ │ ├── Logo │ │ │ ├── index.jsx │ │ │ └── styles.less │ │ ├── Operations │ │ │ ├── ShowOperation │ │ │ │ ├── ShowField │ │ │ │ │ └── index.jsx │ │ │ │ └── index.jsx │ │ │ └── index.jsx │ │ ├── PageTitle │ │ │ ├── index.jsx │ │ │ └── styles.less │ │ └── Tooltip │ │ │ ├── index.jsx │ │ │ └── styles.less │ ├── index.jsx │ ├── interaction.html │ ├── staticRes │ │ ├── enum.js │ │ ├── operations.js │ │ └── routes.js │ ├── styles │ │ ├── base.less │ │ ├── style.less │ │ └── theme.less │ ├── utils │ │ └── showObject.js │ └── views │ │ ├── App.jsx │ │ ├── Confirm │ │ ├── index.jsx │ │ └── styles.less │ │ ├── ContactRequest │ │ ├── index.jsx │ │ └── styles.less │ │ ├── LoadingNetwork │ │ └── index.jsx │ │ ├── Login │ │ ├── index.jsx │ │ └── styles.less │ │ ├── history.js │ │ └── index.jsx └── popup │ ├── actions │ ├── accounts │ │ ├── addBackup.ts │ │ ├── addConnectedWebsite.ts │ │ ├── changeActive.ts │ │ ├── changeName.ts │ │ ├── create.ts │ │ ├── lock.ts │ │ ├── remove.ts │ │ ├── removeAllConnectedWebsites.ts │ │ ├── removeConnectedWebsite.ts │ │ ├── restore.ts │ │ ├── showPrivateKey.ts │ │ └── store.ts │ ├── assetImages │ │ └── load.ts │ ├── contacts │ │ ├── add.ts │ │ ├── delete.ts │ │ ├── edit.ts │ │ └── store.ts │ ├── modal │ │ ├── close.ts │ │ └── open.ts │ ├── operations │ │ ├── add.ts │ │ ├── addAsset.ts │ │ ├── addMemo.ts │ │ ├── addMultipleAssets.ts │ │ ├── basicSend.ts │ │ ├── basicSwap.ts │ │ ├── change.ts │ │ ├── claimClaimableBalance.ts │ │ ├── clear.ts │ │ ├── remove.ts │ │ ├── send.ts │ │ └── setFlags.ts │ ├── options │ │ ├── change.ts │ │ ├── changeMasterPassword.ts │ │ ├── changeNetwork.ts │ │ ├── getHost.ts │ │ ├── setCurrencies.ts │ │ ├── setTimer.ts │ │ └── store.ts │ └── user │ │ ├── hadLoggedBeforeAction.ts │ │ ├── loadUser.ts │ │ ├── login.ts │ │ ├── logout.ts │ │ ├── register.ts │ │ ├── removeConnectedWebsites.ts │ │ └── removeData.ts │ ├── api │ ├── assetExists.ts │ ├── calculatePriceImpact.ts │ ├── getAccount.ts │ ├── getAssetImages.ts │ ├── getBids.ts │ ├── getClaimableBalances.ts │ ├── getCurrencies.ts │ ├── getSearchedAssets.ts │ ├── getStrictReceive.ts │ ├── getStrictSend.ts │ └── getTransactions.ts │ ├── blocks │ ├── AddAsset │ │ ├── CustomAsset │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── SearchAsset │ │ │ ├── AssetList │ │ │ │ ├── Asset.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ └── index.tsx │ ├── ClaimableBalances │ │ ├── index.tsx │ │ └── styles.ts │ ├── Op │ │ ├── Advance │ │ │ ├── Confirm │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── Operations │ │ │ │ ├── List │ │ │ │ │ ├── AllowTrustOps.tsx │ │ │ │ │ ├── ChangeTrustops.tsx │ │ │ │ │ ├── CreateClaimableBalance.tsx │ │ │ │ │ ├── ManageDataOps.tsx │ │ │ │ │ ├── OfferOps.tsx │ │ │ │ │ ├── PaymentOps.tsx │ │ │ │ │ ├── PaymentReceiveOps.tsx │ │ │ │ │ ├── PaymentSendOps.tsx │ │ │ │ │ ├── SetOptionOps.tsx │ │ │ │ │ ├── SignerOps.tsx │ │ │ │ │ └── ThresholdOps.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── options.ts │ │ │ └── index.tsx │ │ └── Basic │ │ │ ├── Confirm │ │ │ ├── Layout.tsx │ │ │ ├── Send.tsx │ │ │ ├── Swap.tsx │ │ │ └── styles.ts │ │ │ ├── SelectAsset │ │ │ ├── Search │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ │ ├── Send │ │ │ ├── DestinationSuggestion │ │ │ │ ├── AccountList │ │ │ │ │ ├── Account.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ │ ├── Swap │ │ │ ├── Detail │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── ShowFractional.tsx │ │ │ ├── index.tsx │ │ │ ├── styles.ts │ │ │ └── validateForm.ts │ │ │ └── index.tsx │ ├── QRCode │ │ ├── index.tsx │ │ └── styles.ts │ └── Setting │ │ ├── About │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── Backup │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── ChangePassword │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── Contacts │ │ ├── CreateContact │ │ │ └── index.tsx │ │ ├── EditContact │ │ │ └── index.tsx │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── General │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── components │ ├── AssetInfo │ │ ├── index.tsx │ │ ├── styles.ts │ │ └── useAssetInfo.tsx │ ├── BackupFile │ │ ├── index.tsx │ │ └── styles.ts │ ├── CreateWallet │ │ └── index.tsx │ ├── DeleteAccount │ │ ├── index.tsx │ │ └── styles.ts │ ├── DetectSize │ │ └── index.tsx │ ├── EditWalletName │ │ ├── index.tsx │ │ └── styles.ts │ ├── Error │ │ └── index.tsx │ ├── Loading │ │ ├── index.tsx │ │ └── styles.ts │ ├── Logo │ │ ├── index.tsx │ │ └── styles.ts │ ├── Modal │ │ └── index.tsx │ ├── ModalConnectStatus │ │ ├── index.tsx │ │ └── styles.ts │ ├── Modals │ │ └── index.tsx │ ├── Note │ │ ├── index.tsx │ │ └── styles.ts │ ├── NoteCard │ │ ├── index.tsx │ │ └── styles.ts │ ├── PageTitle │ │ ├── index.tsx │ │ └── styles.ts │ ├── PrivateKey │ │ ├── index.tsx │ │ └── styles.ts │ ├── ProtectedRoute │ │ └── index.tsx │ ├── RestoreWallet │ │ ├── TabList │ │ │ ├── ImportBackupFile │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ └── index.tsx │ │ ├── index.tsx │ │ └── styles.ts │ ├── SendButton │ │ └── index.tsx │ ├── ShowPrivateKey │ │ ├── index.tsx │ │ └── styles.ts │ ├── SuccessfulSubmission │ │ └── index.tsx │ ├── Transactions │ │ ├── Operations.tsx │ │ ├── Transaction.tsx │ │ ├── index.tsx │ │ └── styles.ts │ ├── UnprotectedRoute │ │ └── index.tsx │ └── common │ │ ├── Alert │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── Button │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── ButtonContainer │ │ └── index.tsx │ │ ├── Card │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── CopyKey │ │ └── index.tsx │ │ ├── CopyText │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── DatePicker │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── DropDown │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── Error │ │ └── index.tsx │ │ ├── Header │ │ ├── Network │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── SearchAccounts │ │ │ ├── AccountsList │ │ │ │ ├── Account.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── Menus.tsx │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── Image │ │ └── index.tsx │ │ ├── Input │ │ ├── InputBtn.tsx │ │ ├── InputHook.tsx │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── Layouts │ │ ├── BaseLayout │ │ │ └── index.tsx │ │ ├── ExpandLayout │ │ │ ├── AddressBlock.tsx │ │ │ ├── AssetBlock.tsx │ │ │ ├── AssetList │ │ │ │ ├── Asset.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── HeaderBlock.tsx │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── InsideTabLayout │ │ │ └── index.tsx │ │ └── SlidesLayout │ │ │ └── index.tsx │ │ ├── ModalDialog │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── Nodata │ │ └── index.tsx │ │ ├── Popover │ │ └── index.tsx │ │ ├── ScrollBar │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── SelectOption │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── Tabs │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── Title │ │ └── Ext │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── ToggleSwitch │ │ └── index.tsx │ │ ├── TooltipLabel │ │ └── index.tsx │ │ └── Tooltips │ │ └── index.tsx │ ├── events │ ├── changeAccount.ts │ └── changeNetwork.ts │ ├── features │ ├── loadAccount.ts │ ├── loadAssetBalance.ts │ ├── loadAssetImages.ts │ ├── loadBids.ts │ ├── loadClaimableBalances.ts │ ├── loadCurrencies.ts │ └── loadTransactions.ts │ ├── hooks │ ├── useActiveAccount.ts │ ├── useActiveCurrency.ts │ ├── useAssetPrice.ts │ ├── useDetectSize.ts │ ├── useLoadHome.ts │ ├── useTotalBalance.ts │ ├── useTypedSelector.ts │ └── useWindowDimensions.ts │ ├── index.tsx │ ├── models │ ├── api.ts │ ├── general.model.ts │ ├── index.ts │ └── operations.ts │ ├── operations │ ├── accountMerge.js │ ├── allowTrust.js │ ├── bumpSequence.js │ ├── changeTrust.js │ ├── createAccount.js │ ├── createPassiveSellOffer.js │ ├── inflation.js │ ├── manageBuyOffer.js │ ├── manageData.js │ ├── manageSellOffer.js │ ├── pathPaymentStrictReceive.js │ ├── pathPaymentStrictSend.js │ ├── payment.js │ └── setOptions.js │ ├── pages │ ├── AccountManager │ │ └── index.tsx │ ├── Assets │ │ └── index.tsx │ ├── BackupFile │ │ └── index.tsx │ ├── ClaimableBalances │ │ └── index.tsx │ ├── ConfirmFlag │ │ └── index.tsx │ ├── ConfirmLogin │ │ └── index.tsx │ ├── ConnectedWebsite │ │ ├── index.tsx │ │ └── styles.ts │ ├── CreateWallet │ │ └── index.tsx │ ├── DeleteAccount │ │ └── index.tsx │ ├── FirstPage │ │ └── index.tsx │ ├── Flags │ │ ├── index.tsx │ │ └── styles.ts │ ├── Intro │ │ ├── index.tsx │ │ └── styles.ts │ ├── IntroSlides │ │ ├── Slide1.tsx │ │ ├── Slide2.tsx │ │ ├── Slide3.tsx │ │ ├── Slide4.tsx │ │ ├── index.tsx │ │ └── styles.ts │ ├── LoadingNetwork │ │ └── index.tsx │ ├── LoadingOne │ │ └── index.tsx │ ├── Login │ │ └── index.tsx │ ├── OfflineMode │ │ ├── index.tsx │ │ └── styles.ts │ ├── PrivateKey │ │ ├── index.tsx │ │ └── styles.ts │ ├── RestoreWallet │ │ └── index.tsx │ ├── ShowPrivateKey │ │ └── index.tsx │ ├── expand │ │ └── EHome │ │ │ ├── Operation │ │ │ ├── Advance.tsx │ │ │ └── Basic.tsx │ │ │ ├── WalletInfo │ │ │ ├── ConfirmWallet │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ │ └── index.tsx │ ├── extension │ │ ├── AddAssets │ │ │ └── index.tsx │ │ ├── AddContact │ │ │ └── index.tsx │ │ ├── AssetInfo │ │ │ └── index.tsx │ │ ├── CreateWallet │ │ │ └── index.tsx │ │ ├── EditContact │ │ │ └── index.tsx │ │ ├── Error │ │ │ └── index.tsx │ │ ├── Home │ │ │ ├── DropDownList │ │ │ │ ├── DropMenu │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ └── index.tsx │ │ │ ├── Links │ │ │ │ └── index.tsx │ │ │ ├── TabList │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── ImportWallet │ │ │ └── index.tsx │ │ ├── LoadingNetwork │ │ │ └── index.tsx │ │ ├── Operation │ │ │ ├── Advance │ │ │ │ ├── Confirm │ │ │ │ │ ├── ConfirmTitle.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ └── Basic │ │ │ │ ├── ConfirmSend.tsx │ │ │ │ ├── ConfirmSwap.tsx │ │ │ │ └── index.tsx │ │ ├── Receive │ │ │ └── index.tsx │ │ ├── Send │ │ │ └── index.tsx │ │ ├── Setting │ │ │ └── index.tsx │ │ ├── SuccessfulSubmission │ │ │ └── index.tsx │ │ └── Swap │ │ │ └── index.tsx │ ├── index.tsx │ └── test │ │ └── index.tsx │ ├── popup.html │ ├── reducers │ ├── accounts2.ts │ ├── assetImages.ts │ ├── bids.ts │ ├── contacts.ts │ ├── currencies.ts │ ├── host.ts │ ├── index.ts │ ├── interval.ts │ ├── modal.ts │ ├── options.ts │ ├── transaction.ts │ └── user.ts │ ├── staticRes │ ├── currencies.ts │ ├── defaultAssets │ │ ├── AQUA.ts │ │ ├── LSP.ts │ │ ├── RBT.ts │ │ ├── USDC.ts │ │ ├── YBX.ts │ │ ├── index.ts │ │ └── types.ts │ ├── errorMessage.ts │ ├── flags.ts │ ├── operations.ts │ └── routes.ts │ ├── store.ts │ ├── styles │ ├── font.css │ ├── global.ts │ ├── main.css │ └── theme.ts │ ├── svgs │ ├── AngleDoubleUp.tsx │ ├── AngleDown.tsx │ ├── AngleDownBold.tsx │ ├── AngleForward.tsx │ ├── AngleRight.tsx │ ├── ArrowBack.tsx │ ├── ArrowDown.tsx │ ├── BlackCheck.tsx │ ├── Calender.tsx │ ├── CheckMark.tsx │ ├── CheckMarkFill.tsx │ ├── CircleQuestion.tsx │ ├── ContactusLinks.tsx │ ├── Copy.tsx │ ├── Download.tsx │ ├── EditPen.tsx │ ├── ExclamationCircle.tsx │ ├── ExclamationTriangle.tsx │ ├── Expand.tsx │ ├── File.tsx │ ├── FilledCopy.tsx │ ├── FullRabetLogo.tsx │ ├── HandCoins.tsx │ ├── Infinity.tsx │ ├── IntroLogo.tsx │ ├── InvisibleEye.tsx │ ├── Loading.tsx │ ├── Lock.tsx │ ├── LongArrowLeft.tsx │ ├── Multiply.tsx │ ├── PenEdit.tsx │ ├── Plus.tsx │ ├── PlusBold.tsx │ ├── RabetLogo.tsx │ ├── Rotate.tsx │ ├── Search.tsx │ ├── Setting.tsx │ ├── ShareArrow.tsx │ ├── ShareArrowSqaure.tsx │ ├── ShortRightArrow.tsx │ ├── Swap.tsx │ ├── TransactionActions.tsx │ ├── Trash.tsx │ ├── VisibleEye.tsx │ └── longArrowCircle.tsx │ ├── types │ └── react-slideshow-image │ │ └── index.d.ts │ └── utils │ ├── abbr.ts │ ├── activeAccount.ts │ ├── addAssetImagesToAssets.ts │ ├── capital.ts │ ├── checkOffline.ts │ ├── controlNumberInput.ts │ ├── createTab.ts │ ├── currentNetwork.ts │ ├── formatBalance.ts │ ├── formatCurrency.ts │ ├── getHostOfUrl.ts │ ├── getJSONAssets.ts │ ├── handleAssetAlt.ts │ ├── handleAssetImage.ts │ ├── handleAssetKeys.ts │ ├── handleAssetSymbol.ts │ ├── horizon │ ├── accountLink.ts │ └── transactionLink.ts │ ├── isInsufficientAsset.ts │ ├── isOtherConnected.ts │ ├── isTransferable.ts │ ├── matchAsset.ts │ ├── maxBalance.ts │ ├── maxText.ts │ ├── nativeAsset.ts │ ├── numberWithCommas.ts │ ├── operationMapper.ts │ ├── shorter.ts │ ├── stellarResolveClaimantPredicates.ts │ ├── swap │ ├── addDefaultAssets.ts │ ├── calculatePath.ts │ └── isAssetEqual.ts │ └── timeout.ts ├── tailwind.config.js ├── tsconfig.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/README.md -------------------------------------------------------------------------------- /desktop-logo/icns/rabet128.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/icns/rabet128.icns -------------------------------------------------------------------------------- /desktop-logo/icns/rabet128r.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/icns/rabet128r.icns -------------------------------------------------------------------------------- /desktop-logo/icns/rabet16.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/icns/rabet16.icns -------------------------------------------------------------------------------- /desktop-logo/icns/rabet16r.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/icns/rabet16r.icns -------------------------------------------------------------------------------- /desktop-logo/icns/rabet256.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/icns/rabet256.icns -------------------------------------------------------------------------------- /desktop-logo/icns/rabet256r.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/icns/rabet256r.icns -------------------------------------------------------------------------------- /desktop-logo/icns/rabet32.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/icns/rabet32.icns -------------------------------------------------------------------------------- /desktop-logo/icns/rabet32r.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/icns/rabet32r.icns -------------------------------------------------------------------------------- /desktop-logo/icns/rabet512r.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/icns/rabet512r.icns -------------------------------------------------------------------------------- /desktop-logo/icns/rabet64.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/icns/rabet64.icns -------------------------------------------------------------------------------- /desktop-logo/ico/rabet128.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/ico/rabet128.ico -------------------------------------------------------------------------------- /desktop-logo/ico/rabet16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/ico/rabet16.ico -------------------------------------------------------------------------------- /desktop-logo/ico/rabet16t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/ico/rabet16t.png -------------------------------------------------------------------------------- /desktop-logo/ico/rabet256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/ico/rabet256.ico -------------------------------------------------------------------------------- /desktop-logo/ico/rabet256t.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/ico/rabet256t.ico -------------------------------------------------------------------------------- /desktop-logo/ico/rabet32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/ico/rabet32.ico -------------------------------------------------------------------------------- /desktop-logo/ico/rabet32t.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/ico/rabet32t.ico -------------------------------------------------------------------------------- /desktop-logo/ico/rabet64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/ico/rabet64.ico -------------------------------------------------------------------------------- /desktop-logo/ico/rabet64t.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/ico/rabet64t.ico -------------------------------------------------------------------------------- /desktop-logo/png/rabet128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/png/rabet128.png -------------------------------------------------------------------------------- /desktop-logo/png/rabet128r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/png/rabet128r.png -------------------------------------------------------------------------------- /desktop-logo/png/rabet16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/png/rabet16.png -------------------------------------------------------------------------------- /desktop-logo/png/rabet256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/png/rabet256.png -------------------------------------------------------------------------------- /desktop-logo/png/rabet256r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/png/rabet256r.png -------------------------------------------------------------------------------- /desktop-logo/png/rabet32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/png/rabet32.png -------------------------------------------------------------------------------- /desktop-logo/png/rabet64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/desktop-logo/png/rabet64.png -------------------------------------------------------------------------------- /externals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/externals.d.ts -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/jsconfig.json -------------------------------------------------------------------------------- /logo/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/logo/128x128.png -------------------------------------------------------------------------------- /logo/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/logo/16x16.png -------------------------------------------------------------------------------- /logo/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/logo/32x32.png -------------------------------------------------------------------------------- /logo/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/logo/48x48.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/manifest.json -------------------------------------------------------------------------------- /manifestPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/manifestPlugin.js -------------------------------------------------------------------------------- /manifest_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/manifest_template.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/package.json -------------------------------------------------------------------------------- /packager/deb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/packager/deb.js -------------------------------------------------------------------------------- /packager/redhat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/packager/redhat.js -------------------------------------------------------------------------------- /packager/win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/packager/win.js -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-100.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-100.eot -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-100.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-100.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-100.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-100.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-100.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-100italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-100italic.eot -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-100italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-100italic.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-100italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-100italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-100italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-100italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-100italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-100italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-300.eot -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-300.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-300.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-300.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-300.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-300italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-300italic.eot -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-300italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-300italic.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-300italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-300italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-300italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-300italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-300italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-500.eot -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-500.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-500.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-500.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-500.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-500italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-500italic.eot -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-500italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-500italic.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-500italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-500italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-500italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-500italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-500italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-500italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-700.eot -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-700.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-700.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-700.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-700.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-700italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-700italic.eot -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-700italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-700italic.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-700italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-700italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-700italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-700italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-900.eot -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-900.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-900.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-900.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-900.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-900italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-900italic.eot -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-900italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-900italic.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-900italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-900italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-900italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-900italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-900italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-900italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-italic.eot -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-italic.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-regular.eot -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-regular.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/roboto-v20-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/Roboto/roboto-v20-latin-regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/icon/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/icon/icomoon.eot -------------------------------------------------------------------------------- /src/assets/fonts/icon/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/icon/icomoon.svg -------------------------------------------------------------------------------- /src/assets/fonts/icon/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/icon/icomoon.ttf -------------------------------------------------------------------------------- /src/assets/fonts/icon/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/fonts/icon/icomoon.woff -------------------------------------------------------------------------------- /src/assets/images/angle-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/angle-down.svg -------------------------------------------------------------------------------- /src/assets/images/angle-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/angle-right.svg -------------------------------------------------------------------------------- /src/assets/images/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/arrow-down.svg -------------------------------------------------------------------------------- /src/assets/images/arrow-rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/arrow-rotate.svg -------------------------------------------------------------------------------- /src/assets/images/checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/checked.svg -------------------------------------------------------------------------------- /src/assets/images/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/checkmark.svg -------------------------------------------------------------------------------- /src/assets/images/double-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/double-arrow.svg -------------------------------------------------------------------------------- /src/assets/images/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/expand.svg -------------------------------------------------------------------------------- /src/assets/images/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/globe.svg -------------------------------------------------------------------------------- /src/assets/images/loading copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/loading copy.svg -------------------------------------------------------------------------------- /src/assets/images/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/loading.svg -------------------------------------------------------------------------------- /src/assets/images/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/logo-light.png -------------------------------------------------------------------------------- /src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/logo.svg -------------------------------------------------------------------------------- /src/assets/images/offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/offline.svg -------------------------------------------------------------------------------- /src/assets/images/pen-edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/pen-edit.svg -------------------------------------------------------------------------------- /src/assets/images/question-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/question-circle.png -------------------------------------------------------------------------------- /src/assets/images/share-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/share-arrow.svg -------------------------------------------------------------------------------- /src/assets/images/slides/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/slides/design.png -------------------------------------------------------------------------------- /src/assets/images/slides/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/slides/first.png -------------------------------------------------------------------------------- /src/assets/images/slides/identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/slides/identity.png -------------------------------------------------------------------------------- /src/assets/images/slides/intraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/slides/intraction.png -------------------------------------------------------------------------------- /src/assets/images/slides/secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/slides/secure.png -------------------------------------------------------------------------------- /src/assets/images/stellar-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/stellar-black.png -------------------------------------------------------------------------------- /src/assets/images/stellar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/stellar.png -------------------------------------------------------------------------------- /src/assets/images/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/swap.svg -------------------------------------------------------------------------------- /src/assets/images/text-logo copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/text-logo copy.svg -------------------------------------------------------------------------------- /src/assets/images/text-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/text-logo.svg -------------------------------------------------------------------------------- /src/assets/images/trash-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/trash-delete.svg -------------------------------------------------------------------------------- /src/assets/images/world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/world.svg -------------------------------------------------------------------------------- /src/assets/images/xlm-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/xlm-logo.svg -------------------------------------------------------------------------------- /src/assets/images/xlm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/assets/images/xlm.png -------------------------------------------------------------------------------- /src/background_script/actions/closeWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/actions/closeWindow.ts -------------------------------------------------------------------------------- /src/background_script/actions/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/actions/connect.ts -------------------------------------------------------------------------------- /src/background_script/actions/contactRequestResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/actions/contactRequestResponse.ts -------------------------------------------------------------------------------- /src/background_script/actions/disconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/actions/disconnect.ts -------------------------------------------------------------------------------- /src/background_script/actions/isUnlocked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/actions/isUnlocked.ts -------------------------------------------------------------------------------- /src/background_script/actions/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/actions/login.ts -------------------------------------------------------------------------------- /src/background_script/actions/loginToSign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/actions/loginToSign.ts -------------------------------------------------------------------------------- /src/background_script/actions/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/actions/network.ts -------------------------------------------------------------------------------- /src/background_script/actions/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/actions/sign.ts -------------------------------------------------------------------------------- /src/background_script/actions/signXdrResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/actions/signXdrResponse.ts -------------------------------------------------------------------------------- /src/background_script/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/index.ts -------------------------------------------------------------------------------- /src/background_script/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/types.ts -------------------------------------------------------------------------------- /src/background_script/utils/hasLoggedBefore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/utils/hasLoggedBefore.ts -------------------------------------------------------------------------------- /src/background_script/utils/isWebsiteConnected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/utils/isWebsiteConnected.ts -------------------------------------------------------------------------------- /src/background_script/utils/sendInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/utils/sendInterval.ts -------------------------------------------------------------------------------- /src/background_script/utils/sendResponseFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/utils/sendResponseFactory.ts -------------------------------------------------------------------------------- /src/background_script/utils/setTimer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/utils/setTimer.ts -------------------------------------------------------------------------------- /src/background_script/utils/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/utils/sign.ts -------------------------------------------------------------------------------- /src/background_script/utils/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/background_script/utils/window.ts -------------------------------------------------------------------------------- /src/client_script/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/client_script/index.ts -------------------------------------------------------------------------------- /src/common/messageEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/common/messageEvents.ts -------------------------------------------------------------------------------- /src/common/messageTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/common/messageTypes.ts -------------------------------------------------------------------------------- /src/common/responses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/common/responses.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/content_script/createEventListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/content_script/createEventListener.js -------------------------------------------------------------------------------- /src/content_script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/content_script/index.js -------------------------------------------------------------------------------- /src/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/electron.js -------------------------------------------------------------------------------- /src/helpers/BN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/BN.ts -------------------------------------------------------------------------------- /src/helpers/ImageOnErrorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/ImageOnErrorHandler.ts -------------------------------------------------------------------------------- /src/helpers/camelToTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/camelToTitle.ts -------------------------------------------------------------------------------- /src/helpers/chromeHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/chromeHelper.ts -------------------------------------------------------------------------------- /src/helpers/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/crypto.ts -------------------------------------------------------------------------------- /src/helpers/getNetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/getNetwork.ts -------------------------------------------------------------------------------- /src/helpers/humanizeAmount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/humanizeAmount.ts -------------------------------------------------------------------------------- /src/helpers/isEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/isEmpty.ts -------------------------------------------------------------------------------- /src/helpers/readConnectedWebsites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/readConnectedWebsites.ts -------------------------------------------------------------------------------- /src/helpers/shortName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/shortName.ts -------------------------------------------------------------------------------- /src/helpers/shorter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/shorter.ts -------------------------------------------------------------------------------- /src/helpers/showName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/showName.ts -------------------------------------------------------------------------------- /src/helpers/smallDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/smallDetail.js -------------------------------------------------------------------------------- /src/helpers/storage-desktop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/storage-desktop.ts -------------------------------------------------------------------------------- /src/helpers/storage-extension-old.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/storage-extension-old.ts -------------------------------------------------------------------------------- /src/helpers/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/storage.ts -------------------------------------------------------------------------------- /src/helpers/svgToMarkupString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/helpers/svgToMarkupString.ts -------------------------------------------------------------------------------- /src/interaction/actions/hadLoggedBeforeAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/actions/hadLoggedBeforeAction.js -------------------------------------------------------------------------------- /src/interaction/actions/listenMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/actions/listenMessage.js -------------------------------------------------------------------------------- /src/interaction/components/Button/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Button/index.jsx -------------------------------------------------------------------------------- /src/interaction/components/Button/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Button/styles.less -------------------------------------------------------------------------------- /src/interaction/components/Card/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Card/index.jsx -------------------------------------------------------------------------------- /src/interaction/components/Card/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Card/styles.less -------------------------------------------------------------------------------- /src/interaction/components/CopyText/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/CopyText/index.jsx -------------------------------------------------------------------------------- /src/interaction/components/CopyText/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/CopyText/styles.less -------------------------------------------------------------------------------- /src/interaction/components/Input/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Input/index.jsx -------------------------------------------------------------------------------- /src/interaction/components/Input/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Input/styles.less -------------------------------------------------------------------------------- /src/interaction/components/Loading/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Loading/index.jsx -------------------------------------------------------------------------------- /src/interaction/components/Loading/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Loading/styles.less -------------------------------------------------------------------------------- /src/interaction/components/Logo/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Logo/index.jsx -------------------------------------------------------------------------------- /src/interaction/components/Logo/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Logo/styles.less -------------------------------------------------------------------------------- /src/interaction/components/Operations/ShowOperation/ShowField/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Operations/ShowOperation/ShowField/index.jsx -------------------------------------------------------------------------------- /src/interaction/components/Operations/ShowOperation/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Operations/ShowOperation/index.jsx -------------------------------------------------------------------------------- /src/interaction/components/Operations/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Operations/index.jsx -------------------------------------------------------------------------------- /src/interaction/components/PageTitle/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/PageTitle/index.jsx -------------------------------------------------------------------------------- /src/interaction/components/PageTitle/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/PageTitle/styles.less -------------------------------------------------------------------------------- /src/interaction/components/Tooltip/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/components/Tooltip/index.jsx -------------------------------------------------------------------------------- /src/interaction/components/Tooltip/styles.less: -------------------------------------------------------------------------------- 1 | :local(.container) { 2 | width: fit-content; 3 | } -------------------------------------------------------------------------------- /src/interaction/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/index.jsx -------------------------------------------------------------------------------- /src/interaction/interaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/interaction.html -------------------------------------------------------------------------------- /src/interaction/staticRes/enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/staticRes/enum.js -------------------------------------------------------------------------------- /src/interaction/staticRes/operations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/staticRes/operations.js -------------------------------------------------------------------------------- /src/interaction/staticRes/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/staticRes/routes.js -------------------------------------------------------------------------------- /src/interaction/styles/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/styles/base.less -------------------------------------------------------------------------------- /src/interaction/styles/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/styles/style.less -------------------------------------------------------------------------------- /src/interaction/styles/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/styles/theme.less -------------------------------------------------------------------------------- /src/interaction/utils/showObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/utils/showObject.js -------------------------------------------------------------------------------- /src/interaction/views/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/views/App.jsx -------------------------------------------------------------------------------- /src/interaction/views/Confirm/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/views/Confirm/index.jsx -------------------------------------------------------------------------------- /src/interaction/views/Confirm/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/views/Confirm/styles.less -------------------------------------------------------------------------------- /src/interaction/views/ContactRequest/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/views/ContactRequest/index.jsx -------------------------------------------------------------------------------- /src/interaction/views/ContactRequest/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/views/ContactRequest/styles.less -------------------------------------------------------------------------------- /src/interaction/views/LoadingNetwork/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/views/LoadingNetwork/index.jsx -------------------------------------------------------------------------------- /src/interaction/views/Login/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/views/Login/index.jsx -------------------------------------------------------------------------------- /src/interaction/views/Login/styles.less: -------------------------------------------------------------------------------- 1 | :local(.form) { 2 | margin-top: 78px; 3 | } 4 | -------------------------------------------------------------------------------- /src/interaction/views/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/views/history.js -------------------------------------------------------------------------------- /src/interaction/views/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/interaction/views/index.jsx -------------------------------------------------------------------------------- /src/popup/actions/accounts/addBackup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/accounts/addBackup.ts -------------------------------------------------------------------------------- /src/popup/actions/accounts/addConnectedWebsite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/accounts/addConnectedWebsite.ts -------------------------------------------------------------------------------- /src/popup/actions/accounts/changeActive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/accounts/changeActive.ts -------------------------------------------------------------------------------- /src/popup/actions/accounts/changeName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/accounts/changeName.ts -------------------------------------------------------------------------------- /src/popup/actions/accounts/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/accounts/create.ts -------------------------------------------------------------------------------- /src/popup/actions/accounts/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/accounts/lock.ts -------------------------------------------------------------------------------- /src/popup/actions/accounts/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/accounts/remove.ts -------------------------------------------------------------------------------- /src/popup/actions/accounts/removeAllConnectedWebsites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/accounts/removeAllConnectedWebsites.ts -------------------------------------------------------------------------------- /src/popup/actions/accounts/removeConnectedWebsite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/accounts/removeConnectedWebsite.ts -------------------------------------------------------------------------------- /src/popup/actions/accounts/restore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/accounts/restore.ts -------------------------------------------------------------------------------- /src/popup/actions/accounts/showPrivateKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/accounts/showPrivateKey.ts -------------------------------------------------------------------------------- /src/popup/actions/accounts/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/accounts/store.ts -------------------------------------------------------------------------------- /src/popup/actions/assetImages/load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/assetImages/load.ts -------------------------------------------------------------------------------- /src/popup/actions/contacts/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/contacts/add.ts -------------------------------------------------------------------------------- /src/popup/actions/contacts/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/contacts/delete.ts -------------------------------------------------------------------------------- /src/popup/actions/contacts/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/contacts/edit.ts -------------------------------------------------------------------------------- /src/popup/actions/contacts/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/contacts/store.ts -------------------------------------------------------------------------------- /src/popup/actions/modal/close.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/modal/close.ts -------------------------------------------------------------------------------- /src/popup/actions/modal/open.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/modal/open.ts -------------------------------------------------------------------------------- /src/popup/actions/operations/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/operations/add.ts -------------------------------------------------------------------------------- /src/popup/actions/operations/addAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/operations/addAsset.ts -------------------------------------------------------------------------------- /src/popup/actions/operations/addMemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/operations/addMemo.ts -------------------------------------------------------------------------------- /src/popup/actions/operations/addMultipleAssets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/operations/addMultipleAssets.ts -------------------------------------------------------------------------------- /src/popup/actions/operations/basicSend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/operations/basicSend.ts -------------------------------------------------------------------------------- /src/popup/actions/operations/basicSwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/operations/basicSwap.ts -------------------------------------------------------------------------------- /src/popup/actions/operations/change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/operations/change.ts -------------------------------------------------------------------------------- /src/popup/actions/operations/claimClaimableBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/operations/claimClaimableBalance.ts -------------------------------------------------------------------------------- /src/popup/actions/operations/clear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/operations/clear.ts -------------------------------------------------------------------------------- /src/popup/actions/operations/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/operations/remove.ts -------------------------------------------------------------------------------- /src/popup/actions/operations/send.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/operations/send.ts -------------------------------------------------------------------------------- /src/popup/actions/operations/setFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/operations/setFlags.ts -------------------------------------------------------------------------------- /src/popup/actions/options/change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/options/change.ts -------------------------------------------------------------------------------- /src/popup/actions/options/changeMasterPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/options/changeMasterPassword.ts -------------------------------------------------------------------------------- /src/popup/actions/options/changeNetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/options/changeNetwork.ts -------------------------------------------------------------------------------- /src/popup/actions/options/getHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/options/getHost.ts -------------------------------------------------------------------------------- /src/popup/actions/options/setCurrencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/options/setCurrencies.ts -------------------------------------------------------------------------------- /src/popup/actions/options/setTimer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/options/setTimer.ts -------------------------------------------------------------------------------- /src/popup/actions/options/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/options/store.ts -------------------------------------------------------------------------------- /src/popup/actions/user/hadLoggedBeforeAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/user/hadLoggedBeforeAction.ts -------------------------------------------------------------------------------- /src/popup/actions/user/loadUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/user/loadUser.ts -------------------------------------------------------------------------------- /src/popup/actions/user/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/user/login.ts -------------------------------------------------------------------------------- /src/popup/actions/user/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/user/logout.ts -------------------------------------------------------------------------------- /src/popup/actions/user/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/user/register.ts -------------------------------------------------------------------------------- /src/popup/actions/user/removeConnectedWebsites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/user/removeConnectedWebsites.ts -------------------------------------------------------------------------------- /src/popup/actions/user/removeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/actions/user/removeData.ts -------------------------------------------------------------------------------- /src/popup/api/assetExists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/api/assetExists.ts -------------------------------------------------------------------------------- /src/popup/api/calculatePriceImpact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/api/calculatePriceImpact.ts -------------------------------------------------------------------------------- /src/popup/api/getAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/api/getAccount.ts -------------------------------------------------------------------------------- /src/popup/api/getAssetImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/api/getAssetImages.ts -------------------------------------------------------------------------------- /src/popup/api/getBids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/api/getBids.ts -------------------------------------------------------------------------------- /src/popup/api/getClaimableBalances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/api/getClaimableBalances.ts -------------------------------------------------------------------------------- /src/popup/api/getCurrencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/api/getCurrencies.ts -------------------------------------------------------------------------------- /src/popup/api/getSearchedAssets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/api/getSearchedAssets.ts -------------------------------------------------------------------------------- /src/popup/api/getStrictReceive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/api/getStrictReceive.ts -------------------------------------------------------------------------------- /src/popup/api/getStrictSend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/api/getStrictSend.ts -------------------------------------------------------------------------------- /src/popup/api/getTransactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/api/getTransactions.ts -------------------------------------------------------------------------------- /src/popup/blocks/AddAsset/CustomAsset/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/AddAsset/CustomAsset/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/AddAsset/CustomAsset/styles.ts: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/popup/blocks/AddAsset/SearchAsset/AssetList/Asset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/AddAsset/SearchAsset/AssetList/Asset.tsx -------------------------------------------------------------------------------- /src/popup/blocks/AddAsset/SearchAsset/AssetList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/AddAsset/SearchAsset/AssetList/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/AddAsset/SearchAsset/AssetList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/AddAsset/SearchAsset/AssetList/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/AddAsset/SearchAsset/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/AddAsset/SearchAsset/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/AddAsset/SearchAsset/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/AddAsset/SearchAsset/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/AddAsset/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/AddAsset/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/ClaimableBalances/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/ClaimableBalances/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/ClaimableBalances/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/ClaimableBalances/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Confirm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Confirm/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Confirm/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Confirm/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Operations/List/AllowTrustOps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Operations/List/AllowTrustOps.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Operations/List/ChangeTrustops.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Operations/List/ChangeTrustops.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Operations/List/CreateClaimableBalance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Operations/List/CreateClaimableBalance.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Operations/List/ManageDataOps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Operations/List/ManageDataOps.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Operations/List/OfferOps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Operations/List/OfferOps.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Operations/List/PaymentOps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Operations/List/PaymentOps.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Operations/List/PaymentReceiveOps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Operations/List/PaymentReceiveOps.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Operations/List/PaymentSendOps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Operations/List/PaymentSendOps.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Operations/List/SetOptionOps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Operations/List/SetOptionOps.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Operations/List/SignerOps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Operations/List/SignerOps.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Operations/List/ThresholdOps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Operations/List/ThresholdOps.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Operations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Operations/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/Operations/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/Operations/options.ts -------------------------------------------------------------------------------- /src/popup/blocks/Op/Advance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Advance/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Confirm/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Confirm/Layout.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Confirm/Send.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Confirm/Send.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Confirm/Swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Confirm/Swap.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Confirm/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Confirm/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/SelectAsset/Search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/SelectAsset/Search/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/SelectAsset/Search/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/SelectAsset/Search/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/SelectAsset/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/SelectAsset/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/SelectAsset/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/SelectAsset/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Send/DestinationSuggestion/AccountList/Account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Send/DestinationSuggestion/AccountList/Account.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Send/DestinationSuggestion/AccountList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Send/DestinationSuggestion/AccountList/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Send/DestinationSuggestion/AccountList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Send/DestinationSuggestion/AccountList/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Send/DestinationSuggestion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Send/DestinationSuggestion/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Send/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Send/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Send/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Send/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Swap/Detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Swap/Detail/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Swap/Detail/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Swap/Detail/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Swap/ShowFractional.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Swap/ShowFractional.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Swap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Swap/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Swap/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Swap/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/Swap/validateForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/Swap/validateForm.ts -------------------------------------------------------------------------------- /src/popup/blocks/Op/Basic/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Op/Basic/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/QRCode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/QRCode/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/QRCode/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/QRCode/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Setting/About/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/About/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Setting/About/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/About/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Setting/Backup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/Backup/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Setting/Backup/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/Backup/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Setting/ChangePassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/ChangePassword/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Setting/ChangePassword/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/ChangePassword/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Setting/Contacts/CreateContact/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/Contacts/CreateContact/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Setting/Contacts/EditContact/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/Contacts/EditContact/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Setting/Contacts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/Contacts/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Setting/Contacts/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/Contacts/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Setting/General/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/General/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Setting/General/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/General/styles.ts -------------------------------------------------------------------------------- /src/popup/blocks/Setting/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/index.tsx -------------------------------------------------------------------------------- /src/popup/blocks/Setting/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/blocks/Setting/styles.ts -------------------------------------------------------------------------------- /src/popup/components/AssetInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/AssetInfo/index.tsx -------------------------------------------------------------------------------- /src/popup/components/AssetInfo/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/AssetInfo/styles.ts -------------------------------------------------------------------------------- /src/popup/components/AssetInfo/useAssetInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/AssetInfo/useAssetInfo.tsx -------------------------------------------------------------------------------- /src/popup/components/BackupFile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/BackupFile/index.tsx -------------------------------------------------------------------------------- /src/popup/components/BackupFile/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/BackupFile/styles.ts -------------------------------------------------------------------------------- /src/popup/components/CreateWallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/CreateWallet/index.tsx -------------------------------------------------------------------------------- /src/popup/components/DeleteAccount/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/DeleteAccount/index.tsx -------------------------------------------------------------------------------- /src/popup/components/DeleteAccount/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/DeleteAccount/styles.ts -------------------------------------------------------------------------------- /src/popup/components/DetectSize/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/DetectSize/index.tsx -------------------------------------------------------------------------------- /src/popup/components/EditWalletName/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/EditWalletName/index.tsx -------------------------------------------------------------------------------- /src/popup/components/EditWalletName/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/EditWalletName/styles.ts -------------------------------------------------------------------------------- /src/popup/components/Error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/Error/index.tsx -------------------------------------------------------------------------------- /src/popup/components/Loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/Loading/index.tsx -------------------------------------------------------------------------------- /src/popup/components/Loading/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/Loading/styles.ts -------------------------------------------------------------------------------- /src/popup/components/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/Logo/index.tsx -------------------------------------------------------------------------------- /src/popup/components/Logo/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/Logo/styles.ts -------------------------------------------------------------------------------- /src/popup/components/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/Modal/index.tsx -------------------------------------------------------------------------------- /src/popup/components/ModalConnectStatus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/ModalConnectStatus/index.tsx -------------------------------------------------------------------------------- /src/popup/components/ModalConnectStatus/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/ModalConnectStatus/styles.ts -------------------------------------------------------------------------------- /src/popup/components/Modals/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/Modals/index.tsx -------------------------------------------------------------------------------- /src/popup/components/Note/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/Note/index.tsx -------------------------------------------------------------------------------- /src/popup/components/Note/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/Note/styles.ts -------------------------------------------------------------------------------- /src/popup/components/NoteCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/NoteCard/index.tsx -------------------------------------------------------------------------------- /src/popup/components/NoteCard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/NoteCard/styles.ts -------------------------------------------------------------------------------- /src/popup/components/PageTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/PageTitle/index.tsx -------------------------------------------------------------------------------- /src/popup/components/PageTitle/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/PageTitle/styles.ts -------------------------------------------------------------------------------- /src/popup/components/PrivateKey/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/PrivateKey/index.tsx -------------------------------------------------------------------------------- /src/popup/components/PrivateKey/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/PrivateKey/styles.ts -------------------------------------------------------------------------------- /src/popup/components/ProtectedRoute/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/ProtectedRoute/index.tsx -------------------------------------------------------------------------------- /src/popup/components/RestoreWallet/TabList/ImportBackupFile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/RestoreWallet/TabList/ImportBackupFile/index.tsx -------------------------------------------------------------------------------- /src/popup/components/RestoreWallet/TabList/ImportBackupFile/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/RestoreWallet/TabList/ImportBackupFile/styles.ts -------------------------------------------------------------------------------- /src/popup/components/RestoreWallet/TabList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/RestoreWallet/TabList/index.tsx -------------------------------------------------------------------------------- /src/popup/components/RestoreWallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/RestoreWallet/index.tsx -------------------------------------------------------------------------------- /src/popup/components/RestoreWallet/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/RestoreWallet/styles.ts -------------------------------------------------------------------------------- /src/popup/components/SendButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/SendButton/index.tsx -------------------------------------------------------------------------------- /src/popup/components/ShowPrivateKey/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/ShowPrivateKey/index.tsx -------------------------------------------------------------------------------- /src/popup/components/ShowPrivateKey/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/ShowPrivateKey/styles.ts -------------------------------------------------------------------------------- /src/popup/components/SuccessfulSubmission/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/SuccessfulSubmission/index.tsx -------------------------------------------------------------------------------- /src/popup/components/Transactions/Operations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/Transactions/Operations.tsx -------------------------------------------------------------------------------- /src/popup/components/Transactions/Transaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/Transactions/Transaction.tsx -------------------------------------------------------------------------------- /src/popup/components/Transactions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/Transactions/index.tsx -------------------------------------------------------------------------------- /src/popup/components/Transactions/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/Transactions/styles.ts -------------------------------------------------------------------------------- /src/popup/components/UnprotectedRoute/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/UnprotectedRoute/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Alert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Alert/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Alert/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Alert/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Button/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Button/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Button/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/ButtonContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/ButtonContainer/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Card/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Card/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Card/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/CopyKey/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/CopyKey/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/CopyText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/CopyText/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/CopyText/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/CopyText/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/DatePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/DatePicker/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/DatePicker/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/DatePicker/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/DropDown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/DropDown/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/DropDown/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/DropDown/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/Error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Error/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Header/Network/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Header/Network/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Header/Network/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Header/Network/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/Header/SearchAccounts/AccountsList/Account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Header/SearchAccounts/AccountsList/Account.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Header/SearchAccounts/AccountsList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Header/SearchAccounts/AccountsList/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Header/SearchAccounts/AccountsList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Header/SearchAccounts/AccountsList/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/Header/SearchAccounts/Menus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Header/SearchAccounts/Menus.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Header/SearchAccounts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Header/SearchAccounts/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Header/SearchAccounts/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Header/SearchAccounts/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Header/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Header/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Header/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/Image/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Image/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Input/InputBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Input/InputBtn.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Input/InputHook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Input/InputHook.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Input/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Input/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Input/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/Layouts/BaseLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Layouts/BaseLayout/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Layouts/ExpandLayout/AddressBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Layouts/ExpandLayout/AddressBlock.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Layouts/ExpandLayout/AssetBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Layouts/ExpandLayout/AssetBlock.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Layouts/ExpandLayout/AssetList/Asset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Layouts/ExpandLayout/AssetList/Asset.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Layouts/ExpandLayout/AssetList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Layouts/ExpandLayout/AssetList/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Layouts/ExpandLayout/AssetList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Layouts/ExpandLayout/AssetList/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/Layouts/ExpandLayout/HeaderBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Layouts/ExpandLayout/HeaderBlock.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Layouts/ExpandLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Layouts/ExpandLayout/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Layouts/ExpandLayout/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Layouts/ExpandLayout/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/Layouts/InsideTabLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Layouts/InsideTabLayout/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Layouts/SlidesLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Layouts/SlidesLayout/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/ModalDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/ModalDialog/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/ModalDialog/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/ModalDialog/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/Nodata/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Nodata/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Popover/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Popover/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/ScrollBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/ScrollBar/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/ScrollBar/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/ScrollBar/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/SelectOption/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/SelectOption/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/SelectOption/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/SelectOption/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/Tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Tabs/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Tabs/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Tabs/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/Title/Ext/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Title/Ext/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Title/Ext/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Title/Ext/styles.ts -------------------------------------------------------------------------------- /src/popup/components/common/ToggleSwitch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/ToggleSwitch/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/TooltipLabel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/TooltipLabel/index.tsx -------------------------------------------------------------------------------- /src/popup/components/common/Tooltips/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/components/common/Tooltips/index.tsx -------------------------------------------------------------------------------- /src/popup/events/changeAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/events/changeAccount.ts -------------------------------------------------------------------------------- /src/popup/events/changeNetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/events/changeNetwork.ts -------------------------------------------------------------------------------- /src/popup/features/loadAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/features/loadAccount.ts -------------------------------------------------------------------------------- /src/popup/features/loadAssetBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/features/loadAssetBalance.ts -------------------------------------------------------------------------------- /src/popup/features/loadAssetImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/features/loadAssetImages.ts -------------------------------------------------------------------------------- /src/popup/features/loadBids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/features/loadBids.ts -------------------------------------------------------------------------------- /src/popup/features/loadClaimableBalances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/features/loadClaimableBalances.ts -------------------------------------------------------------------------------- /src/popup/features/loadCurrencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/features/loadCurrencies.ts -------------------------------------------------------------------------------- /src/popup/features/loadTransactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/features/loadTransactions.ts -------------------------------------------------------------------------------- /src/popup/hooks/useActiveAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/hooks/useActiveAccount.ts -------------------------------------------------------------------------------- /src/popup/hooks/useActiveCurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/hooks/useActiveCurrency.ts -------------------------------------------------------------------------------- /src/popup/hooks/useAssetPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/hooks/useAssetPrice.ts -------------------------------------------------------------------------------- /src/popup/hooks/useDetectSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/hooks/useDetectSize.ts -------------------------------------------------------------------------------- /src/popup/hooks/useLoadHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/hooks/useLoadHome.ts -------------------------------------------------------------------------------- /src/popup/hooks/useTotalBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/hooks/useTotalBalance.ts -------------------------------------------------------------------------------- /src/popup/hooks/useTypedSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/hooks/useTypedSelector.ts -------------------------------------------------------------------------------- /src/popup/hooks/useWindowDimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/hooks/useWindowDimensions.ts -------------------------------------------------------------------------------- /src/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/index.tsx -------------------------------------------------------------------------------- /src/popup/models/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/models/api.ts -------------------------------------------------------------------------------- /src/popup/models/general.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/models/general.model.ts -------------------------------------------------------------------------------- /src/popup/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/models/index.ts -------------------------------------------------------------------------------- /src/popup/models/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/models/operations.ts -------------------------------------------------------------------------------- /src/popup/operations/accountMerge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/accountMerge.js -------------------------------------------------------------------------------- /src/popup/operations/allowTrust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/allowTrust.js -------------------------------------------------------------------------------- /src/popup/operations/bumpSequence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/bumpSequence.js -------------------------------------------------------------------------------- /src/popup/operations/changeTrust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/changeTrust.js -------------------------------------------------------------------------------- /src/popup/operations/createAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/createAccount.js -------------------------------------------------------------------------------- /src/popup/operations/createPassiveSellOffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/createPassiveSellOffer.js -------------------------------------------------------------------------------- /src/popup/operations/inflation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/inflation.js -------------------------------------------------------------------------------- /src/popup/operations/manageBuyOffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/manageBuyOffer.js -------------------------------------------------------------------------------- /src/popup/operations/manageData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/manageData.js -------------------------------------------------------------------------------- /src/popup/operations/manageSellOffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/manageSellOffer.js -------------------------------------------------------------------------------- /src/popup/operations/pathPaymentStrictReceive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/pathPaymentStrictReceive.js -------------------------------------------------------------------------------- /src/popup/operations/pathPaymentStrictSend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/pathPaymentStrictSend.js -------------------------------------------------------------------------------- /src/popup/operations/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/payment.js -------------------------------------------------------------------------------- /src/popup/operations/setOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/operations/setOptions.js -------------------------------------------------------------------------------- /src/popup/pages/AccountManager/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/AccountManager/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/Assets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/Assets/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/BackupFile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/BackupFile/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/ClaimableBalances/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/ClaimableBalances/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/ConfirmFlag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/ConfirmFlag/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/ConfirmLogin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/ConfirmLogin/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/ConnectedWebsite/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/ConnectedWebsite/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/ConnectedWebsite/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/ConnectedWebsite/styles.ts -------------------------------------------------------------------------------- /src/popup/pages/CreateWallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/CreateWallet/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/DeleteAccount/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/DeleteAccount/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/FirstPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/FirstPage/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/Flags/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/Flags/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/Flags/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/Flags/styles.ts -------------------------------------------------------------------------------- /src/popup/pages/Intro/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/Intro/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/Intro/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/Intro/styles.ts -------------------------------------------------------------------------------- /src/popup/pages/IntroSlides/Slide1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/IntroSlides/Slide1.tsx -------------------------------------------------------------------------------- /src/popup/pages/IntroSlides/Slide2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/IntroSlides/Slide2.tsx -------------------------------------------------------------------------------- /src/popup/pages/IntroSlides/Slide3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/IntroSlides/Slide3.tsx -------------------------------------------------------------------------------- /src/popup/pages/IntroSlides/Slide4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/IntroSlides/Slide4.tsx -------------------------------------------------------------------------------- /src/popup/pages/IntroSlides/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/IntroSlides/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/IntroSlides/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/IntroSlides/styles.ts -------------------------------------------------------------------------------- /src/popup/pages/LoadingNetwork/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/LoadingNetwork/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/LoadingOne/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/LoadingOne/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/Login/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/OfflineMode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/OfflineMode/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/OfflineMode/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/OfflineMode/styles.ts -------------------------------------------------------------------------------- /src/popup/pages/PrivateKey/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/PrivateKey/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/PrivateKey/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/PrivateKey/styles.ts -------------------------------------------------------------------------------- /src/popup/pages/RestoreWallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/RestoreWallet/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/ShowPrivateKey/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/ShowPrivateKey/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/expand/EHome/Operation/Advance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/expand/EHome/Operation/Advance.tsx -------------------------------------------------------------------------------- /src/popup/pages/expand/EHome/Operation/Basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/expand/EHome/Operation/Basic.tsx -------------------------------------------------------------------------------- /src/popup/pages/expand/EHome/WalletInfo/ConfirmWallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/expand/EHome/WalletInfo/ConfirmWallet/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/expand/EHome/WalletInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/expand/EHome/WalletInfo/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/expand/EHome/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/expand/EHome/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/AddAssets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/AddAssets/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/AddContact/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/AddContact/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/AssetInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/AssetInfo/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/CreateWallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/CreateWallet/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/EditContact/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/EditContact/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Error/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Home/DropDownList/DropMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Home/DropDownList/DropMenu/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Home/DropDownList/DropMenu/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Home/DropDownList/DropMenu/styles.ts -------------------------------------------------------------------------------- /src/popup/pages/extension/Home/DropDownList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Home/DropDownList/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Home/Links/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Home/Links/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Home/TabList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Home/TabList/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Home/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Home/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Home/styles.ts -------------------------------------------------------------------------------- /src/popup/pages/extension/ImportWallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/ImportWallet/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/LoadingNetwork/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/LoadingNetwork/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Operation/Advance/Confirm/ConfirmTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Operation/Advance/Confirm/ConfirmTitle.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Operation/Advance/Confirm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Operation/Advance/Confirm/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Operation/Advance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Operation/Advance/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Operation/Basic/ConfirmSend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Operation/Basic/ConfirmSend.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Operation/Basic/ConfirmSwap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Operation/Basic/ConfirmSwap.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Operation/Basic/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Operation/Basic/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Receive/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Receive/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Send/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Send/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Setting/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Setting/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/SuccessfulSubmission/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/SuccessfulSubmission/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/extension/Swap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/extension/Swap/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/index.tsx -------------------------------------------------------------------------------- /src/popup/pages/test/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/pages/test/index.tsx -------------------------------------------------------------------------------- /src/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/popup.html -------------------------------------------------------------------------------- /src/popup/reducers/accounts2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/reducers/accounts2.ts -------------------------------------------------------------------------------- /src/popup/reducers/assetImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/reducers/assetImages.ts -------------------------------------------------------------------------------- /src/popup/reducers/bids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/reducers/bids.ts -------------------------------------------------------------------------------- /src/popup/reducers/contacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/reducers/contacts.ts -------------------------------------------------------------------------------- /src/popup/reducers/currencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/reducers/currencies.ts -------------------------------------------------------------------------------- /src/popup/reducers/host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/reducers/host.ts -------------------------------------------------------------------------------- /src/popup/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/reducers/index.ts -------------------------------------------------------------------------------- /src/popup/reducers/interval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/reducers/interval.ts -------------------------------------------------------------------------------- /src/popup/reducers/modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/reducers/modal.ts -------------------------------------------------------------------------------- /src/popup/reducers/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/reducers/options.ts -------------------------------------------------------------------------------- /src/popup/reducers/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/reducers/transaction.ts -------------------------------------------------------------------------------- /src/popup/reducers/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/reducers/user.ts -------------------------------------------------------------------------------- /src/popup/staticRes/currencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/staticRes/currencies.ts -------------------------------------------------------------------------------- /src/popup/staticRes/defaultAssets/AQUA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/staticRes/defaultAssets/AQUA.ts -------------------------------------------------------------------------------- /src/popup/staticRes/defaultAssets/LSP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/staticRes/defaultAssets/LSP.ts -------------------------------------------------------------------------------- /src/popup/staticRes/defaultAssets/RBT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/staticRes/defaultAssets/RBT.ts -------------------------------------------------------------------------------- /src/popup/staticRes/defaultAssets/USDC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/staticRes/defaultAssets/USDC.ts -------------------------------------------------------------------------------- /src/popup/staticRes/defaultAssets/YBX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/staticRes/defaultAssets/YBX.ts -------------------------------------------------------------------------------- /src/popup/staticRes/defaultAssets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/staticRes/defaultAssets/index.ts -------------------------------------------------------------------------------- /src/popup/staticRes/defaultAssets/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/staticRes/defaultAssets/types.ts -------------------------------------------------------------------------------- /src/popup/staticRes/errorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/staticRes/errorMessage.ts -------------------------------------------------------------------------------- /src/popup/staticRes/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/staticRes/flags.ts -------------------------------------------------------------------------------- /src/popup/staticRes/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/staticRes/operations.ts -------------------------------------------------------------------------------- /src/popup/staticRes/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/staticRes/routes.ts -------------------------------------------------------------------------------- /src/popup/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/store.ts -------------------------------------------------------------------------------- /src/popup/styles/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/styles/font.css -------------------------------------------------------------------------------- /src/popup/styles/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/styles/global.ts -------------------------------------------------------------------------------- /src/popup/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/styles/main.css -------------------------------------------------------------------------------- /src/popup/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/styles/theme.ts -------------------------------------------------------------------------------- /src/popup/svgs/AngleDoubleUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/AngleDoubleUp.tsx -------------------------------------------------------------------------------- /src/popup/svgs/AngleDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/AngleDown.tsx -------------------------------------------------------------------------------- /src/popup/svgs/AngleDownBold.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/AngleDownBold.tsx -------------------------------------------------------------------------------- /src/popup/svgs/AngleForward.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/AngleForward.tsx -------------------------------------------------------------------------------- /src/popup/svgs/AngleRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/AngleRight.tsx -------------------------------------------------------------------------------- /src/popup/svgs/ArrowBack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/ArrowBack.tsx -------------------------------------------------------------------------------- /src/popup/svgs/ArrowDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/ArrowDown.tsx -------------------------------------------------------------------------------- /src/popup/svgs/BlackCheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/BlackCheck.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Calender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Calender.tsx -------------------------------------------------------------------------------- /src/popup/svgs/CheckMark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/CheckMark.tsx -------------------------------------------------------------------------------- /src/popup/svgs/CheckMarkFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/CheckMarkFill.tsx -------------------------------------------------------------------------------- /src/popup/svgs/CircleQuestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/CircleQuestion.tsx -------------------------------------------------------------------------------- /src/popup/svgs/ContactusLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/ContactusLinks.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Copy.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Download.tsx -------------------------------------------------------------------------------- /src/popup/svgs/EditPen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/EditPen.tsx -------------------------------------------------------------------------------- /src/popup/svgs/ExclamationCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/ExclamationCircle.tsx -------------------------------------------------------------------------------- /src/popup/svgs/ExclamationTriangle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/ExclamationTriangle.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Expand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Expand.tsx -------------------------------------------------------------------------------- /src/popup/svgs/File.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/File.tsx -------------------------------------------------------------------------------- /src/popup/svgs/FilledCopy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/FilledCopy.tsx -------------------------------------------------------------------------------- /src/popup/svgs/FullRabetLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/FullRabetLogo.tsx -------------------------------------------------------------------------------- /src/popup/svgs/HandCoins.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/HandCoins.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Infinity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Infinity.tsx -------------------------------------------------------------------------------- /src/popup/svgs/IntroLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/IntroLogo.tsx -------------------------------------------------------------------------------- /src/popup/svgs/InvisibleEye.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/InvisibleEye.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Loading.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Lock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Lock.tsx -------------------------------------------------------------------------------- /src/popup/svgs/LongArrowLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/LongArrowLeft.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Multiply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Multiply.tsx -------------------------------------------------------------------------------- /src/popup/svgs/PenEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/PenEdit.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Plus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Plus.tsx -------------------------------------------------------------------------------- /src/popup/svgs/PlusBold.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/PlusBold.tsx -------------------------------------------------------------------------------- /src/popup/svgs/RabetLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/RabetLogo.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Rotate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Rotate.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Search.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Setting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Setting.tsx -------------------------------------------------------------------------------- /src/popup/svgs/ShareArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/ShareArrow.tsx -------------------------------------------------------------------------------- /src/popup/svgs/ShareArrowSqaure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/ShareArrowSqaure.tsx -------------------------------------------------------------------------------- /src/popup/svgs/ShortRightArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/ShortRightArrow.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Swap.tsx -------------------------------------------------------------------------------- /src/popup/svgs/TransactionActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/TransactionActions.tsx -------------------------------------------------------------------------------- /src/popup/svgs/Trash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/Trash.tsx -------------------------------------------------------------------------------- /src/popup/svgs/VisibleEye.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/VisibleEye.tsx -------------------------------------------------------------------------------- /src/popup/svgs/longArrowCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/svgs/longArrowCircle.tsx -------------------------------------------------------------------------------- /src/popup/types/react-slideshow-image/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/types/react-slideshow-image/index.d.ts -------------------------------------------------------------------------------- /src/popup/utils/abbr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/abbr.ts -------------------------------------------------------------------------------- /src/popup/utils/activeAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/activeAccount.ts -------------------------------------------------------------------------------- /src/popup/utils/addAssetImagesToAssets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/addAssetImagesToAssets.ts -------------------------------------------------------------------------------- /src/popup/utils/capital.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/capital.ts -------------------------------------------------------------------------------- /src/popup/utils/checkOffline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/checkOffline.ts -------------------------------------------------------------------------------- /src/popup/utils/controlNumberInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/controlNumberInput.ts -------------------------------------------------------------------------------- /src/popup/utils/createTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/createTab.ts -------------------------------------------------------------------------------- /src/popup/utils/currentNetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/currentNetwork.ts -------------------------------------------------------------------------------- /src/popup/utils/formatBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/formatBalance.ts -------------------------------------------------------------------------------- /src/popup/utils/formatCurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/formatCurrency.ts -------------------------------------------------------------------------------- /src/popup/utils/getHostOfUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/getHostOfUrl.ts -------------------------------------------------------------------------------- /src/popup/utils/getJSONAssets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/getJSONAssets.ts -------------------------------------------------------------------------------- /src/popup/utils/handleAssetAlt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/handleAssetAlt.ts -------------------------------------------------------------------------------- /src/popup/utils/handleAssetImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/handleAssetImage.ts -------------------------------------------------------------------------------- /src/popup/utils/handleAssetKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/handleAssetKeys.ts -------------------------------------------------------------------------------- /src/popup/utils/handleAssetSymbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/handleAssetSymbol.ts -------------------------------------------------------------------------------- /src/popup/utils/horizon/accountLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/horizon/accountLink.ts -------------------------------------------------------------------------------- /src/popup/utils/horizon/transactionLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/horizon/transactionLink.ts -------------------------------------------------------------------------------- /src/popup/utils/isInsufficientAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/isInsufficientAsset.ts -------------------------------------------------------------------------------- /src/popup/utils/isOtherConnected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/isOtherConnected.ts -------------------------------------------------------------------------------- /src/popup/utils/isTransferable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/isTransferable.ts -------------------------------------------------------------------------------- /src/popup/utils/matchAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/matchAsset.ts -------------------------------------------------------------------------------- /src/popup/utils/maxBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/maxBalance.ts -------------------------------------------------------------------------------- /src/popup/utils/maxText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/maxText.ts -------------------------------------------------------------------------------- /src/popup/utils/nativeAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/nativeAsset.ts -------------------------------------------------------------------------------- /src/popup/utils/numberWithCommas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/numberWithCommas.ts -------------------------------------------------------------------------------- /src/popup/utils/operationMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/operationMapper.ts -------------------------------------------------------------------------------- /src/popup/utils/shorter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/shorter.ts -------------------------------------------------------------------------------- /src/popup/utils/stellarResolveClaimantPredicates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/stellarResolveClaimantPredicates.ts -------------------------------------------------------------------------------- /src/popup/utils/swap/addDefaultAssets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/swap/addDefaultAssets.ts -------------------------------------------------------------------------------- /src/popup/utils/swap/calculatePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/swap/calculatePath.ts -------------------------------------------------------------------------------- /src/popup/utils/swap/isAssetEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/swap/isAssetEqual.ts -------------------------------------------------------------------------------- /src/popup/utils/timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/src/popup/utils/timeout.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rabetofficial/rabet-extension/HEAD/webpack.config.js --------------------------------------------------------------------------------