├── .editorconfig ├── .env.example ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report_template.yml │ ├── config.yml │ └── feature_request_template.yml ├── actions │ ├── create-env-file │ │ └── action.yml │ ├── download-latest-release-asset │ │ └── action.yml │ ├── install-yq │ │ └── action.yml │ ├── publish-to-chrome-web-store │ │ ├── action.yml │ │ ├── constants │ │ │ ├── Urls.ts │ │ │ └── index.ts │ │ ├── enums │ │ │ ├── ErrorCodeEnum.ts │ │ │ └── index.ts │ │ ├── errors │ │ │ ├── ActionError.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── tsconfig.json │ │ ├── types │ │ │ ├── IAccessTokenResponse.ts │ │ │ ├── IPublishResponse.ts │ │ │ ├── IUploadResponse.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── createAccessToken.ts │ │ │ ├── createAuthorizationHeader.ts │ │ │ ├── handleError.ts │ │ │ ├── index.ts │ │ │ ├── publish.ts │ │ │ └── uploadZipFile.ts │ ├── publish-to-firefox-add-ons │ │ ├── action.yml │ │ ├── constants │ │ │ ├── Durations.ts │ │ │ ├── Urls.ts │ │ │ └── index.ts │ │ ├── enums │ │ │ ├── ErrorCodeEnum.ts │ │ │ └── index.ts │ │ ├── errors │ │ │ ├── ActionError.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── tsconfig.json │ │ ├── types │ │ │ ├── IBaseOptions.ts │ │ │ ├── IUploadResponse.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── createAuthorizationHeader.ts │ │ │ ├── createJwt.ts │ │ │ ├── handleError.ts │ │ │ ├── index.ts │ │ │ ├── publish.ts │ │ │ ├── uploadZipFile.ts │ │ │ └── waitInMilliseconds.ts │ ├── publish-to-microsoft-edge-add-ons │ │ ├── action.yml │ │ ├── constants │ │ │ ├── URLs.ts │ │ │ └── index.ts │ │ ├── enums │ │ │ ├── ErrorCodeEnum.ts │ │ │ ├── UploadStatusEnum.ts │ │ │ └── index.ts │ │ ├── errors │ │ │ ├── ActionError.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── tsconfig.json │ │ ├── types │ │ │ ├── IAccessTokenResponse.ts │ │ │ ├── IUploadStatusResponse.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── authorizationHeaders.ts │ │ │ ├── handleError.ts │ │ │ ├── index.ts │ │ │ ├── publish.ts │ │ │ ├── upload.ts │ │ │ └── waitInMilliseconds.ts │ ├── publish-to-opera-add-ons │ │ ├── action.yml │ │ ├── enums │ │ │ ├── ErrorCodeEnum.ts │ │ │ ├── UploadStatusEnum.ts │ │ │ └── index.ts │ │ ├── errors │ │ │ ├── ActionError.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── tsconfig.json │ │ ├── types │ │ │ ├── ILogger.ts │ │ │ ├── IUploadParams.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── createLogger.ts │ │ │ ├── handleError.ts │ │ │ ├── index.ts │ │ │ └── upload.ts │ └── use-pnpm-dependencies │ │ └── action.yml ├── pull_request_template.md └── workflows │ ├── deploy_dapp_example.yml │ ├── publish.yml │ ├── pull_request_checks.yml │ ├── refresh_chrome_web_store_token.yml │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .lintstagedrc.mjs ├── .prettierignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── COPYING ├── README.md ├── __mocks__ └── webextension-polyfill.ts ├── commitlint.config.ts ├── dapp-example ├── @types │ └── global │ │ └── index.d.ts ├── components │ ├── App │ │ ├── App.tsx │ │ └── index.ts │ ├── ConnectMenu │ │ ├── ConnectMenu.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IHandleConnectParams.ts │ │ │ ├── IOnConnectParams.ts │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── ConnectionNotInitializedContent │ │ ├── ConnectionNotInitializedContent.tsx │ │ └── index.ts │ ├── ConnectionNotSupportedContent │ │ ├── ConnectionNotSupportedContent.tsx │ │ └── index.ts │ ├── EnabledAccountsTable │ │ ├── EnabledAccountsTable.tsx │ │ └── index.ts │ ├── ImportAccountViaQRCodeTab │ │ ├── ImportAccountViaQRCodeTab.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IAccountImportAsset.ts │ │ │ └── index.ts │ ├── Root │ │ ├── Root.tsx │ │ └── index.ts │ ├── SendKeyRegistrationViaURITab │ │ ├── SendKeyRegistrationViaURITab.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── SignApplicationTransactionTab │ │ ├── SignApplicationTransactionTab.tsx │ │ └── index.ts │ ├── SignAssetTransactionTab │ │ ├── SignAssetTransactionTab.tsx │ │ └── index.ts │ ├── SignAtomicTransactionsTab │ │ ├── SignAtomicTransactionsTab.tsx │ │ └── index.ts │ ├── SignKeyRegistrationTransactionTab │ │ ├── SignKeyRegistrationTransactionTab.tsx │ │ └── index.ts │ ├── SignMessageTab │ │ ├── SignMessageTab.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ └── SignPaymentTransactionTab │ │ ├── SignPaymentTransactionTab.tsx │ │ └── index.ts ├── constants │ ├── Application.ts │ ├── Dimensions.ts │ └── index.ts ├── contexts │ └── SystemContext │ │ ├── SystemContext.ts │ │ ├── index.ts │ │ └── types │ │ ├── IState.ts │ │ └── index.ts ├── enums │ ├── ConnectionTypeEnum.ts │ └── index.ts ├── favicon.png ├── hooks │ ├── useAVMWebProviderConnector │ │ ├── index.ts │ │ └── useAVMWebProviderConnector.ts │ ├── useBorderColor │ │ ├── index.ts │ │ └── useBorderColor.ts │ ├── useDefaultTextColor │ │ ├── index.ts │ │ └── useDefaultTextColor.ts │ ├── usePrimaryColor │ │ ├── index.ts │ │ └── usePrimaryColor.ts │ ├── usePrimaryColorScheme │ │ ├── index.ts │ │ └── usePrimaryColorScheme.ts │ ├── useSubTextColor │ │ ├── index.ts │ │ └── useSubTextColor.ts │ ├── useUseWalletConnector │ │ ├── index.ts │ │ └── useUseWalletConnector.ts │ └── useWalletConnectConnector │ │ ├── index.ts │ │ └── useWalletConnectConnector.ts ├── index.hbs ├── index.ts ├── selectors │ ├── index.ts │ └── useSelectLogger.ts ├── types │ ├── IAccountInformation.ts │ ├── IAssetInformation.ts │ ├── IBaseTransactionProps.ts │ ├── IConnectorParams.ts │ ├── IConnectorState.ts │ ├── ISignMessageActionResult.ts │ ├── TSignMessageAction.ts │ ├── TSignTransactionsAction.ts │ └── index.ts └── utils │ ├── createAppCallTransaction.ts │ ├── createAppOptInTransaction.ts │ ├── createAssetConfigTransaction.ts │ ├── createAssetCreateTransaction.ts │ ├── createAssetDestroyTransaction.ts │ ├── createAssetFreezeTransaction.ts │ ├── createAssetTransferTransaction.ts │ ├── createKeyRegistrationTransaction.ts │ ├── createKeyRegistrationTransactionURI.ts │ ├── createPaymentTransaction.ts │ ├── extractWalletConnectNamespaceFromNetwork.ts │ ├── getAccountInformation.ts │ ├── getRandomAlgodClient.ts │ ├── index.ts │ ├── isValidJwt.ts │ └── parseConnectorType.ts ├── eslint.config.mjs ├── images └── repo_logo@637x128.png ├── jest.config.ts ├── package.json ├── pnpm-lock.yaml ├── prettier.config.mjs ├── release.config.mjs ├── scripts ├── get_latest_release_asset.sh ├── install_chrome.sh ├── install_firefox.sh ├── package.sh ├── post_install.sh ├── refresh_chrome_web_store_token.sh ├── set_vars.sh ├── update_issue_templates.sh └── update_manifest_version.sh ├── src ├── @types │ ├── assets │ │ └── index.d.ts │ ├── global │ │ └── index.d.ts │ ├── scrypt-async │ │ └── index.d.ts │ └── styles │ │ └── index.d.ts ├── client │ ├── README.md │ ├── adapters │ │ └── LegacyProviderAdapter │ │ │ ├── LegacyProviderAdapter.ts │ │ │ └── index.ts │ ├── apps │ │ ├── WebAuthnAuthenticateApp │ │ │ ├── App.tsx │ │ │ ├── Root.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IAppProps.ts │ │ │ │ ├── IRootProps.ts │ │ │ │ └── index.ts │ │ └── WebAuthnRegisterApp │ │ │ ├── App.tsx │ │ │ ├── Root.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IAppProps.ts │ │ │ ├── IRootProps.ts │ │ │ └── index.ts │ ├── components │ │ └── AccountItem │ │ │ ├── AccountItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── constants │ │ ├── Dimensions.ts │ │ ├── Durations.ts │ │ └── index.ts │ ├── hooks │ │ └── useWebAuthn │ │ │ ├── index.ts │ │ │ ├── types │ │ │ ├── IOptions.ts │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ │ └── useWebAuthn.ts │ ├── interceptors │ │ └── WebAuthnInterceptor │ │ │ ├── WebAuthnInterceptor.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IInitializeOptions.ts │ │ │ ├── INewOptions.ts │ │ │ └── index.ts │ ├── main.ts │ ├── managers │ │ ├── ConfigManager │ │ │ ├── ConfigManager.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TListener.ts │ │ │ │ └── index.ts │ │ └── WebAuthnMessageManager │ │ │ ├── WebAuthnMessageManager.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IOptions.ts │ │ │ ├── IParsedAttestedCredentialData.ts │ │ │ ├── IParsedAuthenticatorData.ts │ │ │ ├── IResult.ts │ │ │ └── index.ts │ ├── styles │ │ └── fonts.css │ ├── types │ │ ├── IBaseAppProps.ts │ │ ├── IBaseRootProps.ts │ │ ├── IWindow.ts │ │ └── index.ts │ └── utils │ │ └── dispatchMessageWithTimeout │ │ ├── dispatchMessageWithTimeout.ts │ │ ├── index.ts │ │ └── types │ │ ├── IOptions.ts │ │ └── index.ts ├── common │ ├── components │ │ ├── AccountAvatar │ │ │ ├── AccountAvatar.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── AlgorandIcon │ │ │ ├── AlgorandIcon.tsx │ │ │ └── index.ts │ │ ├── Button │ │ │ ├── Button.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── CircularProgressWithIcon │ │ │ ├── CircularProgressWithIcon.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── EmptyIcon │ │ │ ├── EmptyIcon.tsx │ │ │ └── index.ts │ │ ├── EmptyPasskeyIcon │ │ │ ├── EmptyPasskeyIcon.tsx │ │ │ └── index.ts │ │ ├── EmptyState │ │ │ ├── EmptyState.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IButtonProps.ts │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── IconButton │ │ │ ├── IconButton.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── Label │ │ │ ├── Label.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── Notice │ │ │ ├── Notice.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ └── VoiIcon │ │ │ ├── VoiIcon.tsx │ │ │ └── index.ts │ ├── constants │ │ ├── Application.ts │ │ ├── COSEAlgorithms.ts │ │ ├── Dimensions.ts │ │ ├── Styles.ts │ │ └── index.ts │ ├── enums │ │ ├── AVMWebProviderMessageReferenceEnum.ts │ │ ├── ErrorCodeEnum.ts │ │ ├── ExternalConfigMessageReferenceEnum.ts │ │ ├── LegacyUseWalletMessageReferenceEnum.ts │ │ ├── ProviderMessageReferenceEnum.ts │ │ ├── WebAuthnMessageReferenceEnum.ts │ │ └── index.ts │ ├── errors │ │ ├── BaseExtensionError.ts │ │ ├── CameraError.ts │ │ ├── CameraNotAllowedError.ts │ │ ├── CameraNotFoundError.ts │ │ ├── FailedToSendTransactionError.ts │ │ ├── InvalidABIContractError.ts │ │ ├── MalformedDataError.ts │ │ ├── NetworkConnectionError.ts │ │ ├── NetworkNotSelectedError.ts │ │ ├── NotAZeroBalanceError.ts │ │ ├── NotEnoughMinimumBalanceError.ts │ │ ├── OfflineError.ts │ │ ├── ParsingError.ts │ │ ├── PasskeyCreationError.ts │ │ ├── PasskeyNotSupportedError.ts │ │ ├── ReadABIContractError.ts │ │ ├── ScreenCaptureError.ts │ │ ├── ScreenCaptureNotAllowedError.ts │ │ ├── ScreenCaptureNotFoundError.ts │ │ ├── UnableToFetchPasskeyError.ts │ │ ├── UnknownError.ts │ │ ├── authentication │ │ │ ├── InvalidPasswordError.ts │ │ │ └── index.ts │ │ ├── cryptography │ │ │ ├── DecodingError.ts │ │ │ ├── DecryptionError.ts │ │ │ ├── EncodingError.ts │ │ │ ├── EncryptionError.ts │ │ │ ├── InvalidKeyPairGenerationError.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── webauthn │ │ │ ├── WebAuthnAuthenticationCanceledError.ts │ │ │ ├── WebAuthnInvalidPasskeyError.ts │ │ │ ├── WebAuthnInvalidPublicKeyError.ts │ │ │ ├── WebAuthnMalformedAuthenticationRequestError.ts │ │ │ ├── WebAuthnMalformedRegistrationRequestError.ts │ │ │ ├── WebAuthnNotEnabledError.ts │ │ │ ├── WebAuthnRegistrationCanceledError.ts │ │ │ └── index.ts │ ├── hooks │ │ ├── useBorderColor │ │ │ ├── index.ts │ │ │ └── useBorderColor.ts │ │ ├── useButtonHoverBackgroundColor │ │ │ ├── index.ts │ │ │ └── useButtonHoverBackgroundColor.ts │ │ ├── useDefaultTextColor │ │ │ ├── index.ts │ │ │ └── useDefaultTextColor.ts │ │ ├── usePrimaryButtonTextColor │ │ │ ├── index.ts │ │ │ └── usePrimaryButtonTextColor.ts │ │ ├── usePrimaryColor │ │ │ ├── index.ts │ │ │ └── usePrimaryColor.ts │ │ ├── usePrimaryColorScheme │ │ │ ├── index.ts │ │ │ └── usePrimaryColorScheme.ts │ │ ├── usePrimaryRawColorCode │ │ │ ├── index.ts │ │ │ └── usePrimaryRawColorCode.ts │ │ ├── useSubTextColor │ │ │ ├── index.ts │ │ │ └── useSubTextColor.ts │ │ ├── useSubTextRawColorCode │ │ │ ├── index.ts │ │ │ └── useSubTextRawColorCode.ts │ │ ├── useTabletAndUp │ │ │ ├── index.ts │ │ │ └── useTabletAndUp.ts │ │ └── useTextBackgroundColor │ │ │ ├── index.ts │ │ │ └── useTextBackgroundColor.ts │ ├── managers │ │ └── ColorModeManager │ │ │ ├── ColorModeManager.ts │ │ │ └── index.ts │ ├── messages │ │ ├── AVMWebProviderRequestMessage │ │ │ ├── AVMWebProviderRequestMessage.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IPayload.ts │ │ │ │ └── index.ts │ │ ├── AVMWebProviderResponseMessage │ │ │ ├── AVMWebProviderResponseMessage.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IMessage.ts │ │ │ │ └── index.ts │ │ ├── BaseProviderMessage │ │ │ ├── BaseProviderMessage.ts │ │ │ └── index.ts │ │ ├── ExternalConfigOnUpdateMessage │ │ │ ├── ExternalConfigOnUpdateMessage.ts │ │ │ └── index.ts │ │ ├── ExternalConfigRequestMessage │ │ │ ├── ExternalConfigRequestMessage.ts │ │ │ └── index.ts │ │ ├── ExternalConfigResponseMessage │ │ │ ├── ExternalConfigResponseMessage.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IResult.ts │ │ │ │ └── index.ts │ │ ├── ProviderCredentialLockActivatedMessage │ │ │ ├── ProviderCredentialLockActivatedMessage.ts │ │ │ └── index.ts │ │ ├── ProviderEventAddedMessage │ │ │ ├── ProviderEventAddedMessage.ts │ │ │ └── index.ts │ │ ├── ProviderFactoryResetMessage │ │ │ ├── ProviderFactoryResetMessage.ts │ │ │ └── index.ts │ │ ├── ProviderRegistrationCompletedMessage │ │ │ ├── ProviderRegistrationCompletedMessage.ts │ │ │ └── index.ts │ │ ├── ProviderSessionsUpdatedMessage │ │ │ ├── ProviderSessionsUpdatedMessage.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IPayload.ts │ │ │ │ └── index.ts │ │ ├── ProviderSettingsUpdatedMessage │ │ │ ├── ProviderSettingsUpdatedMessage.ts │ │ │ └── index.ts │ │ ├── ProviderThemeUpdatedMessage │ │ │ ├── ProviderThemeUpdatedMessage.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IPayload.ts │ │ │ │ └── index.ts │ │ ├── WebAuthnAuthenticateRequestMessage │ │ │ ├── WebAuthnAuthenticateRequestMessage.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IPayload.ts │ │ │ │ └── index.ts │ │ ├── WebAuthnAuthenticateResponseMessage │ │ │ ├── WebAuthnAuthenticateResponseMessage.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IResult.ts │ │ │ │ └── index.ts │ │ ├── WebAuthnRegisterRequestMessage │ │ │ ├── WebAuthnRegisterRequestMessage.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IPayload.ts │ │ │ │ └── index.ts │ │ └── WebAuthnRegisterResponseMessage │ │ │ ├── WebAuthnRegisterResponseMessage.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IResult.ts │ │ │ └── index.ts │ ├── services │ │ └── BaseListener │ │ │ ├── BaseListener.ts │ │ │ └── index.ts │ ├── theme │ │ ├── Code.ts │ │ ├── Tag.ts │ │ ├── index.ts │ │ └── theme.tsx │ ├── types │ │ ├── accounts │ │ │ ├── IExternalAccount.ts │ │ │ ├── TAccountColors.ts │ │ │ ├── TAccountIcons.ts │ │ │ └── index.ts │ │ ├── base │ │ │ ├── IBaseOptions.ts │ │ │ ├── TPartialExcept.ts │ │ │ ├── TReplace.ts │ │ │ └── index.ts │ │ ├── config │ │ │ ├── IClientInformation.ts │ │ │ ├── IExternalConfig.ts │ │ │ └── index.ts │ │ ├── errors │ │ │ ├── ISerializedProviderError.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── messages │ │ │ ├── IBaseMessage.ts │ │ │ ├── IBaseRequestMessage.ts │ │ │ ├── IBaseResponseMessage.ts │ │ │ └── index.ts │ │ ├── system │ │ │ ├── ILogLevel.ts │ │ │ ├── ILogger.ts │ │ │ └── index.ts │ │ ├── ui │ │ │ ├── IBaseComponentProps.ts │ │ │ ├── IExternalTheme.ts │ │ │ ├── TEmptyIconProps.ts │ │ │ ├── TSizes.ts │ │ │ └── index.ts │ │ └── webauthn │ │ │ ├── IAuthenticationExtensionsClientOutputs.ts │ │ │ ├── IPRFExtensionOutput.ts │ │ │ ├── IPRFExtensionResults.ts │ │ │ ├── ISerializedAuthenticatorAssertionResponse.ts │ │ │ ├── ISerializedAuthenticatorAttestationResponse.ts │ │ │ ├── ISerializedPublicKeyCredential.ts │ │ │ ├── ISerializedPublicKeyCredentialCreationOptions.ts │ │ │ ├── ISerializedPublicKeyCredentialDescriptor.ts │ │ │ ├── ISerializedPublicKeyCredentialRequestOptions.ts │ │ │ ├── ISerializedPublicKeyCredentialUserEntity.ts │ │ │ └── index.ts │ └── utils │ │ ├── bufferSourceToUint8Array │ │ ├── bufferSourceToUint8Array.ts │ │ └── index.ts │ │ ├── calculateIconSize │ │ ├── calculateIconSize.ts │ │ └── index.ts │ │ ├── computeGroupId │ │ ├── computeGroupId.ts │ │ └── index.ts │ │ ├── convertPublicKeyToAVMAddress │ │ ├── convertPublicKeyToAVMAddress.ts │ │ └── index.ts │ │ ├── convertToAtomicUnit │ │ ├── convertToAtomicUnit.test.ts │ │ ├── convertToAtomicUnit.ts │ │ └── index.ts │ │ ├── convertToStandardUnit │ │ ├── convertToStandardUnit.test.ts │ │ ├── convertToStandardUnit.ts │ │ └── index.ts │ │ ├── createAlgodClient │ │ ├── createAlgodClient.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IOptions.ts │ │ │ └── index.ts │ │ ├── createClientInformation │ │ ├── createClientInformation.ts │ │ └── index.ts │ │ ├── createIndexerClient │ │ ├── createIndexerClient.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IOptions.ts │ │ │ └── index.ts │ │ ├── createLogger │ │ ├── createLogger.ts │ │ └── index.ts │ │ ├── ellipseAddress │ │ ├── ellipseAddress.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IOptions.ts │ │ │ └── index.ts │ │ ├── extractFaviconURL │ │ ├── extractFaviconURL.ts │ │ └── index.ts │ │ ├── formatCurrencyUnit │ │ ├── formatCurrencyUnit.test.ts │ │ ├── formatCurrencyUnit.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IOptions.ts │ │ │ └── index.ts │ │ ├── formatTimestamp │ │ ├── formatTimestamp.ts │ │ └── index.ts │ │ ├── getRandomItem │ │ ├── getRandomItem.ts │ │ └── index.ts │ │ ├── parseAccountIcon │ │ ├── index.ts │ │ ├── parseAccountIcon.tsx │ │ └── types │ │ │ ├── IOptions.ts │ │ │ └── index.ts │ │ └── uint8ArrayToArrayBuffer │ │ ├── index.ts │ │ └── uint8ArrayToArrayBuffer.ts ├── docs │ └── whats_new.md ├── icons │ ├── icon-128.png │ ├── icon-16.png │ ├── icon-19.png │ ├── icon-32.png │ ├── icon-38.png │ ├── icon-48.png │ ├── icon-96.png │ └── icon.svg ├── index.hbs ├── manifest.chrome.json ├── manifest.common.json ├── manifest.firefox.json ├── manifest.opera.json ├── manifest.v2.json ├── manifest.v3.json ├── middleware │ ├── README.md │ ├── main.ts │ ├── message-brokers │ │ ├── AVMWebProviderMessageBroker │ │ │ ├── AVMWebProviderMessageBroker.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── INewOptions.ts │ │ │ │ └── index.ts │ │ ├── ExternalConfigMessageBroker │ │ │ ├── ExternalConfigMessageBroker.ts │ │ │ └── index.ts │ │ ├── LegacyUseWalletMessageBroker │ │ │ ├── LegacyUseWalletMessageBroker.ts │ │ │ ├── index.ts │ │ │ ├── messages │ │ │ │ ├── LegacyUseWalletRequestMessage.ts │ │ │ │ ├── LegacyUseWalletResponseMessage.ts │ │ │ │ └── index.ts │ │ │ └── types │ │ │ │ ├── ILegacyDiscoverResult.ts │ │ │ │ ├── ILegacyUseWalletRequestMessage.ts │ │ │ │ ├── ILegacyUseWalletResponseMessage.ts │ │ │ │ ├── IUseWalletNetworkConfiguration.ts │ │ │ │ └── index.ts │ │ ├── ProviderMessageBroker │ │ │ ├── ProviderMessageBroker.ts │ │ │ └── index.ts │ │ └── WebAuthnMessageBroker │ │ │ ├── WebAuthnMessageBroker.ts │ │ │ └── index.ts │ └── utils │ │ └── injectScript │ │ ├── index.ts │ │ └── injectScript.ts └── provider │ ├── apps │ ├── background │ │ ├── App.tsx │ │ ├── Root.tsx │ │ └── index.ts │ ├── main │ │ ├── App.tsx │ │ ├── Root.tsx │ │ ├── index.ts │ │ ├── types │ │ │ ├── ILoaderData.ts │ │ │ └── index.ts │ │ └── utils │ │ │ └── createRouter │ │ │ ├── createRouter.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IOptions.ts │ │ │ └── index.ts │ └── registration │ │ ├── App.tsx │ │ ├── Root.tsx │ │ ├── index.ts │ │ └── utils │ │ └── createRouter │ │ ├── createRouter.tsx │ │ ├── index.ts │ │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── components │ ├── PolisAccountBadge │ │ ├── PolisAccountBadge.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── accounts │ │ ├── AccountAvatarWithBadges │ │ │ ├── AccountAvatarWithBadges.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── AccountItem │ │ │ ├── AccountItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── AccountPageAddressDisplay │ │ │ ├── AccountPageAddressDisplay.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── AccountSelect │ │ │ ├── AccountSelect.tsx │ │ │ ├── AccountSelectModal.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TAccountSelectModalProps.ts │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── AccountTypeItem │ │ │ ├── AccountTypeItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── AddressDisplay │ │ │ ├── AddressDisplay.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── AddressInput │ │ │ ├── AddressInput.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── EditableAccountNameField │ │ │ ├── EditableAccountNameField.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── EnVoiSelect │ │ │ ├── EnVoiSelect.tsx │ │ │ ├── EnVoiSelectModal.tsx │ │ │ ├── NetworkSelectSkeleton.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IEnVoiSelectModalProps.ts │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── GroupBadge │ │ │ ├── GroupBadge.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── NativeBalance │ │ │ ├── NativeBalance.tsx │ │ │ ├── NativeBalanceSkeleton.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── NewAccountItem │ │ │ ├── NewAccountItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── RekeyedAccountBadge │ │ │ ├── ReKeyedAccountBadge.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ └── WatchAccountBadge │ │ │ ├── WatchAccountBadge.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── assets │ │ ├── AmountInput │ │ │ ├── AmountInput.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IOnEventOptions.ts │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── AssetAvatar │ │ │ ├── AssetAvatar.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── AssetBadge │ │ │ ├── AssetBadge.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── AssetDisplay │ │ │ ├── AssetDisplay.tsx │ │ │ └── index.ts │ │ ├── AssetItem │ │ │ ├── AssetItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── AssetSelect │ │ │ ├── AssetSelect.tsx │ │ │ ├── AssetSelectModal.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ ├── TAssetSelectModalProps.ts │ │ │ │ └── index.ts │ │ └── AssetsTab │ │ │ ├── AssetTabARC0200AssetItem.tsx │ │ │ ├── AssetTabStandardAssetItem.tsx │ │ │ ├── AssetsTab.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IAssetHolding.ts │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── authentication │ │ ├── ReEncryptKeysLoadingContent │ │ │ ├── ReEncryptKeysLoadingContent.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IEncryptionState.ts │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── SeedPhraseDisplay │ │ │ ├── SeedPhraseDisplay.tsx │ │ │ ├── SeedPhraseDisplaySkeleton.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ └── SeedPhraseInput │ │ │ ├── SeedPhraseInput.tsx │ │ │ ├── index.ts │ │ │ ├── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ │ │ └── utils │ │ │ ├── index.ts │ │ │ ├── isPhrasesEmpty.ts │ │ │ └── validate.ts │ ├── avm-names │ │ ├── AVMNameBadge │ │ │ ├── AVMNameBadge.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ └── AVMNamesTab │ │ │ ├── AVMNamesTab.tsx │ │ │ ├── Item.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── TItemProps.ts │ │ │ ├── TProps.ts │ │ │ └── index.ts │ ├── cryptography │ │ └── COSEAlgorithmBadge │ │ │ ├── COSEAlgorithmBadge.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── generic │ │ ├── ActionItem │ │ │ ├── ActionItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── ClientHeader │ │ │ ├── ClientHeader.tsx │ │ │ ├── ClientHeaderSkeleton.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── CopyButton │ │ │ ├── CopyButton.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── CopyIconButton │ │ │ ├── CopyIconButton.tsx │ │ │ └── index.ts │ │ ├── Divider │ │ │ ├── Divider.tsx │ │ │ └── index.ts │ │ ├── EditableText │ │ │ ├── EditableText.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── GenericInput │ │ │ ├── GenericInput.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── GenericTextarea │ │ │ ├── GenericTextarea.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── Link │ │ │ ├── Link.tsx │ │ │ └── index.ts │ │ ├── Markdown │ │ │ ├── Markdown.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── OpenTabIconButton │ │ │ ├── OpenTabIconButton.tsx │ │ │ └── index.ts │ │ ├── OverflowMenu │ │ │ ├── OverflowMenu.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IMenuItemProps.ts │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── PillSwitch │ │ │ ├── PillSwitch.tsx │ │ │ └── index.ts │ │ ├── ScrollableContainer │ │ │ ├── ScrollableContainer.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── Select │ │ │ ├── Select.tsx │ │ │ ├── SelectModal.tsx │ │ │ ├── SelectOption.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IOption.ts │ │ │ │ ├── IProps.ts │ │ │ │ ├── ISelectOptionProps.ts │ │ │ │ ├── TSelectModalProps.ts │ │ │ │ └── index.ts │ │ ├── Steps │ │ │ ├── Steps.tsx │ │ │ └── index.ts │ │ ├── TabControlBar │ │ │ ├── TabControlBar.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ ├── ITabControlBarButtonProps.ts │ │ │ │ └── index.ts │ │ ├── TabLoadingItem │ │ │ ├── TabLoadingItem.tsx │ │ │ └── index.ts │ │ └── Toast │ │ │ ├── Toast.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── icons │ │ ├── AlgorandAssetIcon │ │ │ ├── AlgorandAssetIcon.tsx │ │ │ └── index.ts │ │ ├── AssetIcon │ │ │ ├── AssetIcon.tsx │ │ │ └── index.ts │ │ ├── CreateNewAccountIcon │ │ │ ├── CreateNewAccountIcon.tsx │ │ │ └── index.ts │ │ ├── DeflateBallonIcon │ │ │ ├── DeflateBalloonIcon.tsx │ │ │ └── index.ts │ │ ├── ImportAccountIcon │ │ │ ├── ImportAccountIcon.tsx │ │ │ └── index.ts │ │ ├── ImportRekeyAccountIcon │ │ │ ├── ImportRekeyAccountIcon.tsx │ │ │ └── index.ts │ │ ├── InformationIcon │ │ │ ├── InformationIcon.tsx │ │ │ └── index.ts │ │ ├── KibisisIcon │ │ │ ├── KibisisIcon.tsx │ │ │ └── index.ts │ │ ├── SomethingWentWrongIcon │ │ │ ├── SomethingWentWrongIcon.tsx │ │ │ └── index.ts │ │ ├── VoiAssetIcon │ │ │ ├── VoiAssetIcon.tsx │ │ │ └── index.ts │ │ └── WarningIcon │ │ │ ├── WarningIcon.tsx │ │ │ └── index.ts │ ├── information │ │ ├── InfoIconTooltip │ │ │ ├── InfoIconTooltip.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── MoreInformationAccordion │ │ │ ├── MoreInformationAccordion.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ └── Warning │ │ │ ├── Warning.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── modals │ │ ├── ModalAccountItem │ │ │ ├── ModalAccountItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── ModalAssetItem │ │ │ ├── ModalAssetItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── ModalItem │ │ │ ├── ModalItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── ModalSkeletonItem │ │ │ ├── ModalSkeletonItem.tsx │ │ │ └── index.ts │ │ ├── ModalSubHeading │ │ │ ├── ModalSubHeading.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ └── ModalTextItem │ │ │ ├── ModalTextItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── networks │ │ ├── NetworkBadge │ │ │ ├── NetworkBadge.tsx │ │ │ ├── index.ts │ │ │ ├── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ │ └── utils │ │ │ │ ├── parseFontSize │ │ │ │ ├── index.ts │ │ │ │ └── parseFontSize.ts │ │ │ │ ├── parseIconSize │ │ │ │ ├── index.ts │ │ │ │ └── parseIconSize.ts │ │ │ │ └── parsePadding │ │ │ │ ├── index.ts │ │ │ │ └── parsePadding.ts │ │ └── NetworkSelect │ │ │ ├── NetworkSelect.tsx │ │ │ ├── NetworkSelectModal.tsx │ │ │ ├── NetworkSelectSkeleton.tsx │ │ │ ├── index.ts │ │ │ ├── types │ │ │ ├── INetworkSelectModalProps.ts │ │ │ ├── IProps.ts │ │ │ └── index.ts │ │ │ └── utils │ │ │ └── containsOnlyStableNetworks │ │ │ ├── containsOnlyStableNetworks.ts │ │ │ └── index.ts │ ├── nfts │ │ ├── NFTAvatar │ │ │ ├── NFTAvatar.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ └── NFTsTab │ │ │ ├── Item.tsx │ │ │ ├── NFTsTab.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IItemProps.ts │ │ │ ├── TProps.ts │ │ │ └── index.ts │ ├── nodes │ │ ├── CustomNodeItem │ │ │ ├── CustomNodeItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ └── CustomNodeSummaryModalContent │ │ │ ├── CustomNodeSummaryModalContent.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── pages │ │ ├── PageHeader │ │ │ ├── PageHeader.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── PageItem │ │ │ ├── PageItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ └── PageSubHeading │ │ │ ├── PageSubHeading.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── passkeys │ │ ├── PasskeyCapabilities │ │ │ ├── PasskeyCapabilities.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ └── PasskeysTab │ │ │ ├── Item.tsx │ │ │ ├── PasskeysTab.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IItemProps.ts │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── passwords │ │ ├── NewPasswordInput │ │ │ ├── NewPasswordInput.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── TProps.ts │ │ │ │ └── index.ts │ │ ├── PasswordInput │ │ │ ├── PasswordInput.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ └── StrengthMeter │ │ │ ├── StrengthMeter.tsx │ │ │ └── index.ts │ ├── qr-codes │ │ ├── ScanModeModalContent │ │ │ ├── ScanModeModalContent.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── ScanQRCodeViaCameraModalContent │ │ │ ├── QRCodeFrameIcon.tsx │ │ │ ├── ScanQRCodeViaCameraModalContent.tsx │ │ │ └── index.ts │ │ ├── ScanQRCodeViaScreenCaptureModalContent │ │ │ ├── ScanQRCodeViaScreenCaptureModalContent.tsx │ │ │ └── index.ts │ │ ├── ScanQRCodeViaTabModalContent │ │ │ ├── ScanQRCodeViaTabModalContent.tsx │ │ │ └── index.ts │ │ └── UnknownURIModalContent │ │ │ ├── UnknownURIModalContent.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── sessions │ │ └── SessionAvatar │ │ │ ├── SessionAvatar.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── settings │ │ ├── SettingsButtonItem │ │ │ ├── SettingsButtonItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── SettingsExternalLinkItem │ │ │ ├── SettingsExternalLinkItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── SettingsLinkItem │ │ │ ├── SettingsLinkItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IBadgeProps.ts │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── SettingsSelectItem │ │ │ ├── SettingsSelectItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── SettingsSessionItem │ │ │ ├── SettingsSessionItem.tsx │ │ │ ├── SettingsSessionItemSkeleton.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── SettingsSubHeading │ │ │ ├── SettingsSubHeading.tsx │ │ │ └── index.ts │ │ ├── SettingsSwitchItem │ │ │ ├── SettingsSwitchItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ └── SettingsTextItem │ │ │ ├── SettingsTextItem.tsx │ │ │ └── index.ts │ ├── sidebar │ │ ├── SideBar │ │ │ ├── SideBar.tsx │ │ │ └── index.ts │ │ ├── SideBarAccountItem │ │ │ ├── SideBarAccountItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── SideBarAccountList │ │ │ ├── SideBarAccountList.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── SideBarActionItem │ │ │ ├── SideBarActionItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── SideBarGroupItem │ │ │ ├── SideBarGroupItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── SideBarGroupList │ │ │ ├── SideBarGroupList.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ └── SideBarSkeletonItem │ │ │ ├── SideBarSkeletonItem.tsx │ │ │ └── index.ts │ ├── staking │ │ └── StakingTab │ │ │ ├── Item.tsx │ │ │ ├── StakingTab.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IItemProps.ts │ │ │ ├── TProps.ts │ │ │ └── index.ts │ ├── transactions │ │ ├── ActivityTab │ │ │ ├── ActivityTab.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── InnerTransactionAccordion │ │ │ ├── AssetConfigInnerTransactionAccordionItem.tsx │ │ │ ├── AssetCreateInnerTransactionAccordionItem.tsx │ │ │ ├── AssetDeleteInnerTransactionAccordionItem.tsx │ │ │ ├── AssetFreezeInnerTransactionAccordionItem.tsx │ │ │ ├── AssetTransferInnerTransactionAccordionItem.tsx │ │ │ ├── DefaultInnerTransactionAccordionItem.tsx │ │ │ ├── InnerTransactionAccordion.tsx │ │ │ ├── PaymentInnerTransactionAccordionItem.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IItemProps.ts │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ ├── KeyRegistrationTransactionModalBody │ │ │ ├── KeyRegistrationTransactionModalBody.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IProps.ts │ │ │ │ └── index.ts │ │ └── TransactionItem │ │ │ ├── ARC0200AssetTransferTransactionItemContent.tsx │ │ │ ├── AccountReKeyTransactionItemContent.tsx │ │ │ ├── AccountUndoReKeyTransactionItemContent.tsx │ │ │ ├── ApplicationTransactionItemContent.tsx │ │ │ ├── AssetTransferTransactionItemContent.tsx │ │ │ ├── DefaultTransactionItemContent.tsx │ │ │ ├── PaymentTransactionItemContent.tsx │ │ │ ├── TransactionItem.tsx │ │ │ ├── TransactionItemSkeleton.tsx │ │ │ ├── index.ts │ │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ └── vip-0300 │ │ ├── ARC0300AccountImportModalContent │ │ ├── ARC0300AccountImportModalContent.tsx │ │ └── index.ts │ │ ├── ARC0300AssetAddModalContent │ │ ├── ARC0300AssetAddModalContent.tsx │ │ └── index.ts │ │ └── ARC0300KeyRegistrationTransactionSendModalContent │ │ ├── ARC0300KeyRegistrationTransactionSendModalContent.tsx │ │ ├── ARC0300KeyRegistrationTransactionSendModalContentSkeleton.tsx │ │ └── index.ts │ ├── config │ ├── index.ts │ └── networks.ts │ ├── constants │ ├── ARC0026.ts │ ├── ARC0300.ts │ ├── Alarms.ts │ ├── Dimensions.ts │ ├── Durations.ts │ ├── Encryption.ts │ ├── Keys.ts │ ├── Limits.ts │ ├── Links.ts │ ├── Network.ts │ ├── Routes.ts │ ├── URIs.ts │ ├── URLs.ts │ ├── Validation.ts │ └── index.ts │ ├── containers │ ├── MainLayout │ │ ├── MainLayout.tsx │ │ └── index.ts │ └── ThemeProvider │ │ ├── ThemeProvider.tsx │ │ ├── index.ts │ │ ├── types │ │ ├── IProps.ts │ │ └── index.ts │ │ └── utils │ │ ├── index.ts │ │ └── setDocumentColorMode.ts │ ├── contracts │ ├── ARC0072Contract │ │ ├── ARC0072Contract.test.ts │ │ ├── ARC0072Contract.ts │ │ ├── abi.json │ │ ├── enums │ │ │ ├── ARC0072MethodEnum.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── ARC0200Contract │ │ ├── ARC0200Contract.test.ts │ │ ├── ARC0200Contract.ts │ │ ├── abi.json │ │ ├── enums │ │ │ ├── ARC0200MethodEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── ITransferOptions.ts │ │ │ └── index.ts │ └── BaseContract │ │ ├── BaseContract.ts │ │ ├── constants │ │ ├── Simulate.ts │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ ├── IABIResult.ts │ │ ├── IBaseApplicationOptions.ts │ │ ├── ICreateWriteApplicationTransactionOptions.ts │ │ ├── IDetermineBoxReferencesOptions.ts │ │ ├── INewOptions.ts │ │ ├── IParseTransactionResponseOptions.ts │ │ ├── ISimulateTransaction.ts │ │ └── index.ts │ ├── cryptography │ ├── BaseSignKeyPair │ │ ├── BaseSignKeyPair.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── INewOptions.ts │ │ │ ├── IVerifyOptions.ts │ │ │ └── index.ts │ ├── COSEPublicKey │ │ ├── COSEPublicKey.test.ts │ │ ├── COSEPublicKey.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── INewOptions.ts │ │ │ └── index.ts │ ├── ES256KeyPair │ │ ├── ES256KeyPair.test.ts │ │ ├── ES256KeyPair.ts │ │ └── index.ts │ └── Ed21559KeyPair │ │ ├── Ed21559KeyPair.test.ts │ │ ├── Ed21559KeyPair.ts │ │ └── index.ts │ ├── decorators │ └── EnVoiClient │ │ ├── EnVoiClient.ts │ │ ├── index.ts │ │ └── types │ │ ├── IEnVoiClientParameters.ts │ │ ├── IEnVoiResponse.ts │ │ ├── INameResolutionResult.ts │ │ ├── ITokenIDResolutionResponse.ts │ │ └── index.ts │ ├── enums │ ├── ARC0072AssetsThunkEnum.ts │ ├── ARC0200AssetsThunkEnum.ts │ ├── ARC0300AssetTypeEnum.ts │ ├── ARC0300AuthorityEnum.ts │ ├── ARC0300PathEnum.ts │ ├── ARC0300QueryEnum.ts │ ├── AVMNameTypeEnum.ts │ ├── AccountTabEnum.ts │ ├── AddAssetThunkEnum.ts │ ├── AppTypeEnum.ts │ ├── AssetTypeEnum.ts │ ├── DelimiterEnum.ts │ ├── EncryptionMethodEnum.ts │ ├── EventTypeEnum.ts │ ├── EventsThunkEnum.ts │ ├── NetworkTypeEnum.ts │ ├── ScanModeEnum.ts │ ├── StandardAssetsThunkEnum.ts │ ├── StoreNameEnum.ts │ ├── TransactionTypeEnum.ts │ └── index.ts │ ├── events │ ├── ARC0300KeyRegistrationTransactionSendEvent │ │ ├── ARC0300KeyRegistrationTransactionSendEvent.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── TPayload.ts │ │ │ └── index.ts │ ├── AVMWebProviderRequestEvent │ │ ├── AVMWebProviderRequestEvent.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── TPayload.ts │ │ │ └── index.ts │ ├── WebAuthnAuthenticateRequestEvent │ │ ├── WebAuthnAuthenticateRequestEvent.ts │ │ └── index.ts │ └── WebAuthnRegisterRequestEvent │ │ ├── WebAuthnRegisterRequestEvent.ts │ │ └── index.ts │ ├── features │ ├── accounts │ │ ├── enums │ │ │ ├── ThunkEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── addARC0200AssetHoldingsThunk.ts │ │ │ ├── addStandardAssetHoldingsThunk.ts │ │ │ ├── addToGroupThunk.ts │ │ │ ├── fetchAccountsFromStorageThunk.ts │ │ │ ├── index.ts │ │ │ ├── removeARC0200AssetHoldingsThunk.ts │ │ │ ├── removeAccountByIdThunk.ts │ │ │ ├── removeAccountPasskeyByIDThunk.ts │ │ │ ├── removeFromGroupThunk.ts │ │ │ ├── removeGroupByIDThunk.ts │ │ │ ├── removeStandardAssetHoldingsThunk.ts │ │ │ ├── saveAccountDetailsThunk.ts │ │ │ ├── saveAccountGroupsThunk.ts │ │ │ ├── saveAccountsThunk.ts │ │ │ ├── saveActiveAccountDetails.ts │ │ │ ├── saveNewAccountsThunk.ts │ │ │ ├── saveNewWatchAccountThunk.ts │ │ │ ├── startPollingForAccountsThunk.ts │ │ │ ├── stopPollingForAccountsThunk.ts │ │ │ └── updateAccountsThunk.ts │ │ ├── types │ │ │ ├── IAccountUpdateRequest.ts │ │ │ ├── IAddToGroupPayload.ts │ │ │ ├── IFetchAccountsFromStorageResult.ts │ │ │ ├── IRemovePasskeyByIDPayload.ts │ │ │ ├── ISaveAccountDetailsPayload.ts │ │ │ ├── ISaveNewAccountsPayload.ts │ │ │ ├── ISaveNewWatchAccountPayload.ts │ │ │ ├── IState.ts │ │ │ ├── IUpdateAccountsPayload.ts │ │ │ ├── IUpdateAssetHoldingsPayload.ts │ │ │ ├── IUpdateAssetHoldingsResult.ts │ │ │ ├── IUpdateStandardAssetHoldingsResult.ts │ │ │ ├── TUpdateStandardAssetHoldingsPayload.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── findAccountWithoutExtendedProps.ts │ │ │ ├── getInitialState.ts │ │ │ ├── index.ts │ │ │ ├── isAccountInformationUpdating │ │ │ ├── index.ts │ │ │ ├── isAccountInformationUpdating.ts │ │ │ └── types │ │ │ │ ├── IOptions.ts │ │ │ │ └── index.ts │ │ │ └── isAccountTransactionsUpdating │ │ │ ├── index.ts │ │ │ ├── isAccountTransactionsUpdating.ts │ │ │ └── types │ │ │ ├── IOptions.ts │ │ │ └── index.ts │ ├── add-assets │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── index.ts │ │ │ ├── queryARC0200AssetThunk.ts │ │ │ └── queryStandardAssetThunk.ts │ │ ├── types │ │ │ ├── IAssetsWithNextToken.ts │ │ │ ├── IQueryARC0200AssetPayload.ts │ │ │ ├── IQueryByIdAsyncThunkConfig.ts │ │ │ ├── IQueryStandardAssetPayload.ts │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── arc0072-assets │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── fetchARC0072AssetsFromStorageThunk.ts │ │ │ ├── index.ts │ │ │ └── updateARC0072AssetInformationThunk.ts │ │ ├── types │ │ │ ├── IState.ts │ │ │ ├── IUpdateARC0072AssetInformationPayload.ts │ │ │ ├── IUpdateARC0072AssetInformationResult.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── arc0200-assets │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── fetchARC0200AssetsFromStorageThunk.ts │ │ │ ├── index.ts │ │ │ └── updateARC0200AssetInformationThunk.ts │ │ ├── types │ │ │ ├── IState.ts │ │ │ ├── IUpdateARC0200AssetInformationPayload.ts │ │ │ ├── IUpdateARC0200AssetInformationResult.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── credential-lock │ │ ├── enums │ │ │ ├── ThunkEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── deactivateThunk.ts │ │ │ ├── disableThunk.ts │ │ │ ├── enableThunk.ts │ │ │ ├── fetchActiveThunk.ts │ │ │ └── index.ts │ │ ├── types │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── events │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── handleNewEventByIdThunk.ts │ │ │ ├── index.ts │ │ │ └── removeEventByIdThunk.ts │ │ ├── types │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── layout │ │ ├── enums │ │ │ ├── ThunkEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── closeCurrentWindowThunk.ts │ │ │ └── index.ts │ │ ├── types │ │ │ ├── IConfirmModal.ts │ │ │ ├── IScanQRCodeModal.ts │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── manage-groups-modal │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── types │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ └── getInitialState │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── messages │ │ ├── enums │ │ │ ├── ThunkEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── index.ts │ │ │ ├── sendEnableResponseThunk.ts │ │ │ ├── sendRegistrationCompletedThunk.ts │ │ │ ├── sendResetFactoryThunk.ts │ │ │ ├── sendSettingsUpdatedThunk.ts │ │ │ ├── sendSignMessageResponseThunk.ts │ │ │ └── sendSignTransactionsResponseThunk.ts │ │ ├── types │ │ │ ├── IBaseResponseThunkPayload.ts │ │ │ ├── IEnableResponseThunkPayload.ts │ │ │ ├── ISignMessageResponseThunkPayload.ts │ │ │ ├── ISignTransactionsResponseThunkPayload.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── move-group-modal │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── types │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ └── getInitialState │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── networks │ │ ├── enums │ │ │ ├── ThunkEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── addCustomNodeThunk.ts │ │ │ ├── fetchFromStorageThunk.ts │ │ │ ├── index.ts │ │ │ ├── removeCustomNodeThunk.ts │ │ │ ├── startPollingForTransactionsParamsThunk.ts │ │ │ ├── stopPollingForTransactionsParamsThunk.ts │ │ │ └── updateTransactionParamsForSelectedNetworkThunk.ts │ │ ├── types │ │ │ ├── IRemoveCustomNodeThunkPayload.ts │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── notifications │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── types │ │ │ ├── IAddNotificationPayload.ts │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── passkeys │ │ ├── enums │ │ │ ├── ThunkEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── fetchFromStorageThunk.ts │ │ │ ├── index.ts │ │ │ ├── removeFromStorageThunk.ts │ │ │ └── saveToStorageThunk.ts │ │ ├── types │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── re-key-account │ │ ├── enums │ │ │ ├── ThunkEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── index.ts │ │ │ ├── reKeyAccountThunk.ts │ │ │ └── undoReKeyAccountThunk.ts │ │ ├── types │ │ │ ├── ISetAccountAndActionPayload.ts │ │ │ ├── IState.ts │ │ │ ├── TReKeyAccountThunkPayload.ts │ │ │ ├── TReKeyType.ts │ │ │ ├── TUndoReKeyAccountThunkPayload.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── registration │ │ ├── enums │ │ │ ├── ThunkEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── index.ts │ │ │ └── saveCredentialsThunk.ts │ │ ├── types │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── remove-assets │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── types │ │ │ ├── IInitializeRemoveAssetsPayload.ts │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── send-assets │ │ ├── enums │ │ │ ├── ThunkEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── createUnsignedTransactionsThunk.ts │ │ │ ├── index.ts │ │ │ └── submitTransactionThunk.ts │ │ ├── types │ │ │ ├── ICreateUnsignedTransactionsPayload.ts │ │ │ ├── IInitializePayload.ts │ │ │ ├── IState.ts │ │ │ ├── TSubmitTransactionsThunkPayload.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── sessions │ │ ├── enums │ │ │ ├── ThunkEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── fetchFromStorageThunk.ts │ │ │ ├── index.ts │ │ │ ├── removeAllFromStorageThunk.ts │ │ │ ├── removeByIdFromStorageThunk.ts │ │ │ └── saveToStorageThunk.ts │ │ ├── types │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ ├── index.ts │ │ │ └── upsertSessions.ts │ ├── settings │ │ ├── enums │ │ │ ├── ThunkEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── fetchFromStorageThunk.ts │ │ │ ├── index.ts │ │ │ ├── saveToStorageThunk.ts │ │ │ └── sendThemeUpdatedMessageThunk.ts │ │ ├── types │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── filterSettingsFromState.ts │ │ │ ├── getInitialState.ts │ │ │ ├── index.ts │ │ │ └── mapSettingsToState.ts │ ├── standard-assets │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── fetchStandardAssetsFromStorageThunk.ts │ │ │ ├── index.ts │ │ │ └── updateStandardAssetInformationThunk.ts │ │ ├── types │ │ │ ├── IState.ts │ │ │ ├── IUpdateStandardAssetInformationPayload.ts │ │ │ ├── IUpdateStandardAssetInformationResult.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ ├── system │ │ ├── enums │ │ │ ├── ThunkEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ │ ├── fetchFromStorageThunk.ts │ │ │ ├── index.ts │ │ │ ├── saveDisableWhatsNewOnUpdateThunk.ts │ │ │ ├── savePolisAccountIDThunk.ts │ │ │ ├── saveWhatsNewVersionThunk.ts │ │ │ ├── startPollingForNetworkConnectivityThunk.ts │ │ │ ├── stopPollingForTransactionsParamsThunk.ts │ │ │ └── updateNetworkConnectivityThunk.ts │ │ ├── types │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── getInitialState.ts │ │ │ └── index.ts │ └── webauthn │ │ ├── enums │ │ ├── ThunkEnum.ts │ │ └── index.ts │ │ ├── index.ts │ │ ├── slice.ts │ │ ├── thunks │ │ ├── index.ts │ │ ├── sendWebAuthnAuthenticateResponseThunk.ts │ │ ├── sendWebAuthnErrorResponseThunk.ts │ │ └── sendWebAuthnRegisterResponseThunk.ts │ │ ├── types │ │ ├── IState.ts │ │ ├── IWebAuthnErrorResponseThunkPayload.ts │ │ ├── TWebAuthnAuthenticateResponseThunkPayload.ts │ │ ├── TWebAuthnRegisterResponseThunkPayload.ts │ │ └── index.ts │ │ └── utils │ │ └── getInitialState │ │ ├── getInitialState.ts │ │ └── index.ts │ ├── fonts │ ├── AnonymousPro │ │ ├── AnonymousPro-Bold.svg │ │ ├── AnonymousPro-Bold.ttf │ │ ├── AnonymousPro-Bold.woff │ │ ├── AnonymousPro-Bold.woff2 │ │ ├── AnonymousPro-Regular.svg │ │ ├── AnonymousPro-Regular.ttf │ │ ├── AnonymousPro-Regular.woff │ │ └── AnonymousPro-Regular.woff2 │ ├── Nunito │ │ ├── Nunito-Bold.svg │ │ ├── Nunito-Bold.ttf │ │ ├── Nunito-Bold.woff │ │ ├── Nunito-Bold.woff2 │ │ ├── Nunito-Regular.svg │ │ ├── Nunito-Regular.ttf │ │ ├── Nunito-Regular.woff │ │ └── Nunito-Regular.woff2 │ └── SourceCodePro │ │ ├── SourceCodePro-Bold.svg │ │ ├── SourceCodePro-Bold.ttf │ │ ├── SourceCodePro-Bold.woff │ │ ├── SourceCodePro-Bold.woff2 │ │ ├── SourceCodePro-Regular.svg │ │ ├── SourceCodePro-Regular.ttf │ │ ├── SourceCodePro-Regular.woff │ │ └── SourceCodePro-Regular.woff2 │ ├── hooks │ ├── useARC0200AssetById │ │ ├── index.ts │ │ ├── types │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── useARC0200AssetById.ts │ ├── useAccountInformation │ │ ├── index.ts │ │ └── useAccountInformation.ts │ ├── useAddressInput │ │ ├── index.ts │ │ ├── types │ │ │ ├── IOptions.ts │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── useAddressInput.ts │ ├── useAmountInput │ │ ├── index.ts │ │ ├── types │ │ │ ├── IOptions.ts │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── useAmountInput.ts │ ├── useBorderColor │ │ ├── index.ts │ │ └── useBorderColor.ts │ ├── useButtonHoverBackgroundColor │ │ ├── index.ts │ │ └── useButtonHoverBackgroundColor.ts │ ├── useCameraStream │ │ ├── index.ts │ │ ├── types │ │ │ ├── IUseCameraStreamState.ts │ │ │ └── index.ts │ │ └── useCameraStream.ts │ ├── useCaptureQRCode │ │ ├── index.ts │ │ ├── types │ │ │ ├── IStartScanningOptions.ts │ │ │ ├── IUseCaptureQrCodeState.ts │ │ │ └── index.ts │ │ ├── useCaptureQRCode.ts │ │ └── utils │ │ │ ├── captureQRCodeFromStream │ │ │ ├── captureQRCodeFromStream.ts │ │ │ └── index.ts │ │ │ └── captureQRCodeFromTab │ │ │ ├── captureQRCodeFromTab.ts │ │ │ └── index.ts │ ├── useChangePassword │ │ ├── index.ts │ │ ├── types │ │ │ ├── IChangePasswordActionOptions.ts │ │ │ ├── IReEncryptPrivateKeyItemWithDelayOptions.ts │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ ├── useChangePassword.ts │ │ └── utils │ │ │ ├── encryptPrivateKeyItemWithDelay.ts │ │ │ └── index.ts │ ├── useColorModeValue │ │ ├── index.ts │ │ └── useColorModeValue.ts │ ├── useDefaultAvatarBackgroundColor │ │ ├── index.ts │ │ └── useDefaultAvatarBackgroundColor.ts │ ├── useDefaultTextColor │ │ ├── index.ts │ │ └── useDefaultTextColor.ts │ ├── useGenericInput │ │ ├── index.ts │ │ ├── types │ │ │ ├── IOptions.ts │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── useGenericInput.ts │ ├── useItemBorderColor │ │ ├── index.ts │ │ └── useItemBorderColor.ts │ ├── useMinimumBalanceRequirementsForTransactions │ │ ├── index.ts │ │ ├── types │ │ │ ├── IOptions.ts │ │ │ ├── IState.ts │ │ │ └── index.ts │ │ └── useMinimumBalanceRequirementsForTransactions.ts │ ├── useNewPasswordInput │ │ ├── index.ts │ │ ├── types │ │ │ ├── IOptions.ts │ │ │ ├── IState.ts │ │ │ ├── IValidateOptions.ts │ │ │ └── index.ts │ │ ├── useNewPasswordInput.ts │ │ └── utils │ │ │ └── calculateScore │ │ │ ├── calculateScore.ts │ │ │ └── index.ts │ ├── useNotifications │ │ ├── index.ts │ │ └── useNotifications.tsx │ ├── useOnAppStartup │ │ ├── index.ts │ │ └── useOnAppStartup.ts │ ├── useOnDebugLogging │ │ ├── index.ts │ │ └── useOnDebugLogging.ts │ ├── useOnMainAppMessage │ │ ├── index.ts │ │ └── useOnMainAppMessage.ts │ ├── useOnNewAssets │ │ ├── index.ts │ │ └── useOnNewAssets.ts │ ├── usePrevious │ │ ├── index.ts │ │ └── usePrevious.ts │ ├── usePrimaryButtonHoverColor │ │ ├── index.ts │ │ └── usePrimaryButtonHoverColor.ts │ ├── usePrimaryButtonTextColor │ │ ├── index.ts │ │ └── usePrimaryButtonTextColor.ts │ ├── usePrimaryColor │ │ ├── index.ts │ │ └── usePrimaryColor.ts │ ├── usePrimaryColorScheme │ │ ├── index.ts │ │ └── usePrimaryColorScheme.ts │ ├── useScreenCaptureStream │ │ ├── index.ts │ │ ├── types │ │ │ ├── IUseScreenCaptureState.ts │ │ │ └── index.ts │ │ └── useScreenCaptureStream.ts │ ├── useStandardAssetById │ │ ├── index.ts │ │ ├── types │ │ │ ├── IUseStandardAssetByIdState.ts │ │ │ └── index.ts │ │ └── useStandardAssetById.ts │ ├── useSubTextColor │ │ ├── index.ts │ │ └── useSubTextColor.ts │ ├── useTextBackgroundColor │ │ ├── index.ts │ │ └── useTextBackgroundColor.ts │ ├── useToastWithDefaultOptions │ │ ├── index.ts │ │ └── useToastWithDefaultOptions.ts │ └── useUpdateARC0200Assets │ │ ├── index.ts │ │ ├── types │ │ ├── IUseUpdateARC0200AssetsState.ts │ │ └── index.ts │ │ └── useUpdateARC0200Assets.ts │ ├── icons │ ├── BsFolderMove │ │ ├── BsFolderMove.tsx │ │ └── index.ts │ ├── KbNoPasskey │ │ ├── KbNoPasskey.tsx │ │ └── index.ts │ ├── KbPasskey │ │ ├── KbPasskey.tsx │ │ └── index.ts │ └── KbSignIn │ │ ├── KbSignIn.tsx │ │ └── index.ts │ ├── images │ ├── placeholder_nft.png │ └── placeholder_qr_code.png │ ├── main.ts │ ├── managers │ ├── AppWindowManager │ │ ├── AppWindowManager.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── ICreateWindowOptions.ts │ │ │ ├── INewOptions.ts │ │ │ └── index.ts │ ├── PasskeyManager │ │ ├── PasskeyManager.ts │ │ ├── constants │ │ │ ├── Algorithms.ts │ │ │ ├── Sizes.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── ICreatePasskeyOptions.ts │ │ │ ├── IDecryptBytesOptions.ts │ │ │ ├── IEncryptBytesOptions.ts │ │ │ ├── IFetchPasskeyKeyMaterialOptions.ts │ │ │ ├── IGenerateEncryptionKeyOptions.ts │ │ │ └── index.ts │ ├── PasswordManager │ │ ├── PasswordManager.test.ts │ │ ├── PasswordManager.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── ICreateDerivedKeyFromPasswordOptions.ts │ │ │ ├── IDecryptAndEncryptBytesOptions.ts │ │ │ ├── INewOptions.ts │ │ │ ├── ISaveNewPasswordOptions.ts │ │ │ └── index.ts │ └── README.md │ ├── message-handlers │ ├── AVMWebProviderMessageHandler │ │ ├── AVMWebProviderMessageHandler.ts │ │ └── index.ts │ ├── BaseMessageHandler │ │ ├── BaseMessageHandler.ts │ │ └── index.ts │ ├── ExternalConfigMessageHandler │ │ ├── ExternalConfigMessageHandler.ts │ │ └── index.ts │ ├── ProviderMessageHandler │ │ ├── ProviderMessageHandler.ts │ │ └── index.ts │ └── WebAuthnMessageHandler │ │ ├── WebAuthnMessageHandler.ts │ │ └── index.ts │ ├── modals │ ├── ARC0300KeyRegistrationTransactionSendEventModal │ │ ├── ARC0300KeyRegistrationTransactionSendEventModal.tsx │ │ └── index.ts │ ├── AddAssetsModal │ │ ├── AddAssetsARC0200AssetItem.tsx │ │ ├── AddAssetsARC0200AssetSummaryModalContent.tsx │ │ ├── AddAssetsConfirmingModalContent.tsx │ │ ├── AddAssetsForWatchAccountModal.tsx │ │ ├── AddAssetsModal.tsx │ │ ├── AddAssetsStandardAssetItem.tsx │ │ ├── AddAssetsStandardAssetSummaryModalContent.tsx │ │ ├── hooks │ │ │ ├── useAddAssetStandardAssetSummaryContent │ │ │ │ ├── index.ts │ │ │ │ ├── types │ │ │ │ │ ├── IOptions.ts │ │ │ │ │ ├── IState.ts │ │ │ │ │ └── index.ts │ │ │ │ └── useAddAssetStandardAssetSummaryContent.ts │ │ │ └── useIsNewSelectedAsset │ │ │ │ ├── index.ts │ │ │ │ └── useIsNewSelectedAsset.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IAddAssetsARC0200SummaryModalContentProps.ts │ │ │ ├── IAddAssetsConfirmingModalContentProps.ts │ │ │ ├── IAddAssetsModalStandardAssetSummaryContentProps.ts │ │ │ ├── IItemProps.ts │ │ │ └── index.ts │ ├── AddCustomNodeModal │ │ ├── AddCustomNodeLoadingModalContent.tsx │ │ ├── AddCustomNodeModal.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── AddPasskeyModal │ │ ├── AddPasskeyModal.tsx │ │ ├── hooks │ │ │ └── useAddPasskey │ │ │ │ ├── index.ts │ │ │ │ ├── types │ │ │ │ ├── IAddPasskeyActionOptions.ts │ │ │ │ ├── IEncryptPrivateKeyItemWithDelayOptions.ts │ │ │ │ ├── IState.ts │ │ │ │ └── index.ts │ │ │ │ ├── useAddPasskey.ts │ │ │ │ └── utils │ │ │ │ ├── encryptPrivateKeyItemWithDelay.ts │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── AuthenticationModal │ │ ├── AuthenticationModal.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── ChangePasswordLoadingModal │ │ ├── ChangePasswordLoadingModal.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── ConfirmModal │ │ ├── ConfirmModal.tsx │ │ └── index.ts │ ├── ConfirmPasswordModal │ │ ├── ConfirmPasswordModal.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── CredentialLockModal │ │ ├── CredentialLockModal.tsx │ │ └── index.ts │ ├── EditAccountModal │ │ ├── EditAccountModal.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── EnableModal │ │ ├── EnableModal.tsx │ │ ├── hooks │ │ │ └── useEnableModal │ │ │ │ ├── index.ts │ │ │ │ ├── types │ │ │ │ ├── IUseEnableModalState.ts │ │ │ │ └── index.ts │ │ │ │ └── useEnableModal.ts │ │ └── index.ts │ ├── ManageGroupsModal │ │ ├── ManageGroupsModal.tsx │ │ └── index.ts │ ├── ManageSessionModal │ │ ├── ManageSessionModal.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── MoveGroupModal │ │ ├── MoveGroupModal.tsx │ │ └── index.ts │ ├── ReKeyAccountModal │ │ ├── ReKeyAccountConfirmingModalContent.tsx │ │ ├── ReKeyAccountModal.tsx │ │ ├── UndoReKeyAccountModalContent.tsx │ │ ├── hooks │ │ │ └── useReKeyAccountModal │ │ │ │ ├── index.ts │ │ │ │ ├── types │ │ │ │ ├── IState.ts │ │ │ │ └── index.ts │ │ │ │ └── useReKeyAccountModal.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IConfirmingModalContentProps.ts │ │ │ ├── IReKeyAccountModalContentProps.ts │ │ │ ├── IUndoReKeyAccountModalContentProps.ts │ │ │ └── index.ts │ ├── RegistrationImportAccountViaQRCodeModal │ │ ├── RegistrationImportAccountViaQRCodeModal.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── RemoveAssetsModal │ │ ├── RemoveAssetsConfirmingModalContent.tsx │ │ ├── RemoveAssetsModal.tsx │ │ ├── hooks │ │ │ └── useAddAssetStandardAssetSummaryContent │ │ │ │ ├── index.ts │ │ │ │ ├── types │ │ │ │ ├── IOptions.ts │ │ │ │ ├── IState.ts │ │ │ │ └── index.ts │ │ │ │ └── useAddAssetStandardAssetSummaryContent.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IRemoveAssetsConfirmingModalContentProps.ts │ │ │ ├── IRemoveAssetsModalProps.ts │ │ │ └── index.ts │ ├── RemovePasskeyModal │ │ ├── RemovePasskeyModal.tsx │ │ ├── hooks │ │ │ └── useRemovePasskey │ │ │ │ ├── index.ts │ │ │ │ ├── types │ │ │ │ ├── IEncryptPrivateKeyItemWithDelayOptions.ts │ │ │ │ ├── IRemovePasskeyActionOptions.ts │ │ │ │ ├── IState.ts │ │ │ │ └── index.ts │ │ │ │ ├── useRemovePasskey.ts │ │ │ │ └── utils │ │ │ │ ├── encryptPrivateKeyItemAndDelay.ts │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── ScanQRCodeModal │ │ ├── ScanQRCodeModal.tsx │ │ └── index.ts │ ├── SendAssetModal │ │ ├── SendAssetModal.tsx │ │ ├── SendAssetModalConfirmingContent.tsx │ │ ├── SendAssetModalContentSkeleton.tsx │ │ ├── SendAssetModalSummaryContent.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── ISendAssetModalConfirmingContentProps.ts │ │ │ ├── ISendAssetModalSummaryContentProps.ts │ │ │ └── index.ts │ ├── ShareAddressModal │ │ ├── ShareAddressModal.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── SignMessageModal │ │ ├── SignBytesJwtContent.tsx │ │ ├── SignMessageContentSkeleton.tsx │ │ ├── SignMessageModal.tsx │ │ ├── hooks │ │ │ └── useSignMessageModal │ │ │ │ ├── index.ts │ │ │ │ ├── types │ │ │ │ ├── IUseSignMessageModalState.ts │ │ │ │ └── index.ts │ │ │ │ └── useSignMessageModal.ts │ │ └── index.ts │ ├── SignTransactionsModal │ │ ├── ApplicationTransactionContent.tsx │ │ ├── AssetConfigTransactionContent.tsx │ │ ├── AssetCreateTransactionContent.tsx │ │ ├── AssetFreezeTransactionContent.tsx │ │ ├── AssetTransferTransactionContent.tsx │ │ ├── AtomicTransactionsContent.tsx │ │ ├── GroupOfTransactionsContent.tsx │ │ ├── PaymentTransactionContent.tsx │ │ ├── SignTransactionsModal.tsx │ │ ├── SingleTransactionContent.tsx │ │ ├── contexts │ │ │ ├── MultipleTransactionsContext.ts │ │ │ └── index.ts │ │ ├── hooks │ │ │ └── useSignTransactionsModal │ │ │ │ ├── index.ts │ │ │ │ ├── types │ │ │ │ ├── IState.ts │ │ │ │ └── index.ts │ │ │ │ └── useSignTransactionsModal.ts │ │ ├── index.ts │ │ ├── types │ │ │ ├── IAssetTransactionBodyProps.ts │ │ │ ├── IAtomicTransactionsContentProps.ts │ │ │ ├── ICondensedProps.ts │ │ │ ├── IGroupOfTransactionsContentProps.ts │ │ │ ├── IModalChangeAddressItemProps.ts │ │ │ ├── IMultipleTransactionsContextValue.ts │ │ │ ├── ISingleTransactionContentProps.ts │ │ │ ├── ITransactionBodyProps.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── authorizedAccountsForEvent │ │ │ ├── authorizedAccountsForEvent.ts │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ ├── IOptions.ts │ │ │ │ └── index.ts │ │ │ └── signTransactions │ │ │ ├── index.ts │ │ │ ├── signTransactions.ts │ │ │ └── types │ │ │ ├── TOptions.ts │ │ │ └── index.ts │ ├── StakingAppModal │ │ ├── StakingAppModal.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── ViewCustomNodeModal │ │ ├── ViewCustomNodeModal.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── WebAuthnAuthenticateModal │ │ ├── Item.tsx │ │ ├── WebAuthnAuthenticateModal.tsx │ │ ├── index.ts │ │ └── types │ │ │ ├── IItemProps.ts │ │ │ └── index.ts │ ├── WebAuthnRegisterModal │ │ ├── WebAuthnRegisterModal.tsx │ │ └── index.ts │ ├── WhatsNewModal │ │ ├── WhatsNewModal.tsx │ │ └── index.ts │ └── avm-names │ │ └── AVMNameModal │ │ ├── AVMNameModal.tsx │ │ ├── index.ts │ │ └── types │ │ ├── TProps.ts │ │ └── index.ts │ ├── models │ ├── AVMExplorerBlockExplorer │ │ ├── AVMExplorerBlockExplorer.ts │ │ └── index.ts │ ├── AlloBlockExplorer │ │ ├── AlloBlockExplorer.ts │ │ └── index.ts │ ├── BaseARC0072Indexer │ │ ├── BaseARC0072Indexer.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IFetchTokensByOwnerOptions.ts │ │ │ ├── INewOptions.ts │ │ │ ├── ITokenResult.ts │ │ │ ├── ITokensResponse.ts │ │ │ └── index.ts │ ├── BaseBlockExplorer │ │ ├── BaseBlockExplorer.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IGroupURLOptions.ts │ │ │ ├── INewOptions.ts │ │ │ └── index.ts │ ├── BaseNFTExplorer │ │ ├── BaseNFTExplorer.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── INewOptions.ts │ │ │ ├── ITokensURLOptions.ts │ │ │ └── index.ts │ ├── BaseSCSIndexer │ │ ├── BaseSCSIndexer.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IFetchByAddressOptions.ts │ │ │ ├── INewOptions.ts │ │ │ ├── ISCSAccount.ts │ │ │ ├── ISCSAccountResponse.ts │ │ │ └── index.ts │ ├── NFTNavigatorARC0072Indexer │ │ ├── NFTNavigatorARC0072Indexer.ts │ │ └── index.ts │ ├── NFTNavigatorNFTExplorer │ │ ├── NFTNavigatorNFTExplorer.ts │ │ └── index.ts │ ├── NautilusARC0072Indexer │ │ ├── NautilusARC0072Indexer.ts │ │ └── index.ts │ ├── NautilusSCSIndexer │ │ ├── NautilusSCSIndexer.ts │ │ └── index.ts │ ├── NetworkClient │ │ ├── NetworkClient.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IAssetHoldingWithDelayOptions.ts │ │ │ ├── IBlockWithDelayOptions.ts │ │ │ ├── IByAddressWithDelayOptions.ts │ │ │ ├── IByIDWithDelayOptions.ts │ │ │ ├── ILookupAccountTransactionWithDelayOptions.ts │ │ │ ├── INewOptions.ts │ │ │ ├── ISearchApplicationsWithDelayOptions.ts │ │ │ ├── ISearchStandardAssetsWithDelayOptions.ts │ │ │ ├── ISendRequestWithDelayOptions.ts │ │ │ ├── ISendTransactionOptions.ts │ │ │ └── index.ts │ ├── PeraBlockExplorer │ │ ├── PeraBlockExplorer.ts │ │ └── index.ts │ ├── PublicKeyCredentialFactory │ │ ├── PublicKeyCredentialFactory.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IGenerateOptions.ts │ │ │ ├── IInitOptions.ts │ │ │ ├── INewOptions.ts │ │ │ └── index.ts │ ├── VoiBlockExplorer │ │ ├── VoiBlockExplorer.ts │ │ └── index.ts │ └── VoiObserverBlockExplorer │ │ ├── VoiObserverBlockExplorer.ts │ │ └── index.ts │ ├── pages │ ├── AccountPage │ │ ├── AccountPage.tsx │ │ ├── AccountPageSkeletonContent.tsx │ │ └── index.ts │ ├── AccountPasskeyPage │ │ ├── AccountPasskeyPage.tsx │ │ ├── SkeletonPage.tsx │ │ └── index.ts │ ├── AddAccountTypePage │ │ ├── AddAccountTypePage.tsx │ │ ├── enums │ │ │ ├── AddAccountTypeEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── AddWatchAccountPage │ │ ├── AddWatchAccountPage.tsx │ │ ├── enums │ │ │ ├── StepsEnum.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IAddWatchAccountCompleteResult.ts │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── AssetPage │ │ ├── AssetPage.tsx │ │ ├── hooks │ │ │ └── useAssetPage │ │ │ │ ├── index.ts │ │ │ │ ├── types │ │ │ │ ├── IUseAssetPageOptions.ts │ │ │ │ ├── IUseAssetPageState.ts │ │ │ │ └── index.ts │ │ │ │ └── useAssetPage.ts │ │ └── index.ts │ ├── ChangePasswordPage │ │ ├── ChangePasswordPage.tsx │ │ └── index.ts │ ├── CreateNewAccountPage │ │ ├── CreateNewAccountPage.tsx │ │ ├── enums │ │ │ ├── StepsEnum.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── CreatePasswordPage │ │ ├── CreatePasswordPage.tsx │ │ └── index.ts │ ├── CustomNodesPage │ │ ├── CustomNodesPage.tsx │ │ └── index.ts │ ├── ExportAccountPage │ │ ├── ExportAcountPage.tsx │ │ └── index.ts │ ├── GetStartedPage │ │ ├── GetStartedPage.tsx │ │ └── index.ts │ ├── ImportAccountViaSeedPhrasePage │ │ ├── ImportAccountViaSeedPhrasePage.tsx │ │ ├── enums │ │ │ ├── StepsEnum.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── NFTPage │ │ ├── NFTPage.tsx │ │ ├── hooks │ │ │ └── useNFTPage │ │ │ │ ├── index.ts │ │ │ │ ├── types │ │ │ │ ├── IUseNFTPageOptions.ts │ │ │ │ ├── IUseNFTPageState.ts │ │ │ │ └── index.ts │ │ │ │ └── useNFTPage.ts │ │ └── index.ts │ ├── PasskeyPage │ │ ├── PasskeyPage.tsx │ │ └── index.ts │ ├── SkeletonAssetPage │ │ ├── SkeletonAssetPage.tsx │ │ └── index.ts │ ├── SplashPage │ │ ├── SplashPage.tsx │ │ └── index.ts │ ├── TransactionPage │ │ ├── ARC0200AssetTransferTransactionPage.tsx │ │ ├── AccountReKeyTransactionPage.tsx │ │ ├── AccountUndoReKeyTransactionPage.tsx │ │ ├── ApplicationTransactionPage.tsx │ │ ├── AssetConfigTransactionPage.tsx │ │ ├── AssetCreateTransactionPage.tsx │ │ ├── AssetDestroyTransactionPage.tsx │ │ ├── AssetFreezeTransactionPage.tsx │ │ ├── AssetTransferTransactionPage.tsx │ │ ├── LoadingTransactionPage.tsx │ │ ├── PaymentTransactionPage.tsx │ │ ├── TransactionPage.tsx │ │ ├── hooks │ │ │ └── useTransactionPage │ │ │ │ ├── index.ts │ │ │ │ ├── types │ │ │ │ ├── IUseTransactionPageState.ts │ │ │ │ └── index.ts │ │ │ │ └── useTransactionPage.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IProps.ts │ │ │ └── index.ts │ ├── ViewSeedPhrasePage │ │ ├── ViewSeedPhrasePage.tsx │ │ ├── hooks │ │ │ └── useViewSeedPhrase │ │ │ │ ├── index.ts │ │ │ │ ├── types │ │ │ │ ├── IDecryptSeedPhraseActionOptions.ts │ │ │ │ ├── IState.ts │ │ │ │ └── index.ts │ │ │ │ └── useViewSeedPhrase.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── IAccountAndSeedPhraseValue.ts │ │ │ └── index.ts │ └── settings │ │ ├── AboutSettingsPage │ │ ├── AboutSettingsPage.tsx │ │ └── index.ts │ │ ├── AdvancedSettingsPage │ │ ├── AdvancedSettingsPage.tsx │ │ └── index.ts │ │ ├── AppearanceSettingsPage │ │ ├── AppearanceSettingsPage.tsx │ │ └── index.ts │ │ ├── GeneralSettingsPage │ │ ├── GeneralSettingsPage.tsx │ │ └── index.ts │ │ ├── PrivacySettingsPage │ │ ├── PrivacySettingsPage.tsx │ │ └── index.ts │ │ ├── SecuritySettingsPage │ │ ├── SecuritySettingsPage.tsx │ │ └── index.ts │ │ ├── SessionsSettingsPage │ │ ├── SessionsSettingsPage.tsx │ │ └── index.ts │ │ └── SettingsIndexPage │ │ ├── SettingsIndexPage.tsx │ │ └── index.ts │ ├── repositories │ ├── ARC0072AssetRepository │ │ ├── ARC0072AssetRepository.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── ISaveOptions.ts │ │ │ └── index.ts │ ├── ARC0200AssetRepository │ │ ├── ARC0200AssetRepository.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── ISaveOptions.ts │ │ │ └── index.ts │ ├── AccountGroupRepository │ │ ├── AccountGroupRepository.ts │ │ └── index.ts │ ├── AccountRepository │ │ ├── AccountRepository.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── ISaveOptions.ts │ │ │ └── index.ts │ ├── ActiveAccountRepository │ │ ├── ActiveAccountRepository.ts │ │ └── index.ts │ ├── AppWindowRepository │ │ ├── AppWindowRepository.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── ISaveOptions.ts │ │ │ └── index.ts │ ├── BaseRepository │ │ ├── BaseRepository.ts │ │ └── index.ts │ ├── EventQueueRepository │ │ ├── EventQueueRepository.ts │ │ └── index.ts │ ├── NetworksRepository │ │ ├── NetworksRepository.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── ISerializableNetworkWithTransactionParams.ts │ │ │ └── index.ts │ ├── PasskeyCredentialRepository │ │ ├── PasskeyCredentialRepository.ts │ │ └── index.ts │ ├── PasswordTagRepository │ │ ├── PasswordTagRepository.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── ICreateOptions.ts │ │ │ └── index.ts │ ├── PrivateKeyRepository │ │ ├── PrivateKeyRepository.test.ts │ │ ├── PrivateKeyRepository.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── ICreateOptions.ts │ │ │ ├── IUpgradeOptions.ts │ │ │ └── index.ts │ ├── README.md │ ├── SessionRepository │ │ ├── SessionRepository.ts │ │ └── index.ts │ ├── SettingsRepository │ │ ├── SettingsRepository.ts │ │ └── index.ts │ ├── StandardAssetRepository │ │ ├── StandardAssetRepository.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── ISaveOptions.ts │ │ │ └── index.ts │ └── SystemInfoRepository │ │ ├── SystemInfoRepository.ts │ │ └── index.ts │ ├── routers │ ├── AccountRouter │ │ ├── AccountRouter.tsx │ │ └── index.ts │ ├── AddAccountMainRouter │ │ ├── AddAccountMainRouter.tsx │ │ └── index.ts │ ├── AddAccountRegistrationRouter │ │ ├── AddAccountRegistrationRouter.tsx │ │ └── index.ts │ └── settings │ │ ├── AdvancedSettingsRouter │ │ ├── AdvancedSettingsRouter.tsx │ │ └── index.ts │ │ ├── SecuritySettingsRouter │ │ ├── SecuritySettingsRouter.tsx │ │ └── index.ts │ │ └── SettingsRouter │ │ ├── SettingsRouter.tsx │ │ └── index.ts │ ├── selectors │ ├── accounts │ │ ├── index.ts │ │ ├── useSelectAccountByAddress.ts │ │ ├── useSelectAccountById.ts │ │ ├── useSelectAccountGroups.ts │ │ ├── useSelectAccounts.ts │ │ ├── useSelectAccountsFetching.ts │ │ ├── useSelectAccountsSaving.ts │ │ ├── useSelectActiveAccount.ts │ │ ├── useSelectActiveAccountDetails.ts │ │ ├── useSelectActiveAccountGroup.ts │ │ ├── useSelectActiveAccountInformation.ts │ │ ├── useSelectActiveAccountStakingApps.ts │ │ ├── useSelectActiveAccountTransactions.ts │ │ ├── useSelectActiveAccountTransactionsUpdating.ts │ │ ├── useSelectAvailableAccountsForSelectedNetwork.ts │ │ └── useSelectNonWatchAccounts.ts │ ├── add-assets │ │ ├── index.ts │ │ ├── useSelectAddAssetSelectedAsset.ts │ │ ├── useSelectAddAssetsARC0200Assets.ts │ │ ├── useSelectAddAssetsAccount.ts │ │ ├── useSelectAddAssetsConfirming.ts │ │ ├── useSelectAddAssetsFetching.ts │ │ └── useSelectAddAssetsStandardAssets.ts │ ├── arc-0072-assets │ │ ├── index.ts │ │ ├── useSelectARC0072AssetsBySelectedNetwork.ts │ │ ├── useSelectARC0072AssetsFetching.ts │ │ └── useSelectARC0072AssetsUpdating.ts │ ├── arc-0200-assets │ │ ├── index.ts │ │ ├── useSelectARC0200AssetsBySelectedNetwork.ts │ │ ├── useSelectARC0200AssetsFetching.ts │ │ └── useSelectARC0200AssetsUpdating.ts │ ├── credential-lock │ │ ├── index.ts │ │ ├── useSelectCredentialLockActive.ts │ │ └── useSelectCredentialLockSaving.ts │ ├── events │ │ ├── index.ts │ │ └── useSelectEvents.ts │ ├── index.ts │ ├── layout │ │ ├── index.ts │ │ ├── useSelectConfirmModal.ts │ │ ├── useSelectScanQRCodeModal.ts │ │ ├── useSelectSideBar.ts │ │ └── useSelectWhatsNewModal.ts │ ├── manage-groups-modal │ │ ├── index.ts │ │ └── useSelectManageGroupsModalIsOpen.ts │ ├── misc │ │ ├── index.ts │ │ └── useSelectIsCredentialsRequired.ts │ ├── move-group-modal │ │ ├── index.ts │ │ └── useSelectMoveGroupModalAccount.ts │ ├── networks │ │ ├── index.ts │ │ ├── useSelectNetworkByGenesisHash.ts │ │ ├── useSelectNetworkByGenesisHashWithFallback.ts │ │ ├── useSelectNetworks.ts │ │ └── useSelectNetworksSaving.ts │ ├── notifications │ │ ├── index.ts │ │ ├── useSelectNotShowingNotifications.ts │ │ └── useSelectNotificationsShowingConfetti.ts │ ├── passkeys │ │ ├── index.ts │ │ ├── useSelectPasskeysEnabled.ts │ │ ├── useSelectPasskeysFetching.ts │ │ ├── useSelectPasskeysPasskey.ts │ │ └── useSelectPasskeysSaving.ts │ ├── re-key-account │ │ ├── index.ts │ │ ├── useSelectReKeyAccount.ts │ │ ├── useSelectReKeyAccountConfirming.ts │ │ └── useSelectReKeyAccountType.ts │ ├── registration │ │ ├── index.ts │ │ ├── useSelectRegistrationImportAccountViaQRCodeOpen.ts │ │ ├── useSelectRegistrationPassword.ts │ │ └── useSelectRegistrationSaving.ts │ ├── remove-assets │ │ ├── index.ts │ │ ├── useSelectRemoveAssetsAccount.ts │ │ ├── useSelectRemoveAssetsConfirming.ts │ │ └── useSelectRemoveAssetsSelectedAsset.ts │ ├── send-assets │ │ ├── index.ts │ │ ├── useSelectSendAssetAsset.ts │ │ ├── useSelectSendAssetConfirming.ts │ │ ├── useSelectSendAssetCreating.ts │ │ └── useSelectSendAssetSender.ts │ ├── sessions │ │ ├── index.ts │ │ ├── useSelectSessions.ts │ │ ├── useSelectSessionsFetching.ts │ │ └── useSelectSessionsSaving.ts │ ├── settings │ │ ├── index.ts │ │ ├── useSelectDebugLogging.ts │ │ ├── useSelectSettings.ts │ │ ├── useSelectSettingsColorMode.ts │ │ ├── useSelectSettingsCredentialLockEnabled.ts │ │ ├── useSelectSettingsFetching.ts │ │ ├── useSelectSettingsNodeIDByGenesisHash.ts │ │ ├── useSelectSettingsPreferredBlockExplorer.ts │ │ ├── useSelectSettingsPreferredNFTExplorer.ts │ │ ├── useSelectSettingsSaving.ts │ │ └── useSelectSettingsSelectedNetwork.ts │ ├── standard-assets │ │ ├── index.ts │ │ ├── useSelectStandardAssets.ts │ │ ├── useSelectStandardAssetsByGenesisHash.ts │ │ ├── useSelectStandardAssetsBySelectedNetwork.ts │ │ ├── useSelectStandardAssetsFetching.ts │ │ └── useSelectStandardAssetsUpdating.ts │ ├── system │ │ ├── index.ts │ │ ├── useSelectIsOnline.ts │ │ ├── useSelectLogger.ts │ │ ├── useSelectSystemInfo.ts │ │ └── useSelectSystemWhatsNewInfo.ts │ └── webauthn │ │ ├── index.ts │ │ └── useSelectWebAuthnSaving.ts │ ├── services │ ├── CredentialLockService │ │ ├── CredentialLockService.ts │ │ └── index.ts │ ├── HeartbeatService │ │ ├── HeartbeatService.ts │ │ └── index.ts │ └── ProviderActionListener │ │ ├── ProviderActionListener.ts │ │ └── index.ts │ ├── styles │ └── fonts.css │ ├── translations │ ├── en.ts │ └── index.ts │ ├── types │ ├── IDecodedJwt.ts │ ├── IDecodedJwtHeader.ts │ ├── IDecodedJwtPayload.ts │ ├── IFetchAssetWithDelayOptions.ts │ ├── ITinyManAssetResponse.ts │ ├── IUpdateAssetInformationByIdOptions.ts │ ├── IVestigeFiAssetResponse.ts │ ├── accounts │ │ ├── IAccount.ts │ │ ├── IAccountEnVoi.ts │ │ ├── IAccountGroup.ts │ │ ├── IAccountInformation.ts │ │ ├── IAccountNetworkStakingApps.ts │ │ ├── IAccountPasskey.ts │ │ ├── IAccountPasskeyRelayingParty.ts │ │ ├── IAccountPasskeyUser.ts │ │ ├── IAccountStakingApp.ts │ │ ├── IAccountTransactions.ts │ │ ├── IAccountWithExtendedProps.ts │ │ ├── IActiveAccountDetails.ts │ │ ├── IInitializeAccountOptions.ts │ │ ├── INewAccount.ts │ │ └── index.ts │ ├── arc-0072 │ │ ├── IARC0072AssetInformation.ts │ │ └── index.ts │ ├── arc-0200 │ │ ├── IARC0200AssetInformation.ts │ │ └── index.ts │ ├── arc-0300 │ │ ├── IARC0300AccountImportQuery.ts │ │ ├── IARC0300AccountImportSchema.ts │ │ ├── IARC0300AccountImportWithAddressQuery.ts │ │ ├── IARC0300AssetAddQuery.ts │ │ ├── IARC0300AssetAddSchema.ts │ │ ├── IARC0300BaseSchema.ts │ │ ├── IARC0300CommonTransactionSendQuery.ts │ │ ├── IARC0300OfflineKeyRegistrationTransactionSendQuery.ts │ │ ├── IARC0300OfflineKeyRegistrationTransactionSendSchema.ts │ │ ├── IARC0300OnlineKeyRegistrationTransactionSendQuery.ts │ │ ├── IARC0300OnlineKeyRegistrationTransactionSendSchema.ts │ │ ├── IARC0300PaginationQueryItem.ts │ │ ├── TARC0300Queries.ts │ │ ├── TARC0300TransactionSendSchemas.ts │ │ └── index.ts │ ├── asset-holdings │ │ ├── IARC0003TokenMetadata.ts │ │ ├── IARC0003TokenMetadataLocalization.ts │ │ ├── IARC0072AssetHolding.ts │ │ ├── IARC0200AssetHolding.ts │ │ ├── IBaseAssetHolding.ts │ │ ├── IStandardAssetHolding.ts │ │ └── index.ts │ ├── assets │ │ ├── IARC0072Asset.ts │ │ ├── IARC0200Asset.ts │ │ ├── IAssetTypes.ts │ │ ├── IBaseAsset.ts │ │ ├── INativeCurrency.ts │ │ ├── IStandardAsset.ts │ │ └── index.ts │ ├── authentication │ │ ├── IPasskeyCredential.ts │ │ ├── IPasskeyEncryptionCredentials.ts │ │ ├── IPasswordEncryptionCredentials.ts │ │ ├── IPasswordTag.ts │ │ ├── IPrivateKey.ts │ │ ├── ISavePrivateKeyItemBaseOptions.ts │ │ ├── TEncryptionCredentials.ts │ │ └── index.ts │ ├── avm-names │ │ ├── IEnVoiHolding.ts │ │ └── index.ts │ ├── avm │ │ ├── IAVMAccountInformation.ts │ │ ├── IAVMAccountTransaction.ts │ │ ├── IAVMApplication.ts │ │ ├── IAVMApplicationParams.ts │ │ ├── IAVMApplicationTransaction.ts │ │ ├── IAVMAsset.ts │ │ ├── IAVMAssetConfigTransaction.ts │ │ ├── IAVMAssetFreezeTransaction.ts │ │ ├── IAVMAssetHolding.ts │ │ ├── IAVMAssetParams.ts │ │ ├── IAVMAssetTransferTransaction.ts │ │ ├── IAVMBlock.ts │ │ ├── IAVMKeyRegistrationTransaction.ts │ │ ├── IAVMPaymentTransaction.ts │ │ ├── IAVMPendingTransactionResponse.ts │ │ ├── IAVMSearchApplicationsResult.ts │ │ ├── IAVMSearchAssetsResult.ts │ │ ├── IAVMStateSchema.ts │ │ ├── IAVMStatus.ts │ │ ├── IAVMTealKeyValue.ts │ │ ├── IAVMTealValue.ts │ │ ├── IAVMTransactionParams.ts │ │ ├── IAVMVersions.ts │ │ ├── IAVMVersionsBuild.ts │ │ ├── TAVMTransaction.ts │ │ └── index.ts │ ├── components │ │ ├── IIconWithTooltipProps.ts │ │ ├── IPropsWithContext.ts │ │ └── index.ts │ ├── events │ │ ├── IBaseEvent.ts │ │ ├── IBaseMessageEventPayload.ts │ │ ├── TEvents.ts │ │ └── index.ts │ ├── i18n │ │ ├── IResourceLanguage.ts │ │ └── index.ts │ ├── index.ts │ ├── modals │ │ ├── IARC0300ModalContentProps.ts │ │ ├── IModalProps.ts │ │ └── index.ts │ ├── networks │ │ ├── IBaseNetworkServiceProvider.ts │ │ ├── IChainNamespace.ts │ │ ├── ICustomNode.ts │ │ ├── INetwork.ts │ │ ├── INetworkWithTransactionParams.ts │ │ ├── INode.ts │ │ ├── ITransactionParams.ts │ │ └── index.ts │ ├── notifications │ │ ├── INotification.ts │ │ ├── TNotificationType.ts │ │ └── index.ts │ ├── redux │ │ ├── IAppThunkDispatch.ts │ │ ├── IAppThunkDispatchReturn.ts │ │ ├── IAsyncThunkConfigWithRejectValue.ts │ │ ├── IBaseActionMeta.ts │ │ ├── IBaseAsyncThunkConfig.ts │ │ ├── IFulfilledActionMeta.ts │ │ ├── IPendingActionMeta.ts │ │ ├── IRejectedActionMeta.ts │ │ └── index.ts │ ├── sessions │ │ ├── ISession.ts │ │ └── index.ts │ ├── settings │ │ ├── IAdvancedSettings.ts │ │ ├── IAppearanceSettings.ts │ │ ├── IGeneralSettings.ts │ │ ├── IPrivacySettings.ts │ │ ├── ISecuritySettings.ts │ │ ├── ISettings.ts │ │ └── index.ts │ ├── states │ │ ├── IBackgroundRootState.ts │ │ ├── IBaseRootState.ts │ │ ├── IMainRootState.ts │ │ ├── IRegistrationRootState.ts │ │ └── index.ts │ ├── storage │ │ ├── TStorageItemTypes.ts │ │ └── index.ts │ ├── system │ │ ├── INetworkConnectivity.ts │ │ ├── ISystemInfo.ts │ │ ├── IWhatsNewInfo.ts │ │ └── index.ts │ ├── transactions │ │ ├── IARC0200AssetTransferTransaction.ts │ │ ├── IAccountReKeyTransaction.ts │ │ ├── IAccountUndoReKeyTransaction.ts │ │ ├── IApplicationTransaction.ts │ │ ├── IApplicationTransactionTypes.ts │ │ ├── IAssetConfigTransaction.ts │ │ ├── IAssetCreateTransaction.ts │ │ ├── IAssetDestroyTransaction.ts │ │ ├── IAssetFreezeTransaction.ts │ │ ├── IAssetTransferTransaction.ts │ │ ├── IAssetUnfreezeTransaction.ts │ │ ├── IBaseAssetFreezeTransaction.ts │ │ ├── IBaseTransaction.ts │ │ ├── IKeyRegistrationOfflineTransaction.ts │ │ ├── IKeyRegistrationOnlineTransaction.ts │ │ ├── IPaymentTransaction.ts │ │ ├── ITransactions.ts │ │ ├── IUnknownTransaction.ts │ │ └── index.ts │ └── ui │ │ ├── IAddAccountPageProps.ts │ │ ├── IAppProps.ts │ │ ├── IAppWindow.ts │ │ ├── ICondensedProps.ts │ │ ├── IRootProps.ts │ │ ├── IScanQRCodeModalContentProps.ts │ │ └── index.ts │ └── utils │ ├── authorizedAccountsForHost │ ├── authorizedAccountsForHost.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── availableAccountsForNetwork │ ├── availableAccountsForNetwork.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── avmVersionsWithDelay │ ├── avmVersionsWithDelay.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── bootstrapApp │ ├── bootstrapApp.ts │ └── index.ts │ ├── calculateAppMbrForBox │ ├── calculateAppMbrForBox.ts │ └── index.ts │ ├── calculateMaxTransactionAmount │ ├── calculateMaxTransactionAmount.ts │ └── index.ts │ ├── calculateMinimumBalanceRequirementForStandardAssets │ ├── calculateMinimumBalanceRequirementForStandardAssets.test.ts │ ├── calculateMinimumBalanceRequirementForStandardAssets.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── chainReferenceFromGenesisHash │ ├── chainReferenceFromGenesisHash.test.ts │ ├── chainReferenceFromGenesisHash.ts │ └── index.ts │ ├── convertAVMAddressToPublicKey │ ├── convertAVMAddressToPublicKey.ts │ └── index.ts │ ├── convertDataUriToImageData │ ├── convertDataUriToImageData.ts │ └── index.ts │ ├── convertGenesisHashToHex │ ├── convertGenesisHashToHex.ts │ └── index.ts │ ├── convertMillisecondsToMinutes │ ├── convertMillisecondsToMinutes.ts │ └── index.ts │ ├── convertPrivateKeyToAVMAddress │ ├── convertPrivateKeyToAVMAddress.ts │ └── index.ts │ ├── convertPrivateKeyToSeedPhrase │ ├── convertPrivateKeyToSeedPhrase.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── convertSeedPhraseToPrivateKey │ ├── convertSeedPhraseToPrivateKey.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── convertToKebabCase │ ├── convertToKebabCase.test.ts │ ├── convertToKebabCase.ts │ └── index.ts │ ├── createAccountImportURI │ ├── createAccountImportURI.test.ts │ ├── createAccountImportURI.ts │ ├── index.ts │ └── types │ │ ├── IExportAccount.ts │ │ ├── IOptions.ts │ │ └── index.ts │ ├── createIconFromDataUri │ ├── __snapshots__ │ │ └── createIconFromDataUri.test.tsx.snap │ ├── createIconFromDataUri.test.tsx │ ├── createIconFromDataUri.tsx │ └── index.ts │ ├── createMaskedSeedPhrase │ ├── createMaskedSeedPhrase.ts │ └── index.ts │ ├── createUnsignedARC0200TransferTransactions │ ├── createUnsignedARC0200TransferTransactions.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── createUnsignedKeyRegistrationTransactionFromSchema │ ├── createUnsignedKeyRegistrationTransactionFromSchema.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── createUnsignedPaymentTransactions │ ├── createUnsignedPaymentTransactions.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── createUnsignedStandardAssetTransferTransactions │ ├── createUnsignedStandardAssetTransferTransactions.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── createWatchAccountImportURI │ ├── createWatchAccountImportURI.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── decodeJwt │ ├── decodeJwt.ts │ └── index.ts │ ├── decodeURLSearchParam │ ├── decodeURLSearchParam.ts │ └── index.ts │ ├── decodeUnsignedTransaction │ ├── decodeUnsignedTransaction.ts │ └── index.ts │ ├── determinePaginationFromARC0300Schemas │ ├── determinePaginationFromARC0300Schemas.test.ts │ ├── determinePaginationFromARC0300Schemas.ts │ └── index.ts │ ├── doesAccountFallBelowMinimumBalanceRequirementForTransactions │ ├── doesAccountFallBelowMinimumBalanceRequirementForTransactions.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── fetchAssetVerification │ ├── fetchAssetVerification.ts │ └── index.ts │ ├── fetchDecryptedKeyPairFromStorageWithPasskey │ ├── fetchDecryptedKeyPairFromStorageWithPasskey.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── fetchDecryptedKeyPairFromStorageWithPassword │ ├── fetchDecryptedKeyPairFromStorageWithPassword.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── fetchDecryptedKeyPairFromStorageWithUnencrypted │ ├── fetchDecryptedKeyPairFromStorageWithUnencrypted.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── fetchVerifiedStandardAssetList │ ├── fetchVerifiedStandardAssetList.ts │ └── index.ts │ ├── fetchWithDelay │ ├── fetchWithDelay.ts │ ├── index.ts │ └── types │ │ ├── IParams.ts │ │ └── index.ts │ ├── filterCustomNodesFromNetwork │ ├── filterCustomNodesFromNetwork.test.ts │ ├── filterCustomNodesFromNetwork.ts │ └── index.ts │ ├── flattenAccountImportSchemaToNewAccounts │ ├── flattenAccountImportSchemaToNewAccounts.ts │ ├── index.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── formatID │ ├── formatID.ts │ └── index.ts │ ├── getAuthorizedAddressesForHost │ ├── getAuthorizedAddressesForHost.ts │ └── index.ts │ ├── groupTransactions │ ├── groupTransactions.ts │ └── index.ts │ ├── initializeARC0200AssetHoldingFromARC0200Asset │ ├── index.ts │ └── initializeARC0200AssetHoldingFromARC0200Asset.ts │ ├── isARC0300SchemaPaginationComplete │ ├── index.ts │ ├── isARC0300SchemaPaginationComplete.test.ts │ └── isARC0300SchemaPaginationComplete.ts │ ├── isAccountKnown │ ├── index.ts │ └── isAccountKnown.ts │ ├── isAssetInAccountHoldings │ ├── index.ts │ ├── isAssetInAccountHoldings.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── isByteArrayEqual │ ├── index.ts │ └── isByteArrayEqual.ts │ ├── isCameraAvailable │ ├── index.ts │ └── isCameraAvailable.ts │ ├── isCredentialLockActive │ ├── index.ts │ └── isCredentialLockActive.ts │ ├── isHexString │ ├── index.ts │ └── isHexString.ts │ ├── isMnemonicValid │ ├── index.ts │ └── isMnemonicValid.ts │ ├── isNetworkSupportedFromSettings │ ├── index.ts │ ├── isNetworkSupportedFromSettings.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── isNumericString │ ├── index.ts │ └── isNumericString.ts │ ├── isProviderInitialized │ ├── index.ts │ └── isProviderInitialized.ts │ ├── isReKeyedAuthAccountAvailable │ ├── index.ts │ ├── isReKeyedAuthAccountAvailable.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── isScreenCaptureAvailable │ ├── index.ts │ └── isScreenCaptureAvailable.ts │ ├── isWatchAccount │ ├── index.ts │ └── isWatchAccount.ts │ ├── isZeroAddress │ ├── index.ts │ └── isZeroAddress.ts │ ├── makeStore │ ├── index.ts │ └── makeStore.ts │ ├── mapARC0072AssetFromARC0072AssetInformation │ ├── index.ts │ └── mapARC0072AssetFromARC0072AssetInformation.ts │ ├── mapARC0200AssetFromARC0200AssetInformation │ ├── index.ts │ └── mapARC0200AssetFromARC200AssetInformation.ts │ ├── mapAVMAccountInformationToAccount │ ├── index.ts │ └── mapAVMAccountInformationToAccount.ts │ ├── mapAVMTransactionToTransaction │ ├── index.ts │ ├── mapAVMTransactionToTransaction.ts │ ├── parseApplicationTransaction.ts │ ├── parseAssetConfigTransaction.ts │ ├── parseAssetFreezeTransaction.ts │ ├── parseAssetTransferTransaction.ts │ ├── parseKeyRegistrationTransaction.ts │ ├── parseNote.ts │ └── parsePaymentAndReKeyTransaction.ts │ ├── mapAccountWithExtendedPropsToAccount │ ├── index.ts │ └── mapAccountWithExtendedPropsToAccount.ts │ ├── mapSessionFromEnableRequest │ ├── index.ts │ ├── mapSessionFromEnableRequest.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── mapStandardAssetFromAlgorandAsset │ ├── index.ts │ └── mapStandardAssetFromAlgorandAsset.ts │ ├── parseARC0200Transaction │ ├── index.ts │ ├── parseARC0200Transaction.test.ts │ └── parseARC0200Transaction.ts │ ├── parseTransactionType │ ├── index.ts │ └── parseTransactionType.ts │ ├── parseURIToARC0300Schema │ ├── index.ts │ ├── parseARC0300AccountImportSchema.test.ts │ ├── parseARC0300AccountImportSchema.ts │ ├── parseARC0300AssetAddSchema.test.ts │ ├── parseARC0300AssetAddSchema.ts │ ├── parseARC0300CommonTransactionSendQuery.test.ts │ ├── parseARC0300CommonTransactionSendQuery.ts │ ├── parseARC0300KeyRegistrationTransactionSendSchema.test.ts │ ├── parseARC0300KeyRegistrationTransactionSendSchema.ts │ ├── parseARC0300TransactionSendSchema.ts │ ├── parseURIToARC0300Schema.test.ts │ ├── parseURIToARC0300Schema.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── queueProviderEvent │ ├── index.ts │ ├── queueProviderEvent.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── refreshTransactions │ ├── index.ts │ ├── refreshTransactions.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── savePrivateKeyItemWithPasskey │ ├── index.ts │ ├── savePrivateKeyItemWithPasskey.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── savePrivateKeyItemWithPassword │ ├── index.ts │ ├── savePrivateKeyItemWithPassword.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── selectAssetsForNetwork │ ├── index.ts │ └── selectAssetsForNetwork.ts │ ├── selectDefaultNetwork │ ├── index.ts │ └── selectDefaultNetwork.ts │ ├── selectNetworkFromSettings │ ├── index.ts │ ├── selectNetworkFromSettings.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── selectNodeIDByGenesisHashFromSettings │ ├── index.ts │ ├── selectNodeIDByGenesisHashFromSettings.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── serialize │ ├── index.ts │ └── serialize.ts │ ├── signBytes │ ├── index.ts │ ├── signBytes.ts │ └── types │ │ ├── TOptions.ts │ │ └── index.ts │ ├── signTransaction │ ├── index.ts │ ├── signTransaction.ts │ └── types │ │ ├── TOptions.ts │ │ └── index.ts │ ├── sortAccountsByPolisAccount │ ├── index.ts │ ├── sortAccountsByPolisAccount.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── sortByIndex │ ├── index.ts │ ├── sortByIndex.test.ts │ ├── sortByIndex.ts │ └── types │ │ ├── IOptions.ts │ │ ├── IType.ts │ │ └── index.ts │ ├── supportedNetworksFromSettings │ ├── index.ts │ ├── supportedNetworksFromSettings.ts │ └── types │ │ ├── IOptions.ts │ │ └── index.ts │ ├── uniqueGenesisHashesFromTransactions │ ├── index.ts │ └── uniqueGenesisHashesFromTransactions.ts │ ├── updateARC0072AssetInformationById │ ├── index.ts │ └── updateARC0072AssetInformationById.ts │ ├── updateARC0200AssetInformationById │ ├── index.ts │ └── updateARC0200AssetInformationById.ts │ ├── updateAccountInformation │ ├── index.ts │ ├── types │ │ ├── IOptions.ts │ │ └── index.ts │ └── updateAccountInformation.ts │ ├── updateAccountStakingApps │ ├── index.ts │ ├── types │ │ ├── IOptions.ts │ │ └── index.ts │ └── updateAccountStakingApps.ts │ ├── updateAccountTransactions │ ├── index.ts │ ├── types │ │ ├── IOptions.ts │ │ └── index.ts │ └── updateAccountTransactions.ts │ ├── updateStandardAssetInformationById │ ├── index.ts │ ├── types │ │ ├── IOptions.ts │ │ └── index.ts │ └── updateStandardAssetInformationById.ts │ ├── upsertItemsById │ ├── index.ts │ └── upsertItemsById.ts │ ├── validateAddressInput │ ├── index.ts │ ├── types │ │ ├── IOptions.ts │ │ └── index.ts │ └── validateAddressInput.ts │ ├── validateGenericInput │ ├── index.ts │ ├── types │ │ ├── IOptions.ts │ │ └── index.ts │ └── validateGenericInput.ts │ ├── validateNewPasswordInput │ ├── index.ts │ ├── types │ │ ├── IOptions.ts │ │ └── index.ts │ └── validateNewPasswordInput.ts │ └── verifyTransactionGroups │ ├── index.ts │ ├── verifyTransactionGroups.test.tsx │ └── verifyTransactionGroups.ts ├── test ├── setup.ts ├── tsconfig.json └── utils │ └── wait │ ├── index.ts │ └── wait.ts ├── tsconfig.build.json ├── tsconfig.example.json ├── tsconfig.json └── webpack ├── constants ├── Directories.ts ├── Titles.ts └── index.ts ├── enums ├── ConfigNameEnum.ts ├── EnvironmentEnum.ts ├── TargetEnum.ts └── index.ts ├── plugins ├── ManifestBuilderPlugin │ ├── ManifestBuilderPlugin.ts │ └── index.ts └── WebExtPlugin │ ├── WebExtPlugin.ts │ ├── index.ts │ └── types │ ├── IOptions.ts │ └── index.ts ├── tsconfig.webpack.json ├── types ├── IAfterEmitHookFunction.ts ├── IDoneHookFunction.ts ├── IWatchOptions.ts ├── IWebpackEnvironmentVariables.ts └── index.ts ├── utils ├── createCommonConfig.ts └── index.ts └── webpack.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/.github/ISSUE_TEMPLATE/bug_report_template.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/actions/create-env-file/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/.github/actions/create-env-file/action.yml -------------------------------------------------------------------------------- /.github/actions/install-yq/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/.github/actions/install-yq/action.yml -------------------------------------------------------------------------------- /.github/actions/publish-to-chrome-web-store/constants/Urls.ts: -------------------------------------------------------------------------------- 1 | export const BASE_URL: string = 'https://www.googleapis.com'; 2 | -------------------------------------------------------------------------------- /.github/actions/publish-to-chrome-web-store/constants/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Urls'; 2 | -------------------------------------------------------------------------------- /.github/actions/publish-to-microsoft-edge-add-ons/constants/index.ts: -------------------------------------------------------------------------------- 1 | export * from './URLs'; 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/deploy_dapp_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/.github/workflows/deploy_dapp_example.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/.github/workflows/pull_request_checks.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | pnpm exec commitlint --edit "$1" 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | pnpm exec lint-staged 2 | -------------------------------------------------------------------------------- /.lintstagedrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/.lintstagedrc.mjs -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/.prettierignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/webextension-polyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/__mocks__/webextension-polyfill.ts -------------------------------------------------------------------------------- /commitlint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/commitlint.config.ts -------------------------------------------------------------------------------- /dapp-example/@types/global/index.d.ts: -------------------------------------------------------------------------------- 1 | declare const __PROVIDER_ID__: string; 2 | -------------------------------------------------------------------------------- /dapp-example/components/App/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/components/App/App.tsx -------------------------------------------------------------------------------- /dapp-example/components/App/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './App'; 2 | -------------------------------------------------------------------------------- /dapp-example/components/ConnectMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/components/ConnectMenu/index.ts -------------------------------------------------------------------------------- /dapp-example/components/ConnectionNotInitializedContent/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ConnectionNotInitializedContent'; 2 | -------------------------------------------------------------------------------- /dapp-example/components/ImportAccountViaQRCodeTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ImportAccountViaQRCodeTab'; 2 | -------------------------------------------------------------------------------- /dapp-example/components/Root/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/components/Root/Root.tsx -------------------------------------------------------------------------------- /dapp-example/components/Root/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Root'; 2 | -------------------------------------------------------------------------------- /dapp-example/components/SendKeyRegistrationViaURITab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SendKeyRegistrationViaURITab'; 2 | -------------------------------------------------------------------------------- /dapp-example/components/SignAssetTransactionTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SignAssetTransactionTab'; 2 | -------------------------------------------------------------------------------- /dapp-example/components/SignAtomicTransactionsTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SignAtomicTransactionsTab'; 2 | -------------------------------------------------------------------------------- /dapp-example/components/SignMessageTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SignMessageTab'; 2 | -------------------------------------------------------------------------------- /dapp-example/components/SignPaymentTransactionTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SignPaymentTransactionTab'; 2 | -------------------------------------------------------------------------------- /dapp-example/constants/Application.ts: -------------------------------------------------------------------------------- 1 | export const TESTNET_APP_INDEX: string = '22314999'; 2 | -------------------------------------------------------------------------------- /dapp-example/constants/Dimensions.ts: -------------------------------------------------------------------------------- 1 | export const MINIMUM_TAB_HEIGHT: number = 300; 2 | -------------------------------------------------------------------------------- /dapp-example/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/constants/index.ts -------------------------------------------------------------------------------- /dapp-example/contexts/SystemContext/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SystemContext'; 2 | -------------------------------------------------------------------------------- /dapp-example/enums/ConnectionTypeEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/enums/ConnectionTypeEnum.ts -------------------------------------------------------------------------------- /dapp-example/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/enums/index.ts -------------------------------------------------------------------------------- /dapp-example/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/favicon.png -------------------------------------------------------------------------------- /dapp-example/hooks/useAVMWebProviderConnector/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useAVMWebProviderConnector'; 2 | -------------------------------------------------------------------------------- /dapp-example/hooks/useBorderColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useBorderColor'; 2 | -------------------------------------------------------------------------------- /dapp-example/hooks/useDefaultTextColor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/hooks/useDefaultTextColor/index.ts -------------------------------------------------------------------------------- /dapp-example/hooks/usePrimaryColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './usePrimaryColor'; 2 | -------------------------------------------------------------------------------- /dapp-example/hooks/usePrimaryColorScheme/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './usePrimaryColorScheme'; 2 | -------------------------------------------------------------------------------- /dapp-example/hooks/useSubTextColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useSubTextColor'; 2 | -------------------------------------------------------------------------------- /dapp-example/hooks/useUseWalletConnector/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useUseWalletConnector'; 2 | -------------------------------------------------------------------------------- /dapp-example/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/index.hbs -------------------------------------------------------------------------------- /dapp-example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/index.ts -------------------------------------------------------------------------------- /dapp-example/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/selectors/index.ts -------------------------------------------------------------------------------- /dapp-example/selectors/useSelectLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/selectors/useSelectLogger.ts -------------------------------------------------------------------------------- /dapp-example/types/IAccountInformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/types/IAccountInformation.ts -------------------------------------------------------------------------------- /dapp-example/types/IAssetInformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/types/IAssetInformation.ts -------------------------------------------------------------------------------- /dapp-example/types/IBaseTransactionProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/types/IBaseTransactionProps.ts -------------------------------------------------------------------------------- /dapp-example/types/IConnectorParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/types/IConnectorParams.ts -------------------------------------------------------------------------------- /dapp-example/types/IConnectorState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/types/IConnectorState.ts -------------------------------------------------------------------------------- /dapp-example/types/ISignMessageActionResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/types/ISignMessageActionResult.ts -------------------------------------------------------------------------------- /dapp-example/types/TSignMessageAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/types/TSignMessageAction.ts -------------------------------------------------------------------------------- /dapp-example/types/TSignTransactionsAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/types/TSignTransactionsAction.ts -------------------------------------------------------------------------------- /dapp-example/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/types/index.ts -------------------------------------------------------------------------------- /dapp-example/utils/createAppCallTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/utils/createAppCallTransaction.ts -------------------------------------------------------------------------------- /dapp-example/utils/createAppOptInTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/utils/createAppOptInTransaction.ts -------------------------------------------------------------------------------- /dapp-example/utils/createPaymentTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/utils/createPaymentTransaction.ts -------------------------------------------------------------------------------- /dapp-example/utils/getAccountInformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/utils/getAccountInformation.ts -------------------------------------------------------------------------------- /dapp-example/utils/getRandomAlgodClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/utils/getRandomAlgodClient.ts -------------------------------------------------------------------------------- /dapp-example/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/utils/index.ts -------------------------------------------------------------------------------- /dapp-example/utils/isValidJwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/utils/isValidJwt.ts -------------------------------------------------------------------------------- /dapp-example/utils/parseConnectorType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/dapp-example/utils/parseConnectorType.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /images/repo_logo@637x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/images/repo_logo@637x128.png -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /release.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/release.config.mjs -------------------------------------------------------------------------------- /scripts/get_latest_release_asset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/scripts/get_latest_release_asset.sh -------------------------------------------------------------------------------- /scripts/install_chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/scripts/install_chrome.sh -------------------------------------------------------------------------------- /scripts/install_firefox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/scripts/install_firefox.sh -------------------------------------------------------------------------------- /scripts/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/scripts/package.sh -------------------------------------------------------------------------------- /scripts/post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/scripts/post_install.sh -------------------------------------------------------------------------------- /scripts/refresh_chrome_web_store_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/scripts/refresh_chrome_web_store_token.sh -------------------------------------------------------------------------------- /scripts/set_vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/scripts/set_vars.sh -------------------------------------------------------------------------------- /scripts/update_issue_templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/scripts/update_issue_templates.sh -------------------------------------------------------------------------------- /scripts/update_manifest_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/scripts/update_manifest_version.sh -------------------------------------------------------------------------------- /src/@types/assets/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/@types/assets/index.d.ts -------------------------------------------------------------------------------- /src/@types/global/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/@types/global/index.d.ts -------------------------------------------------------------------------------- /src/@types/scrypt-async/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/@types/scrypt-async/index.d.ts -------------------------------------------------------------------------------- /src/@types/styles/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.css'; 2 | -------------------------------------------------------------------------------- /src/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/README.md -------------------------------------------------------------------------------- /src/client/adapters/LegacyProviderAdapter/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LegacyProviderAdapter'; 2 | -------------------------------------------------------------------------------- /src/client/apps/WebAuthnAuthenticateApp/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/apps/WebAuthnAuthenticateApp/App.tsx -------------------------------------------------------------------------------- /src/client/apps/WebAuthnAuthenticateApp/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './App'; 2 | -------------------------------------------------------------------------------- /src/client/apps/WebAuthnRegisterApp/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/apps/WebAuthnRegisterApp/App.tsx -------------------------------------------------------------------------------- /src/client/apps/WebAuthnRegisterApp/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/apps/WebAuthnRegisterApp/Root.tsx -------------------------------------------------------------------------------- /src/client/apps/WebAuthnRegisterApp/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './App'; 2 | -------------------------------------------------------------------------------- /src/client/components/AccountItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AccountItem'; 2 | -------------------------------------------------------------------------------- /src/client/constants/Dimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/constants/Dimensions.ts -------------------------------------------------------------------------------- /src/client/constants/Durations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/constants/Durations.ts -------------------------------------------------------------------------------- /src/client/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/constants/index.ts -------------------------------------------------------------------------------- /src/client/hooks/useWebAuthn/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useWebAuthn'; 2 | -------------------------------------------------------------------------------- /src/client/hooks/useWebAuthn/types/IOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/hooks/useWebAuthn/types/IOptions.ts -------------------------------------------------------------------------------- /src/client/hooks/useWebAuthn/types/IState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/hooks/useWebAuthn/types/IState.ts -------------------------------------------------------------------------------- /src/client/hooks/useWebAuthn/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/hooks/useWebAuthn/types/index.ts -------------------------------------------------------------------------------- /src/client/hooks/useWebAuthn/useWebAuthn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/hooks/useWebAuthn/useWebAuthn.ts -------------------------------------------------------------------------------- /src/client/interceptors/WebAuthnInterceptor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './WebAuthnInterceptor'; 2 | -------------------------------------------------------------------------------- /src/client/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/main.ts -------------------------------------------------------------------------------- /src/client/managers/ConfigManager/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ConfigManager'; 2 | -------------------------------------------------------------------------------- /src/client/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/styles/fonts.css -------------------------------------------------------------------------------- /src/client/types/IBaseAppProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/types/IBaseAppProps.ts -------------------------------------------------------------------------------- /src/client/types/IBaseRootProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/types/IBaseRootProps.ts -------------------------------------------------------------------------------- /src/client/types/IWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/types/IWindow.ts -------------------------------------------------------------------------------- /src/client/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/client/types/index.ts -------------------------------------------------------------------------------- /src/client/utils/dispatchMessageWithTimeout/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './dispatchMessageWithTimeout'; 2 | -------------------------------------------------------------------------------- /src/common/components/AccountAvatar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AccountAvatar'; 2 | -------------------------------------------------------------------------------- /src/common/components/AlgorandIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AlgorandIcon'; 2 | -------------------------------------------------------------------------------- /src/common/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/Button/Button.tsx -------------------------------------------------------------------------------- /src/common/components/Button/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Button'; 2 | -------------------------------------------------------------------------------- /src/common/components/Button/types/TProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/Button/types/TProps.ts -------------------------------------------------------------------------------- /src/common/components/Button/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/Button/types/index.ts -------------------------------------------------------------------------------- /src/common/components/EmptyIcon/EmptyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/EmptyIcon/EmptyIcon.tsx -------------------------------------------------------------------------------- /src/common/components/EmptyIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EmptyIcon'; 2 | -------------------------------------------------------------------------------- /src/common/components/EmptyPasskeyIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EmptyPasskeyIcon'; 2 | -------------------------------------------------------------------------------- /src/common/components/EmptyState/EmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/EmptyState/EmptyState.tsx -------------------------------------------------------------------------------- /src/common/components/EmptyState/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EmptyState'; 2 | -------------------------------------------------------------------------------- /src/common/components/EmptyState/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/EmptyState/types/index.ts -------------------------------------------------------------------------------- /src/common/components/IconButton/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/IconButton/IconButton.tsx -------------------------------------------------------------------------------- /src/common/components/IconButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/IconButton/index.ts -------------------------------------------------------------------------------- /src/common/components/IconButton/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/IconButton/types/index.ts -------------------------------------------------------------------------------- /src/common/components/Label/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/Label/Label.tsx -------------------------------------------------------------------------------- /src/common/components/Label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/Label/index.ts -------------------------------------------------------------------------------- /src/common/components/Label/types/TProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/Label/types/TProps.ts -------------------------------------------------------------------------------- /src/common/components/Label/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/Label/types/index.ts -------------------------------------------------------------------------------- /src/common/components/Notice/Notice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/Notice/Notice.tsx -------------------------------------------------------------------------------- /src/common/components/Notice/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Notice'; 2 | -------------------------------------------------------------------------------- /src/common/components/Notice/types/IProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/Notice/types/IProps.ts -------------------------------------------------------------------------------- /src/common/components/Notice/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/Notice/types/index.ts -------------------------------------------------------------------------------- /src/common/components/VoiIcon/VoiIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/components/VoiIcon/VoiIcon.tsx -------------------------------------------------------------------------------- /src/common/components/VoiIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './VoiIcon'; 2 | -------------------------------------------------------------------------------- /src/common/constants/Application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/constants/Application.ts -------------------------------------------------------------------------------- /src/common/constants/COSEAlgorithms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/constants/COSEAlgorithms.ts -------------------------------------------------------------------------------- /src/common/constants/Dimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/constants/Dimensions.ts -------------------------------------------------------------------------------- /src/common/constants/Styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/constants/Styles.ts -------------------------------------------------------------------------------- /src/common/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/constants/index.ts -------------------------------------------------------------------------------- /src/common/enums/ErrorCodeEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/enums/ErrorCodeEnum.ts -------------------------------------------------------------------------------- /src/common/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/enums/index.ts -------------------------------------------------------------------------------- /src/common/errors/BaseExtensionError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/BaseExtensionError.ts -------------------------------------------------------------------------------- /src/common/errors/CameraError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/CameraError.ts -------------------------------------------------------------------------------- /src/common/errors/CameraNotAllowedError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/CameraNotAllowedError.ts -------------------------------------------------------------------------------- /src/common/errors/CameraNotFoundError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/CameraNotFoundError.ts -------------------------------------------------------------------------------- /src/common/errors/InvalidABIContractError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/InvalidABIContractError.ts -------------------------------------------------------------------------------- /src/common/errors/MalformedDataError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/MalformedDataError.ts -------------------------------------------------------------------------------- /src/common/errors/NetworkConnectionError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/NetworkConnectionError.ts -------------------------------------------------------------------------------- /src/common/errors/NetworkNotSelectedError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/NetworkNotSelectedError.ts -------------------------------------------------------------------------------- /src/common/errors/NotAZeroBalanceError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/NotAZeroBalanceError.ts -------------------------------------------------------------------------------- /src/common/errors/OfflineError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/OfflineError.ts -------------------------------------------------------------------------------- /src/common/errors/ParsingError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/ParsingError.ts -------------------------------------------------------------------------------- /src/common/errors/PasskeyCreationError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/PasskeyCreationError.ts -------------------------------------------------------------------------------- /src/common/errors/PasskeyNotSupportedError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/PasskeyNotSupportedError.ts -------------------------------------------------------------------------------- /src/common/errors/ReadABIContractError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/ReadABIContractError.ts -------------------------------------------------------------------------------- /src/common/errors/ScreenCaptureError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/ScreenCaptureError.ts -------------------------------------------------------------------------------- /src/common/errors/ScreenCaptureNotFoundError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/ScreenCaptureNotFoundError.ts -------------------------------------------------------------------------------- /src/common/errors/UnableToFetchPasskeyError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/UnableToFetchPasskeyError.ts -------------------------------------------------------------------------------- /src/common/errors/UnknownError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/UnknownError.ts -------------------------------------------------------------------------------- /src/common/errors/authentication/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/authentication/index.ts -------------------------------------------------------------------------------- /src/common/errors/cryptography/DecodingError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/cryptography/DecodingError.ts -------------------------------------------------------------------------------- /src/common/errors/cryptography/EncodingError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/cryptography/EncodingError.ts -------------------------------------------------------------------------------- /src/common/errors/cryptography/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/cryptography/index.ts -------------------------------------------------------------------------------- /src/common/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/index.ts -------------------------------------------------------------------------------- /src/common/errors/webauthn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/errors/webauthn/index.ts -------------------------------------------------------------------------------- /src/common/hooks/useBorderColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useBorderColor'; 2 | -------------------------------------------------------------------------------- /src/common/hooks/useButtonHoverBackgroundColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useButtonHoverBackgroundColor'; 2 | -------------------------------------------------------------------------------- /src/common/hooks/useDefaultTextColor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/hooks/useDefaultTextColor/index.ts -------------------------------------------------------------------------------- /src/common/hooks/usePrimaryButtonTextColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './usePrimaryButtonTextColor'; 2 | -------------------------------------------------------------------------------- /src/common/hooks/usePrimaryColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './usePrimaryColor'; 2 | -------------------------------------------------------------------------------- /src/common/hooks/usePrimaryColorScheme/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './usePrimaryColorScheme'; 2 | -------------------------------------------------------------------------------- /src/common/hooks/usePrimaryRawColorCode/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './usePrimaryRawColorCode'; 2 | -------------------------------------------------------------------------------- /src/common/hooks/useSubTextColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useSubTextColor'; 2 | -------------------------------------------------------------------------------- /src/common/hooks/useSubTextRawColorCode/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useSubTextRawColorCode'; 2 | -------------------------------------------------------------------------------- /src/common/hooks/useTabletAndUp/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useTabletAndUp'; 2 | -------------------------------------------------------------------------------- /src/common/hooks/useTextBackgroundColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useTextBackgroundColor'; 2 | -------------------------------------------------------------------------------- /src/common/managers/ColorModeManager/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ColorModeManager'; 2 | -------------------------------------------------------------------------------- /src/common/messages/AVMWebProviderRequestMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AVMWebProviderRequestMessage'; 2 | -------------------------------------------------------------------------------- /src/common/messages/AVMWebProviderResponseMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AVMWebProviderResponseMessage'; 2 | -------------------------------------------------------------------------------- /src/common/messages/BaseProviderMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BaseProviderMessage'; 2 | -------------------------------------------------------------------------------- /src/common/messages/ExternalConfigOnUpdateMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ExternalConfigOnUpdateMessage'; 2 | -------------------------------------------------------------------------------- /src/common/messages/ExternalConfigRequestMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ExternalConfigRequestMessage'; 2 | -------------------------------------------------------------------------------- /src/common/messages/ProviderCredentialLockActivatedMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProviderCredentialLockActivatedMessage'; 2 | -------------------------------------------------------------------------------- /src/common/messages/ProviderEventAddedMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProviderEventAddedMessage'; 2 | -------------------------------------------------------------------------------- /src/common/messages/ProviderFactoryResetMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProviderFactoryResetMessage'; 2 | -------------------------------------------------------------------------------- /src/common/messages/ProviderRegistrationCompletedMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProviderRegistrationCompletedMessage'; 2 | -------------------------------------------------------------------------------- /src/common/messages/ProviderSessionsUpdatedMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProviderSessionsUpdatedMessage'; 2 | -------------------------------------------------------------------------------- /src/common/messages/ProviderSettingsUpdatedMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProviderSettingsUpdatedMessage'; 2 | -------------------------------------------------------------------------------- /src/common/messages/ProviderThemeUpdatedMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProviderThemeUpdatedMessage'; 2 | -------------------------------------------------------------------------------- /src/common/messages/WebAuthnRegisterRequestMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './WebAuthnRegisterRequestMessage'; 2 | -------------------------------------------------------------------------------- /src/common/services/BaseListener/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BaseListener'; 2 | -------------------------------------------------------------------------------- /src/common/theme/Code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/theme/Code.ts -------------------------------------------------------------------------------- /src/common/theme/Tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/theme/Tag.ts -------------------------------------------------------------------------------- /src/common/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/theme/index.ts -------------------------------------------------------------------------------- /src/common/theme/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/theme/theme.tsx -------------------------------------------------------------------------------- /src/common/types/accounts/IExternalAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/accounts/IExternalAccount.ts -------------------------------------------------------------------------------- /src/common/types/accounts/TAccountColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/accounts/TAccountColors.ts -------------------------------------------------------------------------------- /src/common/types/accounts/TAccountIcons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/accounts/TAccountIcons.ts -------------------------------------------------------------------------------- /src/common/types/accounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/accounts/index.ts -------------------------------------------------------------------------------- /src/common/types/base/IBaseOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/base/IBaseOptions.ts -------------------------------------------------------------------------------- /src/common/types/base/TPartialExcept.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/base/TPartialExcept.ts -------------------------------------------------------------------------------- /src/common/types/base/TReplace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/base/TReplace.ts -------------------------------------------------------------------------------- /src/common/types/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/base/index.ts -------------------------------------------------------------------------------- /src/common/types/config/IClientInformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/config/IClientInformation.ts -------------------------------------------------------------------------------- /src/common/types/config/IExternalConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/config/IExternalConfig.ts -------------------------------------------------------------------------------- /src/common/types/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/config/index.ts -------------------------------------------------------------------------------- /src/common/types/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/errors/index.ts -------------------------------------------------------------------------------- /src/common/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/index.ts -------------------------------------------------------------------------------- /src/common/types/messages/IBaseMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/messages/IBaseMessage.ts -------------------------------------------------------------------------------- /src/common/types/messages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/messages/index.ts -------------------------------------------------------------------------------- /src/common/types/system/ILogLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/system/ILogLevel.ts -------------------------------------------------------------------------------- /src/common/types/system/ILogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/system/ILogger.ts -------------------------------------------------------------------------------- /src/common/types/system/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/system/index.ts -------------------------------------------------------------------------------- /src/common/types/ui/IBaseComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/ui/IBaseComponentProps.ts -------------------------------------------------------------------------------- /src/common/types/ui/IExternalTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/ui/IExternalTheme.ts -------------------------------------------------------------------------------- /src/common/types/ui/TEmptyIconProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/ui/TEmptyIconProps.ts -------------------------------------------------------------------------------- /src/common/types/ui/TSizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/ui/TSizes.ts -------------------------------------------------------------------------------- /src/common/types/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/ui/index.ts -------------------------------------------------------------------------------- /src/common/types/webauthn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/types/webauthn/index.ts -------------------------------------------------------------------------------- /src/common/utils/bufferSourceToUint8Array/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './bufferSourceToUint8Array'; 2 | -------------------------------------------------------------------------------- /src/common/utils/calculateIconSize/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './calculateIconSize'; 2 | -------------------------------------------------------------------------------- /src/common/utils/computeGroupId/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './computeGroupId'; 2 | -------------------------------------------------------------------------------- /src/common/utils/convertPublicKeyToAVMAddress/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './convertPublicKeyToAVMAddress'; 2 | -------------------------------------------------------------------------------- /src/common/utils/convertToAtomicUnit/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './convertToAtomicUnit'; 2 | -------------------------------------------------------------------------------- /src/common/utils/convertToStandardUnit/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './convertToStandardUnit'; 2 | -------------------------------------------------------------------------------- /src/common/utils/createAlgodClient/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/utils/createAlgodClient/index.ts -------------------------------------------------------------------------------- /src/common/utils/createClientInformation/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './createClientInformation'; 2 | -------------------------------------------------------------------------------- /src/common/utils/createIndexerClient/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './createIndexerClient'; 2 | -------------------------------------------------------------------------------- /src/common/utils/createLogger/createLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/utils/createLogger/createLogger.ts -------------------------------------------------------------------------------- /src/common/utils/createLogger/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './createLogger'; 2 | -------------------------------------------------------------------------------- /src/common/utils/ellipseAddress/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ellipseAddress'; 2 | -------------------------------------------------------------------------------- /src/common/utils/ellipseAddress/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/utils/ellipseAddress/types/index.ts -------------------------------------------------------------------------------- /src/common/utils/extractFaviconURL/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './extractFaviconURL'; 2 | -------------------------------------------------------------------------------- /src/common/utils/formatCurrencyUnit/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './formatCurrencyUnit'; 2 | -------------------------------------------------------------------------------- /src/common/utils/formatTimestamp/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './formatTimestamp'; 2 | -------------------------------------------------------------------------------- /src/common/utils/getRandomItem/getRandomItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/common/utils/getRandomItem/getRandomItem.ts -------------------------------------------------------------------------------- /src/common/utils/getRandomItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './getRandomItem'; 2 | -------------------------------------------------------------------------------- /src/common/utils/parseAccountIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './parseAccountIcon'; 2 | -------------------------------------------------------------------------------- /src/docs/whats_new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/docs/whats_new.md -------------------------------------------------------------------------------- /src/icons/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/icons/icon-128.png -------------------------------------------------------------------------------- /src/icons/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/icons/icon-16.png -------------------------------------------------------------------------------- /src/icons/icon-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/icons/icon-19.png -------------------------------------------------------------------------------- /src/icons/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/icons/icon-32.png -------------------------------------------------------------------------------- /src/icons/icon-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/icons/icon-38.png -------------------------------------------------------------------------------- /src/icons/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/icons/icon-48.png -------------------------------------------------------------------------------- /src/icons/icon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/icons/icon-96.png -------------------------------------------------------------------------------- /src/icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/icons/icon.svg -------------------------------------------------------------------------------- /src/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/index.hbs -------------------------------------------------------------------------------- /src/manifest.chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/manifest.chrome.json -------------------------------------------------------------------------------- /src/manifest.common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/manifest.common.json -------------------------------------------------------------------------------- /src/manifest.firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/manifest.firefox.json -------------------------------------------------------------------------------- /src/manifest.opera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/manifest.opera.json -------------------------------------------------------------------------------- /src/manifest.v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/manifest.v2.json -------------------------------------------------------------------------------- /src/manifest.v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/manifest.v3.json -------------------------------------------------------------------------------- /src/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/middleware/README.md -------------------------------------------------------------------------------- /src/middleware/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/middleware/main.ts -------------------------------------------------------------------------------- /src/middleware/message-brokers/AVMWebProviderMessageBroker/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AVMWebProviderMessageBroker'; 2 | -------------------------------------------------------------------------------- /src/middleware/message-brokers/ExternalConfigMessageBroker/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ExternalConfigMessageBroker'; 2 | -------------------------------------------------------------------------------- /src/middleware/message-brokers/ProviderMessageBroker/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProviderMessageBroker'; 2 | -------------------------------------------------------------------------------- /src/middleware/message-brokers/WebAuthnMessageBroker/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './WebAuthnMessageBroker'; 2 | -------------------------------------------------------------------------------- /src/middleware/utils/injectScript/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './injectScript'; 2 | -------------------------------------------------------------------------------- /src/provider/apps/background/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/apps/background/App.tsx -------------------------------------------------------------------------------- /src/provider/apps/background/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/apps/background/Root.tsx -------------------------------------------------------------------------------- /src/provider/apps/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/apps/background/index.ts -------------------------------------------------------------------------------- /src/provider/apps/main/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/apps/main/App.tsx -------------------------------------------------------------------------------- /src/provider/apps/main/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/apps/main/Root.tsx -------------------------------------------------------------------------------- /src/provider/apps/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/apps/main/index.ts -------------------------------------------------------------------------------- /src/provider/apps/main/types/ILoaderData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/apps/main/types/ILoaderData.ts -------------------------------------------------------------------------------- /src/provider/apps/main/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/apps/main/types/index.ts -------------------------------------------------------------------------------- /src/provider/apps/main/utils/createRouter/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './createRouter'; 2 | -------------------------------------------------------------------------------- /src/provider/apps/registration/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/apps/registration/App.tsx -------------------------------------------------------------------------------- /src/provider/apps/registration/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/apps/registration/Root.tsx -------------------------------------------------------------------------------- /src/provider/apps/registration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/apps/registration/index.ts -------------------------------------------------------------------------------- /src/provider/apps/registration/utils/createRouter/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './createRouter'; 2 | -------------------------------------------------------------------------------- /src/provider/components/PolisAccountBadge/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PolisAccountBadge'; 2 | -------------------------------------------------------------------------------- /src/provider/components/accounts/AccountAvatarWithBadges/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AccountAvatarWithBadges'; 2 | -------------------------------------------------------------------------------- /src/provider/components/accounts/AccountItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AccountItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/accounts/EditableAccountNameField/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EditableAccountNameField'; 2 | -------------------------------------------------------------------------------- /src/provider/components/accounts/GroupBadge/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GroupBadge'; 2 | -------------------------------------------------------------------------------- /src/provider/components/accounts/NewAccountItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NewAccountItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/accounts/RekeyedAccountBadge/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ReKeyedAccountBadge'; 2 | -------------------------------------------------------------------------------- /src/provider/components/accounts/WatchAccountBadge/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './WatchAccountBadge'; 2 | -------------------------------------------------------------------------------- /src/provider/components/assets/AssetAvatar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AssetAvatar'; 2 | -------------------------------------------------------------------------------- /src/provider/components/assets/AssetBadge/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AssetBadge'; 2 | -------------------------------------------------------------------------------- /src/provider/components/assets/AssetDisplay/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AssetDisplay'; 2 | -------------------------------------------------------------------------------- /src/provider/components/assets/AssetSelect/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AssetSelect'; 2 | -------------------------------------------------------------------------------- /src/provider/components/assets/AssetsTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AssetsTab'; 2 | -------------------------------------------------------------------------------- /src/provider/components/avm-names/AVMNameBadge/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AVMNameBadge'; 2 | -------------------------------------------------------------------------------- /src/provider/components/avm-names/AVMNamesTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AVMNamesTab'; 2 | -------------------------------------------------------------------------------- /src/provider/components/cryptography/COSEAlgorithmBadge/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './COSEAlgorithmBadge'; 2 | -------------------------------------------------------------------------------- /src/provider/components/generic/ActionItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ActionItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/generic/CopyButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CopyButton'; 2 | -------------------------------------------------------------------------------- /src/provider/components/generic/CopyIconButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CopyIconButton'; 2 | -------------------------------------------------------------------------------- /src/provider/components/generic/Divider/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Divider'; 2 | -------------------------------------------------------------------------------- /src/provider/components/generic/EditableText/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EditableText'; 2 | -------------------------------------------------------------------------------- /src/provider/components/generic/Link/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/components/generic/Link/Link.tsx -------------------------------------------------------------------------------- /src/provider/components/generic/Link/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Link'; 2 | -------------------------------------------------------------------------------- /src/provider/components/generic/Markdown/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Markdown'; 2 | -------------------------------------------------------------------------------- /src/provider/components/generic/OpenTabIconButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './OpenTabIconButton'; 2 | -------------------------------------------------------------------------------- /src/provider/components/generic/PillSwitch/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PillSwitch'; 2 | -------------------------------------------------------------------------------- /src/provider/components/generic/Select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/components/generic/Select/index.ts -------------------------------------------------------------------------------- /src/provider/components/generic/Steps/Steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/components/generic/Steps/Steps.tsx -------------------------------------------------------------------------------- /src/provider/components/generic/Steps/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Steps'; 2 | -------------------------------------------------------------------------------- /src/provider/components/generic/TabLoadingItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TabLoadingItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/generic/Toast/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/components/generic/Toast/Toast.tsx -------------------------------------------------------------------------------- /src/provider/components/generic/Toast/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Toast'; 2 | -------------------------------------------------------------------------------- /src/provider/components/icons/AlgorandAssetIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AlgorandAssetIcon'; 2 | -------------------------------------------------------------------------------- /src/provider/components/icons/AssetIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AssetIcon'; 2 | -------------------------------------------------------------------------------- /src/provider/components/icons/CreateNewAccountIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CreateNewAccountIcon'; 2 | -------------------------------------------------------------------------------- /src/provider/components/icons/DeflateBallonIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DeflateBalloonIcon'; 2 | -------------------------------------------------------------------------------- /src/provider/components/icons/ImportAccountIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ImportAccountIcon'; 2 | -------------------------------------------------------------------------------- /src/provider/components/icons/ImportRekeyAccountIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ImportRekeyAccountIcon'; 2 | -------------------------------------------------------------------------------- /src/provider/components/icons/InformationIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './InformationIcon'; 2 | -------------------------------------------------------------------------------- /src/provider/components/icons/KibisisIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './KibisisIcon'; 2 | -------------------------------------------------------------------------------- /src/provider/components/icons/SomethingWentWrongIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SomethingWentWrongIcon'; 2 | -------------------------------------------------------------------------------- /src/provider/components/icons/VoiAssetIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './VoiAssetIcon'; 2 | -------------------------------------------------------------------------------- /src/provider/components/icons/WarningIcon/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './WarningIcon'; 2 | -------------------------------------------------------------------------------- /src/provider/components/information/InfoIconTooltip/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './InfoIconTooltip'; 2 | -------------------------------------------------------------------------------- /src/provider/components/information/MoreInformationAccordion/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './MoreInformationAccordion'; 2 | -------------------------------------------------------------------------------- /src/provider/components/information/Warning/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Warning'; 2 | -------------------------------------------------------------------------------- /src/provider/components/modals/ModalSkeletonItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ModalSkeletonItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/networks/NetworkBadge/utils/parseFontSize/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './parseFontSize'; 2 | -------------------------------------------------------------------------------- /src/provider/components/networks/NetworkBadge/utils/parseIconSize/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './parseIconSize'; 2 | -------------------------------------------------------------------------------- /src/provider/components/networks/NetworkBadge/utils/parsePadding/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './parsePadding'; 2 | -------------------------------------------------------------------------------- /src/provider/components/networks/NetworkSelect/utils/containsOnlyStableNetworks/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './containsOnlyStableNetworks'; 2 | -------------------------------------------------------------------------------- /src/provider/components/nfts/NFTAvatar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NFTAvatar'; 2 | -------------------------------------------------------------------------------- /src/provider/components/nfts/NFTsTab/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/components/nfts/NFTsTab/Item.tsx -------------------------------------------------------------------------------- /src/provider/components/nfts/NFTsTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NFTsTab'; 2 | -------------------------------------------------------------------------------- /src/provider/components/nodes/CustomNodeItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CustomNodeItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/pages/PageHeader/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PageHeader'; 2 | -------------------------------------------------------------------------------- /src/provider/components/pages/PageItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/components/pages/PageItem/index.ts -------------------------------------------------------------------------------- /src/provider/components/passkeys/PasskeyCapabilities/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PasskeyCapabilities'; 2 | -------------------------------------------------------------------------------- /src/provider/components/passkeys/PasskeysTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PasskeysTab'; 2 | -------------------------------------------------------------------------------- /src/provider/components/passwords/StrengthMeter/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './StrengthMeter'; 2 | -------------------------------------------------------------------------------- /src/provider/components/qr-codes/ScanQRCodeViaCameraModalContent/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ScanQRCodeViaCameraModalContent'; 2 | -------------------------------------------------------------------------------- /src/provider/components/qr-codes/ScanQRCodeViaScreenCaptureModalContent/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ScanQRCodeViaScreenCaptureModalContent'; 2 | -------------------------------------------------------------------------------- /src/provider/components/qr-codes/ScanQRCodeViaTabModalContent/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ScanQRCodeViaTabModalContent'; 2 | -------------------------------------------------------------------------------- /src/provider/components/qr-codes/UnknownURIModalContent/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './UnknownURIModalContent'; 2 | -------------------------------------------------------------------------------- /src/provider/components/sessions/SessionAvatar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SessionAvatar'; 2 | -------------------------------------------------------------------------------- /src/provider/components/settings/SettingsButtonItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SettingsButtonItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/settings/SettingsExternalLinkItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SettingsExternalLinkItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/settings/SettingsLinkItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SettingsLinkItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/settings/SettingsSubHeading/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SettingsSubHeading'; 2 | -------------------------------------------------------------------------------- /src/provider/components/settings/SettingsSwitchItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SettingsSwitchItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/settings/SettingsTextItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SettingsTextItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/sidebar/SideBar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SideBar'; 2 | -------------------------------------------------------------------------------- /src/provider/components/sidebar/SideBarActionItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SideBarActionItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/sidebar/SideBarGroupItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SideBarGroupItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/sidebar/SideBarSkeletonItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SideBarSkeletonItem'; 2 | -------------------------------------------------------------------------------- /src/provider/components/staking/StakingTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './StakingTab'; 2 | -------------------------------------------------------------------------------- /src/provider/components/transactions/ActivityTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ActivityTab'; 2 | -------------------------------------------------------------------------------- /src/provider/components/transactions/InnerTransactionAccordion/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './InnerTransactionAccordion'; 2 | -------------------------------------------------------------------------------- /src/provider/components/vip-0300/ARC0300AccountImportModalContent/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ARC0300AccountImportModalContent'; 2 | -------------------------------------------------------------------------------- /src/provider/components/vip-0300/ARC0300AssetAddModalContent/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ARC0300AssetAddModalContent'; 2 | -------------------------------------------------------------------------------- /src/provider/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/config/index.ts -------------------------------------------------------------------------------- /src/provider/config/networks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/config/networks.ts -------------------------------------------------------------------------------- /src/provider/constants/ARC0026.ts: -------------------------------------------------------------------------------- 1 | export const ARC_0026_SCHEME: string = 'algorand'; 2 | -------------------------------------------------------------------------------- /src/provider/constants/ARC0300.ts: -------------------------------------------------------------------------------- 1 | export const ARC_0300_SCHEME: string = 'avm'; 2 | -------------------------------------------------------------------------------- /src/provider/constants/Alarms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/constants/Alarms.ts -------------------------------------------------------------------------------- /src/provider/constants/Dimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/constants/Dimensions.ts -------------------------------------------------------------------------------- /src/provider/constants/Durations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/constants/Durations.ts -------------------------------------------------------------------------------- /src/provider/constants/Encryption.ts: -------------------------------------------------------------------------------- 1 | export const SALT_BYTES_SIZE: number = 64; 2 | -------------------------------------------------------------------------------- /src/provider/constants/Keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/constants/Keys.ts -------------------------------------------------------------------------------- /src/provider/constants/Limits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/constants/Limits.ts -------------------------------------------------------------------------------- /src/provider/constants/Links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/constants/Links.ts -------------------------------------------------------------------------------- /src/provider/constants/Network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/constants/Network.ts -------------------------------------------------------------------------------- /src/provider/constants/Routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/constants/Routes.ts -------------------------------------------------------------------------------- /src/provider/constants/URIs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/constants/URIs.ts -------------------------------------------------------------------------------- /src/provider/constants/URLs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/constants/URLs.ts -------------------------------------------------------------------------------- /src/provider/constants/Validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/constants/Validation.ts -------------------------------------------------------------------------------- /src/provider/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/constants/index.ts -------------------------------------------------------------------------------- /src/provider/containers/MainLayout/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './MainLayout'; 2 | -------------------------------------------------------------------------------- /src/provider/containers/ThemeProvider/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ThemeProvider'; 2 | -------------------------------------------------------------------------------- /src/provider/contracts/ARC0072Contract/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/contracts/ARC0072Contract/abi.json -------------------------------------------------------------------------------- /src/provider/contracts/ARC0072Contract/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/contracts/ARC0072Contract/index.ts -------------------------------------------------------------------------------- /src/provider/contracts/ARC0200Contract/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/contracts/ARC0200Contract/abi.json -------------------------------------------------------------------------------- /src/provider/contracts/ARC0200Contract/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/contracts/ARC0200Contract/index.ts -------------------------------------------------------------------------------- /src/provider/contracts/BaseContract/constants/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Simulate'; 2 | -------------------------------------------------------------------------------- /src/provider/contracts/BaseContract/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/contracts/BaseContract/index.ts -------------------------------------------------------------------------------- /src/provider/cryptography/ES256KeyPair/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ES256KeyPair'; 2 | -------------------------------------------------------------------------------- /src/provider/cryptography/Ed21559KeyPair/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Ed21559KeyPair'; 2 | -------------------------------------------------------------------------------- /src/provider/decorators/EnVoiClient/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EnVoiClient'; 2 | -------------------------------------------------------------------------------- /src/provider/enums/ARC0072AssetsThunkEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/ARC0072AssetsThunkEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/ARC0200AssetsThunkEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/ARC0200AssetsThunkEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/ARC0300AssetTypeEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/ARC0300AssetTypeEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/ARC0300AuthorityEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/ARC0300AuthorityEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/ARC0300PathEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/ARC0300PathEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/ARC0300QueryEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/ARC0300QueryEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/AVMNameTypeEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/AVMNameTypeEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/AccountTabEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/AccountTabEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/AddAssetThunkEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/AddAssetThunkEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/AppTypeEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/AppTypeEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/AssetTypeEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/AssetTypeEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/DelimiterEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/DelimiterEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/EncryptionMethodEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/EncryptionMethodEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/EventTypeEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/EventTypeEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/EventsThunkEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/EventsThunkEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/NetworkTypeEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/NetworkTypeEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/ScanModeEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/ScanModeEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/StandardAssetsThunkEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/StandardAssetsThunkEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/StoreNameEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/StoreNameEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/TransactionTypeEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/TransactionTypeEnum.ts -------------------------------------------------------------------------------- /src/provider/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/enums/index.ts -------------------------------------------------------------------------------- /src/provider/events/AVMWebProviderRequestEvent/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AVMWebProviderRequestEvent'; 2 | -------------------------------------------------------------------------------- /src/provider/events/WebAuthnRegisterRequestEvent/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './WebAuthnRegisterRequestEvent'; 2 | -------------------------------------------------------------------------------- /src/provider/features/accounts/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/accounts/enums/index.ts -------------------------------------------------------------------------------- /src/provider/features/accounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/accounts/index.ts -------------------------------------------------------------------------------- /src/provider/features/accounts/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/accounts/slice.ts -------------------------------------------------------------------------------- /src/provider/features/accounts/thunks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/accounts/thunks/index.ts -------------------------------------------------------------------------------- /src/provider/features/accounts/types/IState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/accounts/types/IState.ts -------------------------------------------------------------------------------- /src/provider/features/accounts/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/accounts/types/index.ts -------------------------------------------------------------------------------- /src/provider/features/accounts/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/accounts/utils/index.ts -------------------------------------------------------------------------------- /src/provider/features/accounts/utils/isAccountInformationUpdating/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isAccountInformationUpdating'; 2 | -------------------------------------------------------------------------------- /src/provider/features/accounts/utils/isAccountTransactionsUpdating/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isAccountTransactionsUpdating'; 2 | -------------------------------------------------------------------------------- /src/provider/features/add-assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/add-assets/index.ts -------------------------------------------------------------------------------- /src/provider/features/add-assets/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/add-assets/slice.ts -------------------------------------------------------------------------------- /src/provider/features/add-assets/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/add-assets/types/index.ts -------------------------------------------------------------------------------- /src/provider/features/add-assets/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/add-assets/utils/index.ts -------------------------------------------------------------------------------- /src/provider/features/arc0072-assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/arc0072-assets/index.ts -------------------------------------------------------------------------------- /src/provider/features/arc0072-assets/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/arc0072-assets/slice.ts -------------------------------------------------------------------------------- /src/provider/features/arc0200-assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/arc0200-assets/index.ts -------------------------------------------------------------------------------- /src/provider/features/arc0200-assets/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/arc0200-assets/slice.ts -------------------------------------------------------------------------------- /src/provider/features/credential-lock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/credential-lock/index.ts -------------------------------------------------------------------------------- /src/provider/features/credential-lock/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/credential-lock/slice.ts -------------------------------------------------------------------------------- /src/provider/features/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/events/index.ts -------------------------------------------------------------------------------- /src/provider/features/events/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/events/slice.ts -------------------------------------------------------------------------------- /src/provider/features/events/thunks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/events/thunks/index.ts -------------------------------------------------------------------------------- /src/provider/features/events/types/IState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/events/types/IState.ts -------------------------------------------------------------------------------- /src/provider/features/events/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/events/types/index.ts -------------------------------------------------------------------------------- /src/provider/features/events/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/events/utils/index.ts -------------------------------------------------------------------------------- /src/provider/features/layout/enums/ThunkEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/layout/enums/ThunkEnum.ts -------------------------------------------------------------------------------- /src/provider/features/layout/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/layout/enums/index.ts -------------------------------------------------------------------------------- /src/provider/features/layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/layout/index.ts -------------------------------------------------------------------------------- /src/provider/features/layout/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/layout/slice.ts -------------------------------------------------------------------------------- /src/provider/features/layout/thunks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/layout/thunks/index.ts -------------------------------------------------------------------------------- /src/provider/features/layout/types/IState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/layout/types/IState.ts -------------------------------------------------------------------------------- /src/provider/features/layout/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/layout/types/index.ts -------------------------------------------------------------------------------- /src/provider/features/layout/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/layout/utils/index.ts -------------------------------------------------------------------------------- /src/provider/features/manage-groups-modal/utils/getInitialState/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './getInitialState'; 2 | -------------------------------------------------------------------------------- /src/provider/features/messages/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/messages/enums/index.ts -------------------------------------------------------------------------------- /src/provider/features/messages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/messages/index.ts -------------------------------------------------------------------------------- /src/provider/features/messages/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/messages/slice.ts -------------------------------------------------------------------------------- /src/provider/features/messages/thunks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/messages/thunks/index.ts -------------------------------------------------------------------------------- /src/provider/features/messages/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/messages/types/index.ts -------------------------------------------------------------------------------- /src/provider/features/messages/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/messages/utils/index.ts -------------------------------------------------------------------------------- /src/provider/features/move-group-modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/move-group-modal/index.ts -------------------------------------------------------------------------------- /src/provider/features/move-group-modal/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/move-group-modal/slice.ts -------------------------------------------------------------------------------- /src/provider/features/move-group-modal/utils/getInitialState/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './getInitialState'; 2 | -------------------------------------------------------------------------------- /src/provider/features/networks/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/networks/enums/index.ts -------------------------------------------------------------------------------- /src/provider/features/networks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/networks/index.ts -------------------------------------------------------------------------------- /src/provider/features/networks/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/networks/slice.ts -------------------------------------------------------------------------------- /src/provider/features/networks/thunks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/networks/thunks/index.ts -------------------------------------------------------------------------------- /src/provider/features/networks/types/IState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/networks/types/IState.ts -------------------------------------------------------------------------------- /src/provider/features/networks/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/networks/types/index.ts -------------------------------------------------------------------------------- /src/provider/features/networks/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/networks/utils/index.ts -------------------------------------------------------------------------------- /src/provider/features/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/notifications/index.ts -------------------------------------------------------------------------------- /src/provider/features/notifications/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/notifications/slice.ts -------------------------------------------------------------------------------- /src/provider/features/passkeys/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/passkeys/enums/index.ts -------------------------------------------------------------------------------- /src/provider/features/passkeys/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/passkeys/index.ts -------------------------------------------------------------------------------- /src/provider/features/passkeys/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/passkeys/slice.ts -------------------------------------------------------------------------------- /src/provider/features/passkeys/thunks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/passkeys/thunks/index.ts -------------------------------------------------------------------------------- /src/provider/features/passkeys/types/IState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/passkeys/types/IState.ts -------------------------------------------------------------------------------- /src/provider/features/passkeys/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/passkeys/types/index.ts -------------------------------------------------------------------------------- /src/provider/features/passkeys/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/passkeys/utils/index.ts -------------------------------------------------------------------------------- /src/provider/features/re-key-account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/re-key-account/index.ts -------------------------------------------------------------------------------- /src/provider/features/re-key-account/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/re-key-account/slice.ts -------------------------------------------------------------------------------- /src/provider/features/registration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/registration/index.ts -------------------------------------------------------------------------------- /src/provider/features/registration/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/registration/slice.ts -------------------------------------------------------------------------------- /src/provider/features/remove-assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/remove-assets/index.ts -------------------------------------------------------------------------------- /src/provider/features/remove-assets/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/remove-assets/slice.ts -------------------------------------------------------------------------------- /src/provider/features/send-assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/send-assets/index.ts -------------------------------------------------------------------------------- /src/provider/features/send-assets/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/send-assets/slice.ts -------------------------------------------------------------------------------- /src/provider/features/sessions/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/sessions/enums/index.ts -------------------------------------------------------------------------------- /src/provider/features/sessions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/sessions/index.ts -------------------------------------------------------------------------------- /src/provider/features/sessions/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/sessions/slice.ts -------------------------------------------------------------------------------- /src/provider/features/sessions/thunks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/sessions/thunks/index.ts -------------------------------------------------------------------------------- /src/provider/features/sessions/types/IState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/sessions/types/IState.ts -------------------------------------------------------------------------------- /src/provider/features/sessions/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/sessions/types/index.ts -------------------------------------------------------------------------------- /src/provider/features/sessions/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/sessions/utils/index.ts -------------------------------------------------------------------------------- /src/provider/features/settings/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/settings/enums/index.ts -------------------------------------------------------------------------------- /src/provider/features/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/settings/index.ts -------------------------------------------------------------------------------- /src/provider/features/settings/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/settings/slice.ts -------------------------------------------------------------------------------- /src/provider/features/settings/thunks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/settings/thunks/index.ts -------------------------------------------------------------------------------- /src/provider/features/settings/types/IState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/settings/types/IState.ts -------------------------------------------------------------------------------- /src/provider/features/settings/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/settings/types/index.ts -------------------------------------------------------------------------------- /src/provider/features/settings/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/settings/utils/index.ts -------------------------------------------------------------------------------- /src/provider/features/standard-assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/standard-assets/index.ts -------------------------------------------------------------------------------- /src/provider/features/standard-assets/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/standard-assets/slice.ts -------------------------------------------------------------------------------- /src/provider/features/system/enums/ThunkEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/system/enums/ThunkEnum.ts -------------------------------------------------------------------------------- /src/provider/features/system/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/system/enums/index.ts -------------------------------------------------------------------------------- /src/provider/features/system/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/system/index.ts -------------------------------------------------------------------------------- /src/provider/features/system/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/system/slice.ts -------------------------------------------------------------------------------- /src/provider/features/system/thunks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/system/thunks/index.ts -------------------------------------------------------------------------------- /src/provider/features/system/types/IState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/system/types/IState.ts -------------------------------------------------------------------------------- /src/provider/features/system/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/system/types/index.ts -------------------------------------------------------------------------------- /src/provider/features/system/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/system/utils/index.ts -------------------------------------------------------------------------------- /src/provider/features/webauthn/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/webauthn/enums/index.ts -------------------------------------------------------------------------------- /src/provider/features/webauthn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/webauthn/index.ts -------------------------------------------------------------------------------- /src/provider/features/webauthn/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/webauthn/slice.ts -------------------------------------------------------------------------------- /src/provider/features/webauthn/thunks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/webauthn/thunks/index.ts -------------------------------------------------------------------------------- /src/provider/features/webauthn/types/IState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/webauthn/types/IState.ts -------------------------------------------------------------------------------- /src/provider/features/webauthn/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/features/webauthn/types/index.ts -------------------------------------------------------------------------------- /src/provider/features/webauthn/utils/getInitialState/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './getInitialState'; 2 | -------------------------------------------------------------------------------- /src/provider/fonts/Nunito/Nunito-Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/fonts/Nunito/Nunito-Bold.svg -------------------------------------------------------------------------------- /src/provider/fonts/Nunito/Nunito-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/fonts/Nunito/Nunito-Bold.ttf -------------------------------------------------------------------------------- /src/provider/fonts/Nunito/Nunito-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/fonts/Nunito/Nunito-Bold.woff -------------------------------------------------------------------------------- /src/provider/fonts/Nunito/Nunito-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/fonts/Nunito/Nunito-Bold.woff2 -------------------------------------------------------------------------------- /src/provider/fonts/Nunito/Nunito-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/fonts/Nunito/Nunito-Regular.svg -------------------------------------------------------------------------------- /src/provider/fonts/Nunito/Nunito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/fonts/Nunito/Nunito-Regular.ttf -------------------------------------------------------------------------------- /src/provider/fonts/Nunito/Nunito-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/fonts/Nunito/Nunito-Regular.woff -------------------------------------------------------------------------------- /src/provider/fonts/Nunito/Nunito-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/fonts/Nunito/Nunito-Regular.woff2 -------------------------------------------------------------------------------- /src/provider/hooks/useARC0200AssetById/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/hooks/useARC0200AssetById/index.ts -------------------------------------------------------------------------------- /src/provider/hooks/useAccountInformation/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useAccountInformation'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useAddressInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/hooks/useAddressInput/index.ts -------------------------------------------------------------------------------- /src/provider/hooks/useAmountInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/hooks/useAmountInput/index.ts -------------------------------------------------------------------------------- /src/provider/hooks/useBorderColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useBorderColor'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useButtonHoverBackgroundColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useButtonHoverBackgroundColor'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useCameraStream/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useCameraStream'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useCaptureQRCode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/hooks/useCaptureQRCode/index.ts -------------------------------------------------------------------------------- /src/provider/hooks/useCaptureQRCode/utils/captureQRCodeFromStream/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './captureQRCodeFromStream'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useCaptureQRCode/utils/captureQRCodeFromTab/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './captureQRCodeFromTab'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useChangePassword/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useChangePassword'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useColorModeValue/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useColorModeValue'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useDefaultTextColor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/hooks/useDefaultTextColor/index.ts -------------------------------------------------------------------------------- /src/provider/hooks/useGenericInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/hooks/useGenericInput/index.ts -------------------------------------------------------------------------------- /src/provider/hooks/useItemBorderColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useItemBorderColor'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useNewPasswordInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/hooks/useNewPasswordInput/index.ts -------------------------------------------------------------------------------- /src/provider/hooks/useNewPasswordInput/utils/calculateScore/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './calculateScore'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useNotifications/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useNotifications'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useOnAppStartup/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useOnAppStartup'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useOnDebugLogging/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useOnDebugLogging'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useOnMainAppMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useOnMainAppMessage'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useOnNewAssets/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useOnNewAssets'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/usePrevious/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './usePrevious'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/usePrevious/usePrevious.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/hooks/usePrevious/usePrevious.ts -------------------------------------------------------------------------------- /src/provider/hooks/usePrimaryButtonHoverColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './usePrimaryButtonHoverColor'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/usePrimaryButtonTextColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './usePrimaryButtonTextColor'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/usePrimaryColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './usePrimaryColor'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/usePrimaryColorScheme/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './usePrimaryColorScheme'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useScreenCaptureStream/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useScreenCaptureStream'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useSubTextColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useSubTextColor'; 2 | -------------------------------------------------------------------------------- /src/provider/hooks/useTextBackgroundColor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useTextBackgroundColor'; 2 | -------------------------------------------------------------------------------- /src/provider/icons/BsFolderMove/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BsFolderMove'; 2 | -------------------------------------------------------------------------------- /src/provider/icons/KbNoPasskey/KbNoPasskey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/icons/KbNoPasskey/KbNoPasskey.tsx -------------------------------------------------------------------------------- /src/provider/icons/KbNoPasskey/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './KbNoPasskey'; 2 | -------------------------------------------------------------------------------- /src/provider/icons/KbPasskey/KbPasskey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/icons/KbPasskey/KbPasskey.tsx -------------------------------------------------------------------------------- /src/provider/icons/KbPasskey/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './KbPasskey'; 2 | -------------------------------------------------------------------------------- /src/provider/icons/KbSignIn/KbSignIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/icons/KbSignIn/KbSignIn.tsx -------------------------------------------------------------------------------- /src/provider/icons/KbSignIn/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './KbSignIn'; 2 | -------------------------------------------------------------------------------- /src/provider/images/placeholder_nft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/images/placeholder_nft.png -------------------------------------------------------------------------------- /src/provider/images/placeholder_qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/images/placeholder_qr_code.png -------------------------------------------------------------------------------- /src/provider/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/main.ts -------------------------------------------------------------------------------- /src/provider/managers/AppWindowManager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/managers/AppWindowManager/index.ts -------------------------------------------------------------------------------- /src/provider/managers/PasskeyManager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/managers/PasskeyManager/index.ts -------------------------------------------------------------------------------- /src/provider/managers/PasswordManager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/managers/PasswordManager/index.ts -------------------------------------------------------------------------------- /src/provider/managers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/managers/README.md -------------------------------------------------------------------------------- /src/provider/message-handlers/AVMWebProviderMessageHandler/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AVMWebProviderMessageHandler'; 2 | -------------------------------------------------------------------------------- /src/provider/message-handlers/BaseMessageHandler/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BaseMessageHandler'; 2 | -------------------------------------------------------------------------------- /src/provider/message-handlers/ExternalConfigMessageHandler/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ExternalConfigMessageHandler'; 2 | -------------------------------------------------------------------------------- /src/provider/message-handlers/ProviderMessageHandler/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProviderMessageHandler'; 2 | -------------------------------------------------------------------------------- /src/provider/message-handlers/WebAuthnMessageHandler/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './WebAuthnMessageHandler'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/AddAssetsModal/hooks/useIsNewSelectedAsset/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useIsNewSelectedAsset'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/AddAssetsModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/modals/AddAssetsModal/index.ts -------------------------------------------------------------------------------- /src/provider/modals/AddCustomNodeModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AddCustomNodeModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/AddPasskeyModal/hooks/useAddPasskey/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useAddPasskey'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/AddPasskeyModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AddPasskeyModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/ChangePasswordLoadingModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ChangePasswordLoadingModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/ConfirmModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ConfirmModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/CredentialLockModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CredentialLockModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/EditAccountModal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/modals/EditAccountModal/index.ts -------------------------------------------------------------------------------- /src/provider/modals/EnableModal/EnableModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/modals/EnableModal/EnableModal.tsx -------------------------------------------------------------------------------- /src/provider/modals/EnableModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EnableModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/ManageGroupsModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ManageGroupsModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/ManageSessionModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ManageSessionModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/MoveGroupModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './MoveGroupModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/ReKeyAccountModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ReKeyAccountModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/RegistrationImportAccountViaQRCodeModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RegistrationImportAccountViaQRCodeModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/RemoveAssetsModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RemoveAssetsModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/RemovePasskeyModal/hooks/useRemovePasskey/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './useRemovePasskey'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/RemovePasskeyModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RemovePasskeyModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/ScanQRCodeModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ScanQRCodeModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/SendAssetModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SendAssetModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/ShareAddressModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ShareAddressModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/SignMessageModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SignMessageModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/SignTransactionsModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SignTransactionsModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/StakingAppModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './StakingAppModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/ViewCustomNodeModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ViewCustomNodeModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/WebAuthnRegisterModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './WebAuthnRegisterModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/WhatsNewModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './WhatsNewModal'; 2 | -------------------------------------------------------------------------------- /src/provider/modals/avm-names/AVMNameModal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AVMNameModal'; 2 | -------------------------------------------------------------------------------- /src/provider/models/AlloBlockExplorer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AlloBlockExplorer'; 2 | -------------------------------------------------------------------------------- /src/provider/models/BaseARC0072Indexer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/models/BaseARC0072Indexer/index.ts -------------------------------------------------------------------------------- /src/provider/models/BaseBlockExplorer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/models/BaseBlockExplorer/index.ts -------------------------------------------------------------------------------- /src/provider/models/BaseNFTExplorer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/models/BaseNFTExplorer/index.ts -------------------------------------------------------------------------------- /src/provider/models/BaseSCSIndexer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/models/BaseSCSIndexer/index.ts -------------------------------------------------------------------------------- /src/provider/models/NFTNavigatorARC0072Indexer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NFTNavigatorARC0072Indexer'; 2 | -------------------------------------------------------------------------------- /src/provider/models/NFTNavigatorNFTExplorer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NFTNavigatorNFTExplorer'; 2 | -------------------------------------------------------------------------------- /src/provider/models/NautilusARC0072Indexer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NautilusARC0072Indexer'; 2 | -------------------------------------------------------------------------------- /src/provider/models/NautilusSCSIndexer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NautilusSCSIndexer'; 2 | -------------------------------------------------------------------------------- /src/provider/models/NetworkClient/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/models/NetworkClient/index.ts -------------------------------------------------------------------------------- /src/provider/models/PeraBlockExplorer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PeraBlockExplorer'; 2 | -------------------------------------------------------------------------------- /src/provider/models/PublicKeyCredentialFactory/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PublicKeyCredentialFactory'; 2 | -------------------------------------------------------------------------------- /src/provider/models/VoiBlockExplorer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './VoiBlockExplorer'; 2 | -------------------------------------------------------------------------------- /src/provider/models/VoiObserverBlockExplorer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './VoiObserverBlockExplorer'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/AccountPage/AccountPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/pages/AccountPage/AccountPage.tsx -------------------------------------------------------------------------------- /src/provider/pages/AccountPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AccountPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/AccountPasskeyPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AccountPasskeyPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/AddAccountTypePage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AddAccountTypePage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/AddWatchAccountPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/pages/AddWatchAccountPage/index.ts -------------------------------------------------------------------------------- /src/provider/pages/AssetPage/AssetPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/pages/AssetPage/AssetPage.tsx -------------------------------------------------------------------------------- /src/provider/pages/AssetPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AssetPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/ChangePasswordPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ChangePasswordPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/CreatePasswordPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CreatePasswordPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/CustomNodesPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CustomNodesPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/ExportAccountPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/pages/ExportAccountPage/index.ts -------------------------------------------------------------------------------- /src/provider/pages/GetStartedPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GetStartedPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/NFTPage/NFTPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/pages/NFTPage/NFTPage.tsx -------------------------------------------------------------------------------- /src/provider/pages/NFTPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NFTPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/PasskeyPage/PasskeyPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/pages/PasskeyPage/PasskeyPage.tsx -------------------------------------------------------------------------------- /src/provider/pages/PasskeyPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PasskeyPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/SkeletonAssetPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SkeletonAssetPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/SplashPage/SplashPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/pages/SplashPage/SplashPage.tsx -------------------------------------------------------------------------------- /src/provider/pages/SplashPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SplashPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/TransactionPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TransactionPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/ViewSeedPhrasePage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/pages/ViewSeedPhrasePage/index.ts -------------------------------------------------------------------------------- /src/provider/pages/settings/AboutSettingsPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AboutSettingsPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/settings/AdvancedSettingsPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AdvancedSettingsPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/settings/AppearanceSettingsPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AppearanceSettingsPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/settings/GeneralSettingsPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GeneralSettingsPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/settings/PrivacySettingsPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PrivacySettingsPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/settings/SecuritySettingsPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SecuritySettingsPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/settings/SessionsSettingsPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SessionsSettingsPage'; 2 | -------------------------------------------------------------------------------- /src/provider/pages/settings/SettingsIndexPage/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SettingsIndexPage'; 2 | -------------------------------------------------------------------------------- /src/provider/repositories/ARC0072AssetRepository/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ARC0072AssetRepository'; 2 | -------------------------------------------------------------------------------- /src/provider/repositories/ARC0200AssetRepository/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ARC0200AssetRepository'; 2 | -------------------------------------------------------------------------------- /src/provider/repositories/AccountGroupRepository/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AccountGroupRepository'; 2 | -------------------------------------------------------------------------------- /src/provider/repositories/ActiveAccountRepository/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ActiveAccountRepository'; 2 | -------------------------------------------------------------------------------- /src/provider/repositories/BaseRepository/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BaseRepository'; 2 | -------------------------------------------------------------------------------- /src/provider/repositories/EventQueueRepository/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EventQueueRepository'; 2 | -------------------------------------------------------------------------------- /src/provider/repositories/PasskeyCredentialRepository/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PasskeyCredentialRepository'; 2 | -------------------------------------------------------------------------------- /src/provider/repositories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/repositories/README.md -------------------------------------------------------------------------------- /src/provider/repositories/SessionRepository/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SessionRepository'; 2 | -------------------------------------------------------------------------------- /src/provider/repositories/SettingsRepository/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SettingsRepository'; 2 | -------------------------------------------------------------------------------- /src/provider/repositories/StandardAssetRepository/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './StandardAssetRepository'; 2 | -------------------------------------------------------------------------------- /src/provider/repositories/SystemInfoRepository/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SystemInfoRepository'; 2 | -------------------------------------------------------------------------------- /src/provider/routers/AccountRouter/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AccountRouter'; 2 | -------------------------------------------------------------------------------- /src/provider/routers/AddAccountMainRouter/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AddAccountMainRouter'; 2 | -------------------------------------------------------------------------------- /src/provider/routers/AddAccountRegistrationRouter/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AddAccountRegistrationRouter'; 2 | -------------------------------------------------------------------------------- /src/provider/routers/settings/AdvancedSettingsRouter/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AdvancedSettingsRouter'; 2 | -------------------------------------------------------------------------------- /src/provider/routers/settings/SecuritySettingsRouter/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SecuritySettingsRouter'; 2 | -------------------------------------------------------------------------------- /src/provider/routers/settings/SettingsRouter/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SettingsRouter'; 2 | -------------------------------------------------------------------------------- /src/provider/selectors/accounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/accounts/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/add-assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/add-assets/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/events/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/layout/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/misc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/misc/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/networks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/networks/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/notifications/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/passkeys/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/passkeys/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/registration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/registration/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/remove-assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/remove-assets/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/send-assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/send-assets/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/sessions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/sessions/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/settings/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/system/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/system/index.ts -------------------------------------------------------------------------------- /src/provider/selectors/webauthn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/selectors/webauthn/index.ts -------------------------------------------------------------------------------- /src/provider/services/CredentialLockService/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CredentialLockService'; 2 | -------------------------------------------------------------------------------- /src/provider/services/HeartbeatService/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './HeartbeatService'; 2 | -------------------------------------------------------------------------------- /src/provider/services/ProviderActionListener/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProviderActionListener'; 2 | -------------------------------------------------------------------------------- /src/provider/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/styles/fonts.css -------------------------------------------------------------------------------- /src/provider/translations/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/translations/en.ts -------------------------------------------------------------------------------- /src/provider/translations/index.ts: -------------------------------------------------------------------------------- 1 | export { default as en } from './en'; 2 | -------------------------------------------------------------------------------- /src/provider/types/IDecodedJwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/IDecodedJwt.ts -------------------------------------------------------------------------------- /src/provider/types/IDecodedJwtHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/IDecodedJwtHeader.ts -------------------------------------------------------------------------------- /src/provider/types/IDecodedJwtPayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/IDecodedJwtPayload.ts -------------------------------------------------------------------------------- /src/provider/types/ITinyManAssetResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/ITinyManAssetResponse.ts -------------------------------------------------------------------------------- /src/provider/types/IVestigeFiAssetResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/IVestigeFiAssetResponse.ts -------------------------------------------------------------------------------- /src/provider/types/accounts/IAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/accounts/IAccount.ts -------------------------------------------------------------------------------- /src/provider/types/accounts/IAccountEnVoi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/accounts/IAccountEnVoi.ts -------------------------------------------------------------------------------- /src/provider/types/accounts/IAccountGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/accounts/IAccountGroup.ts -------------------------------------------------------------------------------- /src/provider/types/accounts/INewAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/accounts/INewAccount.ts -------------------------------------------------------------------------------- /src/provider/types/accounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/accounts/index.ts -------------------------------------------------------------------------------- /src/provider/types/arc-0072/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/arc-0072/index.ts -------------------------------------------------------------------------------- /src/provider/types/arc-0200/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/arc-0200/index.ts -------------------------------------------------------------------------------- /src/provider/types/arc-0300/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/arc-0300/index.ts -------------------------------------------------------------------------------- /src/provider/types/asset-holdings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/asset-holdings/index.ts -------------------------------------------------------------------------------- /src/provider/types/assets/IARC0072Asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/assets/IARC0072Asset.ts -------------------------------------------------------------------------------- /src/provider/types/assets/IARC0200Asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/assets/IARC0200Asset.ts -------------------------------------------------------------------------------- /src/provider/types/assets/IAssetTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/assets/IAssetTypes.ts -------------------------------------------------------------------------------- /src/provider/types/assets/IBaseAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/assets/IBaseAsset.ts -------------------------------------------------------------------------------- /src/provider/types/assets/INativeCurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/assets/INativeCurrency.ts -------------------------------------------------------------------------------- /src/provider/types/assets/IStandardAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/assets/IStandardAsset.ts -------------------------------------------------------------------------------- /src/provider/types/assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/assets/index.ts -------------------------------------------------------------------------------- /src/provider/types/authentication/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/authentication/index.ts -------------------------------------------------------------------------------- /src/provider/types/avm-names/IEnVoiHolding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm-names/IEnVoiHolding.ts -------------------------------------------------------------------------------- /src/provider/types/avm-names/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm-names/index.ts -------------------------------------------------------------------------------- /src/provider/types/avm/IAVMApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm/IAVMApplication.ts -------------------------------------------------------------------------------- /src/provider/types/avm/IAVMAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm/IAVMAsset.ts -------------------------------------------------------------------------------- /src/provider/types/avm/IAVMAssetHolding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm/IAVMAssetHolding.ts -------------------------------------------------------------------------------- /src/provider/types/avm/IAVMAssetParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm/IAVMAssetParams.ts -------------------------------------------------------------------------------- /src/provider/types/avm/IAVMBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm/IAVMBlock.ts -------------------------------------------------------------------------------- /src/provider/types/avm/IAVMStateSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm/IAVMStateSchema.ts -------------------------------------------------------------------------------- /src/provider/types/avm/IAVMStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm/IAVMStatus.ts -------------------------------------------------------------------------------- /src/provider/types/avm/IAVMTealKeyValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm/IAVMTealKeyValue.ts -------------------------------------------------------------------------------- /src/provider/types/avm/IAVMTealValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm/IAVMTealValue.ts -------------------------------------------------------------------------------- /src/provider/types/avm/IAVMVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm/IAVMVersions.ts -------------------------------------------------------------------------------- /src/provider/types/avm/IAVMVersionsBuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm/IAVMVersionsBuild.ts -------------------------------------------------------------------------------- /src/provider/types/avm/TAVMTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm/TAVMTransaction.ts -------------------------------------------------------------------------------- /src/provider/types/avm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/avm/index.ts -------------------------------------------------------------------------------- /src/provider/types/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/components/index.ts -------------------------------------------------------------------------------- /src/provider/types/events/IBaseEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/events/IBaseEvent.ts -------------------------------------------------------------------------------- /src/provider/types/events/TEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/events/TEvents.ts -------------------------------------------------------------------------------- /src/provider/types/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/events/index.ts -------------------------------------------------------------------------------- /src/provider/types/i18n/IResourceLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/i18n/IResourceLanguage.ts -------------------------------------------------------------------------------- /src/provider/types/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/i18n/index.ts -------------------------------------------------------------------------------- /src/provider/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/index.ts -------------------------------------------------------------------------------- /src/provider/types/modals/IModalProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/modals/IModalProps.ts -------------------------------------------------------------------------------- /src/provider/types/modals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/modals/index.ts -------------------------------------------------------------------------------- /src/provider/types/networks/ICustomNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/networks/ICustomNode.ts -------------------------------------------------------------------------------- /src/provider/types/networks/INetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/networks/INetwork.ts -------------------------------------------------------------------------------- /src/provider/types/networks/INode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/networks/INode.ts -------------------------------------------------------------------------------- /src/provider/types/networks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/networks/index.ts -------------------------------------------------------------------------------- /src/provider/types/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/notifications/index.ts -------------------------------------------------------------------------------- /src/provider/types/redux/IAppThunkDispatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/redux/IAppThunkDispatch.ts -------------------------------------------------------------------------------- /src/provider/types/redux/IBaseActionMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/redux/IBaseActionMeta.ts -------------------------------------------------------------------------------- /src/provider/types/redux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/redux/index.ts -------------------------------------------------------------------------------- /src/provider/types/sessions/ISession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/sessions/ISession.ts -------------------------------------------------------------------------------- /src/provider/types/sessions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/sessions/index.ts -------------------------------------------------------------------------------- /src/provider/types/settings/ISettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/settings/ISettings.ts -------------------------------------------------------------------------------- /src/provider/types/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/settings/index.ts -------------------------------------------------------------------------------- /src/provider/types/states/IBaseRootState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/states/IBaseRootState.ts -------------------------------------------------------------------------------- /src/provider/types/states/IMainRootState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/states/IMainRootState.ts -------------------------------------------------------------------------------- /src/provider/types/states/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/states/index.ts -------------------------------------------------------------------------------- /src/provider/types/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/storage/index.ts -------------------------------------------------------------------------------- /src/provider/types/system/ISystemInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/system/ISystemInfo.ts -------------------------------------------------------------------------------- /src/provider/types/system/IWhatsNewInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/system/IWhatsNewInfo.ts -------------------------------------------------------------------------------- /src/provider/types/system/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/system/index.ts -------------------------------------------------------------------------------- /src/provider/types/transactions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/transactions/index.ts -------------------------------------------------------------------------------- /src/provider/types/ui/IAddAccountPageProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/ui/IAddAccountPageProps.ts -------------------------------------------------------------------------------- /src/provider/types/ui/IAppProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/ui/IAppProps.ts -------------------------------------------------------------------------------- /src/provider/types/ui/IAppWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/ui/IAppWindow.ts -------------------------------------------------------------------------------- /src/provider/types/ui/ICondensedProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/ui/ICondensedProps.ts -------------------------------------------------------------------------------- /src/provider/types/ui/IRootProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/ui/IRootProps.ts -------------------------------------------------------------------------------- /src/provider/types/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/types/ui/index.ts -------------------------------------------------------------------------------- /src/provider/utils/bootstrapApp/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './bootstrapApp'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/calculateAppMbrForBox/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './calculateAppMbrForBox'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/calculateMaxTransactionAmount/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './calculateMaxTransactionAmount'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/chainReferenceFromGenesisHash/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './chainReferenceFromGenesisHash'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/convertAVMAddressToPublicKey/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './convertAVMAddressToPublicKey'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/convertGenesisHashToHex/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './convertGenesisHashToHex'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/convertMillisecondsToMinutes/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './convertMillisecondsToMinutes'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/convertPrivateKeyToAVMAddress/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './convertPrivateKeyToAVMAddress'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/convertPrivateKeyToSeedPhrase/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './convertPrivateKeyToSeedPhrase'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/convertSeedPhraseToPrivateKey/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './convertSeedPhraseToPrivateKey'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/convertToKebabCase/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './convertToKebabCase'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/createIconFromDataUri/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './createIconFromDataUri'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/createMaskedSeedPhrase/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './createMaskedSeedPhrase'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/createWatchAccountImportURI/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './createWatchAccountImportURI'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/decodeJwt/decodeJwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/utils/decodeJwt/decodeJwt.ts -------------------------------------------------------------------------------- /src/provider/utils/decodeJwt/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './decodeJwt'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/decodeURLSearchParam/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './decodeURLSearchParam'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/decodeUnsignedTransaction/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './decodeUnsignedTransaction'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/determinePaginationFromARC0300Schemas/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './determinePaginationFromARC0300Schemas'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/fetchAssetVerification/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './fetchAssetVerification'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/fetchVerifiedStandardAssetList/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './fetchVerifiedStandardAssetList'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/fetchWithDelay/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/utils/fetchWithDelay/index.ts -------------------------------------------------------------------------------- /src/provider/utils/filterCustomNodesFromNetwork/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './filterCustomNodesFromNetwork'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/formatID/formatID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/utils/formatID/formatID.ts -------------------------------------------------------------------------------- /src/provider/utils/formatID/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './formatID'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/getAuthorizedAddressesForHost/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './getAuthorizedAddressesForHost'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/groupTransactions/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './groupTransactions'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/isARC0300SchemaPaginationComplete/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isARC0300SchemaPaginationComplete'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/isAccountKnown/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isAccountKnown'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/isByteArrayEqual/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isByteArrayEqual'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/isCameraAvailable/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isCameraAvailable'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/isCredentialLockActive/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isCredentialLockActive'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/isHexString/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isHexString'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/isHexString/isHexString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/utils/isHexString/isHexString.ts -------------------------------------------------------------------------------- /src/provider/utils/isMnemonicValid/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isMnemonicValid'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/isNumericString/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isNumericString'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/isProviderInitialized/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isProviderInitialized'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/isReKeyedAuthAccountAvailable/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isReKeyedAuthAccountAvailable'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/isScreenCaptureAvailable/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isScreenCaptureAvailable'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/isWatchAccount/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isWatchAccount'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/isZeroAddress/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './isZeroAddress'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/makeStore/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './makeStore'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/makeStore/makeStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/utils/makeStore/makeStore.ts -------------------------------------------------------------------------------- /src/provider/utils/parseARC0200Transaction/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './parseARC0200Transaction'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/parseTransactionType/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './parseTransactionType'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/queueProviderEvent/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './queueProviderEvent'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/refreshTransactions/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './refreshTransactions'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/selectAssetsForNetwork/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './selectAssetsForNetwork'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/selectNetworkFromSettings/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './selectNetworkFromSettings'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/selectNodeIDByGenesisHashFromSettings/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './selectNodeIDByGenesisHashFromSettings'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/serialize/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './serialize'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/serialize/serialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/utils/serialize/serialize.ts -------------------------------------------------------------------------------- /src/provider/utils/signBytes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/utils/signBytes/index.ts -------------------------------------------------------------------------------- /src/provider/utils/signBytes/signBytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/utils/signBytes/signBytes.ts -------------------------------------------------------------------------------- /src/provider/utils/signBytes/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/utils/signBytes/types/index.ts -------------------------------------------------------------------------------- /src/provider/utils/signTransaction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/utils/signTransaction/index.ts -------------------------------------------------------------------------------- /src/provider/utils/sortByIndex/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './sortByIndex'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/sortByIndex/sortByIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/utils/sortByIndex/sortByIndex.ts -------------------------------------------------------------------------------- /src/provider/utils/sortByIndex/types/IType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/utils/sortByIndex/types/IType.ts -------------------------------------------------------------------------------- /src/provider/utils/sortByIndex/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/src/provider/utils/sortByIndex/types/index.ts -------------------------------------------------------------------------------- /src/provider/utils/uniqueGenesisHashesFromTransactions/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './uniqueGenesisHashesFromTransactions'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/updateARC0072AssetInformationById/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './updateARC0072AssetInformationById'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/updateARC0200AssetInformationById/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './updateARC0200AssetInformationById'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/updateStandardAssetInformationById/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './updateStandardAssetInformationById'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/upsertItemsById/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './upsertItemsById'; 2 | -------------------------------------------------------------------------------- /src/provider/utils/verifyTransactionGroups/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './verifyTransactionGroups'; 2 | -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/test/setup.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/utils/wait/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './wait'; 2 | -------------------------------------------------------------------------------- /test/utils/wait/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/test/utils/wait/wait.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/tsconfig.example.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack/constants/Directories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/constants/Directories.ts -------------------------------------------------------------------------------- /webpack/constants/Titles.ts: -------------------------------------------------------------------------------- 1 | export const APP_TITLE: string = 'Kibisis'; 2 | -------------------------------------------------------------------------------- /webpack/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/constants/index.ts -------------------------------------------------------------------------------- /webpack/enums/ConfigNameEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/enums/ConfigNameEnum.ts -------------------------------------------------------------------------------- /webpack/enums/EnvironmentEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/enums/EnvironmentEnum.ts -------------------------------------------------------------------------------- /webpack/enums/TargetEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/enums/TargetEnum.ts -------------------------------------------------------------------------------- /webpack/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/enums/index.ts -------------------------------------------------------------------------------- /webpack/plugins/ManifestBuilderPlugin/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ManifestBuilderPlugin'; 2 | -------------------------------------------------------------------------------- /webpack/plugins/WebExtPlugin/WebExtPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/plugins/WebExtPlugin/WebExtPlugin.ts -------------------------------------------------------------------------------- /webpack/plugins/WebExtPlugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/plugins/WebExtPlugin/index.ts -------------------------------------------------------------------------------- /webpack/plugins/WebExtPlugin/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/plugins/WebExtPlugin/types/index.ts -------------------------------------------------------------------------------- /webpack/tsconfig.webpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/tsconfig.webpack.json -------------------------------------------------------------------------------- /webpack/types/IAfterEmitHookFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/types/IAfterEmitHookFunction.ts -------------------------------------------------------------------------------- /webpack/types/IDoneHookFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/types/IDoneHookFunction.ts -------------------------------------------------------------------------------- /webpack/types/IWatchOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/types/IWatchOptions.ts -------------------------------------------------------------------------------- /webpack/types/IWebpackEnvironmentVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/types/IWebpackEnvironmentVariables.ts -------------------------------------------------------------------------------- /webpack/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/types/index.ts -------------------------------------------------------------------------------- /webpack/utils/createCommonConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/utils/createCommonConfig.ts -------------------------------------------------------------------------------- /webpack/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/utils/index.ts -------------------------------------------------------------------------------- /webpack/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kibis-is/web-extension/HEAD/webpack/webpack.config.ts --------------------------------------------------------------------------------