├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .stylelintignore ├── .stylelintrc ├── README.md ├── babel.config.js ├── bin └── linux │ └── sentinelcli-dvpn-desktop ├── jest.config.js ├── license.txt ├── package.json ├── public ├── assets │ ├── fonts │ │ └── Poppins │ │ │ ├── OFL.txt │ │ │ ├── Poppins-Black.ttf │ │ │ ├── Poppins-BlackItalic.ttf │ │ │ ├── Poppins-Bold.ttf │ │ │ ├── Poppins-BoldItalic.ttf │ │ │ ├── Poppins-ExtraBold.ttf │ │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ │ ├── Poppins-ExtraLight.ttf │ │ │ ├── Poppins-ExtraLightItalic.ttf │ │ │ ├── Poppins-Italic.ttf │ │ │ ├── Poppins-Light.ttf │ │ │ ├── Poppins-LightItalic.ttf │ │ │ ├── Poppins-Medium.ttf │ │ │ ├── Poppins-MediumItalic.ttf │ │ │ ├── Poppins-Regular.ttf │ │ │ ├── Poppins-SemiBold.ttf │ │ │ ├── Poppins-SemiBoldItalic.ttf │ │ │ ├── Poppins-Thin.ttf │ │ │ └── Poppins-ThinItalic.ttf │ ├── icons │ │ ├── account.svg │ │ ├── arrow-bottom.svg │ │ ├── arrow-right.svg │ │ ├── arrow-top.svg │ │ ├── building.svg │ │ ├── chevron-right.svg │ │ ├── clock.svg │ │ ├── cloud-upload.svg │ │ ├── cloud-with-arrows.svg │ │ ├── cloudflare.svg │ │ ├── copy.svg │ │ ├── download.svg │ │ ├── dvpn-circle.svg │ │ ├── dvpn.svg │ │ ├── features.svg │ │ ├── flag.svg │ │ ├── freenom.svg │ │ ├── google.svg │ │ ├── graph.svg │ │ ├── host.svg │ │ ├── infinity.svg │ │ ├── peers.svg │ │ ├── plug.svg │ │ ├── power.svg │ │ ├── refresh.svg │ │ ├── triple-arrows-down.svg │ │ ├── triple-arrows-up.svg │ │ ├── wifi-signal-high.svg │ │ ├── wifi-signal-low.svg │ │ ├── wifi-signal-normal.svg │ │ ├── wifi-signal-very-low.svg │ │ └── wifi.svg │ └── images │ │ ├── africa.svg │ │ ├── antarctica.svg │ │ ├── asia.svg │ │ ├── europe.svg │ │ ├── feature1.svg │ │ ├── feature2.svg │ │ ├── feature3.svg │ │ ├── logo.png │ │ ├── logo@2x.png │ │ ├── north-america.svg │ │ ├── oceania.svg │ │ ├── small-logo.png │ │ └── south-america.svg └── index.html ├── scripts └── linux │ ├── after-install.sh │ ├── after-uninstall.sh │ ├── instal-dev-dependencies.sh │ └── sentinelcli-dvpn.service ├── src ├── client.js ├── client │ ├── App.vue │ ├── components │ │ ├── app │ │ │ ├── AccountDrawer │ │ │ │ ├── AccountDrawer.scss │ │ │ │ ├── AccountDrawer.vue │ │ │ │ ├── OpenButton │ │ │ │ │ ├── OpenButton.vue │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── ConnectionToggle │ │ │ │ ├── ConnectionToggle.scss │ │ │ │ ├── ConnectionToggle.vue │ │ │ │ └── index.js │ │ │ ├── ContinentPreview │ │ │ │ ├── ContinentPreview.scss │ │ │ │ ├── ContinentPreview.vue │ │ │ │ └── index.js │ │ │ ├── GbsInput │ │ │ │ ├── GbsInput.scss │ │ │ │ ├── GbsInput.vue │ │ │ │ └── index.js │ │ │ ├── NodeDetail │ │ │ │ ├── NodeDetail.scss │ │ │ │ ├── NodeDetail.vue │ │ │ │ ├── icons.js │ │ │ │ └── index.js │ │ │ ├── NodeDetails │ │ │ │ ├── NodeDetails.scss │ │ │ │ ├── NodeDetails.vue │ │ │ │ └── index.js │ │ │ ├── NodeDrawer │ │ │ │ ├── NodeDrawer.scss │ │ │ │ ├── NodeDrawer.vue │ │ │ │ └── index.js │ │ │ ├── NodePreview │ │ │ │ ├── NodePreview.scss │ │ │ │ ├── NodePreview.vue │ │ │ │ └── index.js │ │ │ ├── PageHeader │ │ │ │ ├── PageHeader.vue │ │ │ │ └── index.js │ │ │ ├── ParameterScale │ │ │ │ ├── ParameterScale.scss │ │ │ │ ├── ParameterScale.vue │ │ │ │ └── index.js │ │ │ ├── QrCode │ │ │ │ ├── QrCode.vue │ │ │ │ └── index.js │ │ │ ├── Quota │ │ │ │ ├── Quota.scss │ │ │ │ ├── Quota.vue │ │ │ │ └── index.js │ │ │ └── SubscriptionModal │ │ │ │ ├── SubscriptionModal.vue │ │ │ │ └── index.js │ │ └── ui │ │ │ ├── SlrButton │ │ │ ├── SlrButton.scss │ │ │ ├── SlrButton.vue │ │ │ └── index.js │ │ │ ├── SlrCard │ │ │ ├── SlrCard.scss │ │ │ ├── SlrCard.vue │ │ │ └── index.js │ │ │ ├── SlrCheckbox │ │ │ ├── SlrCheckbox.scss │ │ │ ├── SlrCheckbox.vue │ │ │ └── index.js │ │ │ ├── SlrClipboardText │ │ │ ├── SlrClipboardText.scss │ │ │ ├── SlrClipboardText.vue │ │ │ └── index.js │ │ │ ├── SlrCopyButton │ │ │ ├── SlrCopyButton.vue │ │ │ └── index.js │ │ │ ├── SlrDrawer │ │ │ ├── CloseButton │ │ │ │ ├── CloseButton.scss │ │ │ │ ├── CloseButton.vue │ │ │ │ └── index.js │ │ │ ├── SlrDrawer.scss │ │ │ ├── SlrDrawer.vue │ │ │ └── index.js │ │ │ ├── SlrIcon │ │ │ ├── SlrIcon.vue │ │ │ └── index.js │ │ │ ├── SlrInput │ │ │ ├── SlrInput.scss │ │ │ ├── SlrInput.vue │ │ │ └── index.js │ │ │ ├── SlrLazyList │ │ │ ├── LazyListView │ │ │ │ ├── LazyListView.vue │ │ │ │ └── index.js │ │ │ ├── SlrLazyList.vue │ │ │ └── index.js │ │ │ ├── SlrLoader │ │ │ ├── SlrLoader.scss │ │ │ ├── SlrLoader.vue │ │ │ └── index.js │ │ │ ├── SlrLogo │ │ │ ├── SlrLogo.vue │ │ │ └── index.js │ │ │ ├── SlrModal │ │ │ ├── SlrModal.scss │ │ │ ├── SlrModal.vue │ │ │ └── index.js │ │ │ ├── SlrPopper │ │ │ ├── SlrPopper.scss │ │ │ ├── SlrPopper.vue │ │ │ └── index.js │ │ │ ├── SlrProgress │ │ │ ├── SlrProgress.scss │ │ │ ├── SlrProgress.vue │ │ │ └── index.js │ │ │ ├── SlrSearchInput │ │ │ ├── SlrSearchInput.vue │ │ │ └── index.js │ │ │ ├── SlrTable │ │ │ ├── SlrTable.scss │ │ │ ├── SlrTable.vue │ │ │ └── index.js │ │ │ ├── SlrTabs │ │ │ ├── SlrTab │ │ │ │ ├── SlrTab.vue │ │ │ │ └── index.js │ │ │ ├── SlrTabs.scss │ │ │ ├── SlrTabs.vue │ │ │ └── index.js │ │ │ └── SlrTextarea │ │ │ ├── SlrTextarea.scss │ │ │ ├── SlrTextarea.vue │ │ │ └── index.js │ ├── constants │ │ ├── denomNames.js │ │ ├── dns.js │ │ ├── featureSlides.js │ │ ├── plans.js │ │ └── statuses.js │ ├── hooks │ │ ├── useAccount.js │ │ ├── useBalance.js │ │ ├── useConnection.js │ │ ├── useFocus.js │ │ ├── useGlobalEmitter.js │ │ ├── useIpPolling.js │ │ ├── useNotification.js │ │ ├── useSessionDuration.js │ │ ├── useShell.js │ │ ├── useStatusPolling.js │ │ └── useSubscription.js │ ├── i18n │ │ ├── en.js │ │ └── index.js │ ├── pages │ │ ├── ChangeLocation │ │ │ ├── ChangeLocation.vue │ │ │ ├── index.js │ │ │ └── tabs │ │ │ │ ├── AvailableNodes.vue │ │ │ │ ├── SubscribedNodes.vue │ │ │ │ └── useNodeTabs.js │ │ ├── Connection │ │ │ ├── Connection.scss │ │ │ ├── Connection.vue │ │ │ ├── ConnectionDetail │ │ │ │ ├── ConnectionDetail.scss │ │ │ │ ├── ConnectionDetail.vue │ │ │ │ ├── icons.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── Login │ │ │ ├── Login.vue │ │ │ ├── LoginCreate │ │ │ ├── LoginCreate.vue │ │ │ └── index.js │ │ │ ├── LoginImport │ │ │ ├── LoginImport.vue │ │ │ └── index.js │ │ │ ├── Onboarding │ │ │ ├── Onboarding.scss │ │ │ ├── Onboarding.vue │ │ │ └── index.js │ │ │ └── index.js │ ├── plugins │ │ ├── i18n.js │ │ └── slr-components.js │ ├── router │ │ └── index.js │ ├── store │ │ ├── helpers │ │ │ └── promisifyIpc.js │ │ ├── modules │ │ │ ├── account.js │ │ │ ├── connection.js │ │ │ ├── node.js │ │ │ ├── nodes.js │ │ │ ├── plan.js │ │ │ ├── quota.js │ │ │ ├── settings.js │ │ │ └── subscription.js │ │ ├── mutation-types.js │ │ ├── plugins │ │ │ └── syncElectronStore.js │ │ └── store.js │ └── styles │ │ ├── animations.scss │ │ ├── blocks │ │ ├── index.scss │ │ ├── slr-currency.scss │ │ └── slr-hoverable.scss │ │ ├── fonts.scss │ │ ├── index.scss │ │ ├── mixins │ │ └── font.scss │ │ ├── reset.scss │ │ ├── spacers.scss │ │ ├── typography.scss │ │ ├── utils.scss │ │ └── variables │ │ ├── colors.scss │ │ ├── index.scss │ │ └── sizes.scss ├── main.js ├── main │ ├── api │ │ ├── RemoteNodeApi.js │ │ └── rest │ │ │ ├── DvpnApi.js │ │ │ └── KeyApi.js │ ├── common │ │ ├── AxiosError.js │ │ ├── BaseError.js │ │ ├── Notifications.js │ │ └── RpcError.js │ ├── data │ │ └── continents.js │ ├── i18n │ │ ├── en.js │ │ └── index.js │ ├── ipc │ │ ├── index.js │ │ └── listeners │ │ │ ├── account.js │ │ │ ├── connection.js │ │ │ ├── node.js │ │ │ ├── nodes.js │ │ │ ├── quota.js │ │ │ ├── shell.js │ │ │ └── subscription.js │ ├── preload.js │ ├── proto │ │ ├── cosmos │ │ │ ├── auth │ │ │ │ └── v1beta1 │ │ │ │ │ ├── auth_grpc_pb.js │ │ │ │ │ ├── auth_pb.js │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── query_grpc_pb.js │ │ │ │ │ └── query_pb.js │ │ │ ├── bank │ │ │ │ └── v1beta1 │ │ │ │ │ ├── bank_grpc_pb.js │ │ │ │ │ ├── bank_pb.js │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── query_grpc_pb.js │ │ │ │ │ ├── query_pb.js │ │ │ │ │ ├── tx_grpc_pb.js │ │ │ │ │ └── tx_pb.js │ │ │ ├── base │ │ │ │ ├── abci │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── abci_grpc_pb.js │ │ │ │ │ │ └── abci_pb.js │ │ │ │ ├── kv │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── kv_grpc_pb.js │ │ │ │ │ │ └── kv_pb.js │ │ │ │ ├── query │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── pagination_grpc_pb.js │ │ │ │ │ │ └── pagination_pb.js │ │ │ │ ├── reflection │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── reflection_grpc_pb.js │ │ │ │ │ │ └── reflection_pb.js │ │ │ │ ├── snapshots │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── snapshot_grpc_pb.js │ │ │ │ │ │ └── snapshot_pb.js │ │ │ │ ├── store │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── commit_info_grpc_pb.js │ │ │ │ │ │ ├── commit_info_pb.js │ │ │ │ │ │ ├── snapshot_grpc_pb.js │ │ │ │ │ │ └── snapshot_pb.js │ │ │ │ ├── tendermint │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── query_grpc_pb.js │ │ │ │ │ │ └── query_pb.js │ │ │ │ └── v1beta1 │ │ │ │ │ ├── coin_grpc_pb.js │ │ │ │ │ └── coin_pb.js │ │ │ ├── capability │ │ │ │ └── v1beta1 │ │ │ │ │ ├── capability_grpc_pb.js │ │ │ │ │ ├── capability_pb.js │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ └── genesis_pb.js │ │ │ ├── crisis │ │ │ │ └── v1beta1 │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── tx_grpc_pb.js │ │ │ │ │ └── tx_pb.js │ │ │ ├── crypto │ │ │ │ ├── ed25519 │ │ │ │ │ ├── keys_grpc_pb.js │ │ │ │ │ └── keys_pb.js │ │ │ │ ├── multisig │ │ │ │ │ ├── keys_grpc_pb.js │ │ │ │ │ ├── keys_pb.js │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── multisig_grpc_pb.js │ │ │ │ │ │ └── multisig_pb.js │ │ │ │ └── secp256k1 │ │ │ │ │ ├── keys_grpc_pb.js │ │ │ │ │ └── keys_pb.js │ │ │ ├── distribution │ │ │ │ └── v1beta1 │ │ │ │ │ ├── distribution_grpc_pb.js │ │ │ │ │ ├── distribution_pb.js │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── query_grpc_pb.js │ │ │ │ │ ├── query_pb.js │ │ │ │ │ ├── tx_grpc_pb.js │ │ │ │ │ └── tx_pb.js │ │ │ ├── evidence │ │ │ │ └── v1beta1 │ │ │ │ │ ├── evidence_grpc_pb.js │ │ │ │ │ ├── evidence_pb.js │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── query_grpc_pb.js │ │ │ │ │ ├── query_pb.js │ │ │ │ │ ├── tx_grpc_pb.js │ │ │ │ │ └── tx_pb.js │ │ │ ├── genutil │ │ │ │ └── v1beta1 │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ └── genesis_pb.js │ │ │ ├── gov │ │ │ │ └── v1beta1 │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── gov_grpc_pb.js │ │ │ │ │ ├── gov_pb.js │ │ │ │ │ ├── query_grpc_pb.js │ │ │ │ │ ├── query_pb.js │ │ │ │ │ ├── tx_grpc_pb.js │ │ │ │ │ └── tx_pb.js │ │ │ ├── mint │ │ │ │ └── v1beta1 │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── mint_grpc_pb.js │ │ │ │ │ ├── mint_pb.js │ │ │ │ │ ├── query_grpc_pb.js │ │ │ │ │ └── query_pb.js │ │ │ ├── params │ │ │ │ └── v1beta1 │ │ │ │ │ ├── params_grpc_pb.js │ │ │ │ │ ├── params_pb.js │ │ │ │ │ ├── query_grpc_pb.js │ │ │ │ │ └── query_pb.js │ │ │ ├── slashing │ │ │ │ └── v1beta1 │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── query_grpc_pb.js │ │ │ │ │ ├── query_pb.js │ │ │ │ │ ├── slashing_grpc_pb.js │ │ │ │ │ ├── slashing_pb.js │ │ │ │ │ ├── tx_grpc_pb.js │ │ │ │ │ └── tx_pb.js │ │ │ ├── staking │ │ │ │ └── v1beta1 │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── query_grpc_pb.js │ │ │ │ │ ├── query_pb.js │ │ │ │ │ ├── staking_grpc_pb.js │ │ │ │ │ ├── staking_pb.js │ │ │ │ │ ├── tx_grpc_pb.js │ │ │ │ │ └── tx_pb.js │ │ │ ├── tx │ │ │ │ ├── signing │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── signing_grpc_pb.js │ │ │ │ │ │ └── signing_pb.js │ │ │ │ └── v1beta1 │ │ │ │ │ ├── service_grpc_pb.js │ │ │ │ │ ├── service_pb.js │ │ │ │ │ ├── tx_grpc_pb.js │ │ │ │ │ └── tx_pb.js │ │ │ ├── upgrade │ │ │ │ └── v1beta1 │ │ │ │ │ ├── query_grpc_pb.js │ │ │ │ │ ├── query_pb.js │ │ │ │ │ ├── upgrade_grpc_pb.js │ │ │ │ │ └── upgrade_pb.js │ │ │ └── vesting │ │ │ │ └── v1beta1 │ │ │ │ ├── tx_grpc_pb.js │ │ │ │ ├── tx_pb.js │ │ │ │ ├── vesting_grpc_pb.js │ │ │ │ └── vesting_pb.js │ │ ├── cosmos_proto │ │ │ ├── cosmos_grpc_pb.js │ │ │ └── cosmos_pb.js │ │ ├── gogoproto │ │ │ ├── gogo_grpc_pb.js │ │ │ └── gogo_pb.js │ │ ├── google │ │ │ ├── api │ │ │ │ ├── annotations_grpc_pb.js │ │ │ │ ├── annotations_pb.js │ │ │ │ ├── http_grpc_pb.js │ │ │ │ ├── http_pb.js │ │ │ │ ├── httpbody_grpc_pb.js │ │ │ │ └── httpbody_pb.js │ │ │ └── protobuf │ │ │ │ ├── any_grpc_pb.js │ │ │ │ └── any_pb.js │ │ ├── sentinel │ │ │ ├── deposit │ │ │ │ └── v1 │ │ │ │ │ ├── deposit_grpc_pb.js │ │ │ │ │ ├── deposit_pb.js │ │ │ │ │ ├── events_grpc_pb.js │ │ │ │ │ ├── events_pb.js │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── msg_grpc_pb.js │ │ │ │ │ ├── msg_pb.js │ │ │ │ │ ├── params_grpc_pb.js │ │ │ │ │ ├── params_pb.js │ │ │ │ │ ├── querier_grpc_pb.js │ │ │ │ │ └── querier_pb.js │ │ │ ├── node │ │ │ │ └── v1 │ │ │ │ │ ├── events_grpc_pb.js │ │ │ │ │ ├── events_pb.js │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── msg_grpc_pb.js │ │ │ │ │ ├── msg_pb.js │ │ │ │ │ ├── node_grpc_pb.js │ │ │ │ │ ├── node_pb.js │ │ │ │ │ ├── params_grpc_pb.js │ │ │ │ │ ├── params_pb.js │ │ │ │ │ ├── querier_grpc_pb.js │ │ │ │ │ └── querier_pb.js │ │ │ ├── plan │ │ │ │ └── v1 │ │ │ │ │ ├── events_grpc_pb.js │ │ │ │ │ ├── events_pb.js │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── msg_grpc_pb.js │ │ │ │ │ ├── msg_pb.js │ │ │ │ │ ├── params_grpc_pb.js │ │ │ │ │ ├── params_pb.js │ │ │ │ │ ├── plan_grpc_pb.js │ │ │ │ │ ├── plan_pb.js │ │ │ │ │ ├── querier_grpc_pb.js │ │ │ │ │ └── querier_pb.js │ │ │ ├── provider │ │ │ │ └── v1 │ │ │ │ │ ├── events_grpc_pb.js │ │ │ │ │ ├── events_pb.js │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── msg_grpc_pb.js │ │ │ │ │ ├── msg_pb.js │ │ │ │ │ ├── params_grpc_pb.js │ │ │ │ │ ├── params_pb.js │ │ │ │ │ ├── provider_grpc_pb.js │ │ │ │ │ ├── provider_pb.js │ │ │ │ │ ├── querier_grpc_pb.js │ │ │ │ │ └── querier_pb.js │ │ │ ├── session │ │ │ │ └── v1 │ │ │ │ │ ├── events_grpc_pb.js │ │ │ │ │ ├── events_pb.js │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── msg_grpc_pb.js │ │ │ │ │ ├── msg_pb.js │ │ │ │ │ ├── params_grpc_pb.js │ │ │ │ │ ├── params_pb.js │ │ │ │ │ ├── proof_grpc_pb.js │ │ │ │ │ ├── proof_pb.js │ │ │ │ │ ├── querier_grpc_pb.js │ │ │ │ │ ├── querier_pb.js │ │ │ │ │ ├── session_grpc_pb.js │ │ │ │ │ └── session_pb.js │ │ │ ├── subscription │ │ │ │ └── v1 │ │ │ │ │ ├── events_grpc_pb.js │ │ │ │ │ ├── events_pb.js │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── msg_grpc_pb.js │ │ │ │ │ ├── msg_pb.js │ │ │ │ │ ├── params_grpc_pb.js │ │ │ │ │ ├── params_pb.js │ │ │ │ │ ├── querier_grpc_pb.js │ │ │ │ │ ├── querier_grpc_web_pb.js │ │ │ │ │ ├── querier_pb.js │ │ │ │ │ ├── quota_grpc_pb.js │ │ │ │ │ ├── quota_pb.js │ │ │ │ │ ├── subscription_grpc_pb.js │ │ │ │ │ └── subscription_pb.js │ │ │ ├── swap │ │ │ │ └── v1 │ │ │ │ │ ├── events_grpc_pb.js │ │ │ │ │ ├── events_pb.js │ │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ │ ├── genesis_pb.js │ │ │ │ │ ├── msg_grpc_pb.js │ │ │ │ │ ├── msg_pb.js │ │ │ │ │ ├── params_grpc_pb.js │ │ │ │ │ ├── params_pb.js │ │ │ │ │ ├── querier_grpc_pb.js │ │ │ │ │ ├── querier_pb.js │ │ │ │ │ ├── swap_grpc_pb.js │ │ │ │ │ └── swap_pb.js │ │ │ ├── types │ │ │ │ └── v1 │ │ │ │ │ ├── bandwidth_grpc_pb.js │ │ │ │ │ ├── bandwidth_pb.js │ │ │ │ │ ├── status_grpc_pb.js │ │ │ │ │ └── status_pb.js │ │ │ └── vpn │ │ │ │ └── v1 │ │ │ │ ├── genesis_grpc_pb.js │ │ │ │ ├── genesis_pb.js │ │ │ │ ├── msg_grpc_pb.js │ │ │ │ ├── msg_pb.js │ │ │ │ ├── params_grpc_pb.js │ │ │ │ ├── params_pb.js │ │ │ │ ├── querier_grpc_pb.js │ │ │ │ └── querier_pb.js │ │ └── tendermint │ │ │ ├── abci │ │ │ ├── types_grpc_pb.js │ │ │ └── types_pb.js │ │ │ ├── crypto │ │ │ ├── keys_grpc_pb.js │ │ │ ├── keys_pb.js │ │ │ ├── proof_grpc_pb.js │ │ │ └── proof_pb.js │ │ │ ├── libs │ │ │ └── bits │ │ │ │ ├── types_grpc_pb.js │ │ │ │ └── types_pb.js │ │ │ ├── p2p │ │ │ ├── types_grpc_pb.js │ │ │ └── types_pb.js │ │ │ ├── types │ │ │ ├── block_grpc_pb.js │ │ │ ├── block_pb.js │ │ │ ├── evidence_grpc_pb.js │ │ │ ├── evidence_pb.js │ │ │ ├── params_grpc_pb.js │ │ │ ├── params_pb.js │ │ │ ├── types_grpc_pb.js │ │ │ ├── types_pb.js │ │ │ ├── validator_grpc_pb.js │ │ │ └── validator_pb.js │ │ │ └── version │ │ │ ├── types_grpc_pb.js │ │ │ └── types_pb.js │ ├── rest │ │ ├── dvpn.js │ │ └── keyring.js │ ├── services │ │ ├── AccountService.js │ │ ├── CustomClient.js │ │ ├── LoginService.js │ │ ├── NodeService.js │ │ ├── SessionService.js │ │ ├── SignService.js │ │ ├── SubscriptionService.js │ │ ├── TransactionService.js │ │ └── СonnectionService.js │ ├── store │ │ └── store.js │ └── utils │ │ ├── errorHandler.js │ │ └── logger.js └── shared │ ├── channel-types.js │ ├── checkCountryName.js │ └── constants.js ├── tests └── unit │ └── example.spec.js ├── vue.config.js ├── winehq.key └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/wallet/events/*.js 2 | src/main/proto 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/.stylelintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/linux/sentinelcli-dvpn-desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/bin/linux/sentinelcli-dvpn-desktop -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/jest.config.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/fonts/Poppins/OFL.txt -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-Black.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/fonts/Poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/fonts/Poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/fonts/Poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/fonts/Poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-Thin.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/Poppins/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/icons/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/account.svg -------------------------------------------------------------------------------- /public/assets/icons/arrow-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/arrow-bottom.svg -------------------------------------------------------------------------------- /public/assets/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/arrow-right.svg -------------------------------------------------------------------------------- /public/assets/icons/arrow-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/arrow-top.svg -------------------------------------------------------------------------------- /public/assets/icons/building.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/building.svg -------------------------------------------------------------------------------- /public/assets/icons/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/chevron-right.svg -------------------------------------------------------------------------------- /public/assets/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/clock.svg -------------------------------------------------------------------------------- /public/assets/icons/cloud-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/cloud-upload.svg -------------------------------------------------------------------------------- /public/assets/icons/cloud-with-arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/cloud-with-arrows.svg -------------------------------------------------------------------------------- /public/assets/icons/cloudflare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/cloudflare.svg -------------------------------------------------------------------------------- /public/assets/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/copy.svg -------------------------------------------------------------------------------- /public/assets/icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/download.svg -------------------------------------------------------------------------------- /public/assets/icons/dvpn-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/dvpn-circle.svg -------------------------------------------------------------------------------- /public/assets/icons/dvpn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/dvpn.svg -------------------------------------------------------------------------------- /public/assets/icons/features.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/features.svg -------------------------------------------------------------------------------- /public/assets/icons/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/flag.svg -------------------------------------------------------------------------------- /public/assets/icons/freenom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/freenom.svg -------------------------------------------------------------------------------- /public/assets/icons/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/google.svg -------------------------------------------------------------------------------- /public/assets/icons/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/graph.svg -------------------------------------------------------------------------------- /public/assets/icons/host.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/host.svg -------------------------------------------------------------------------------- /public/assets/icons/infinity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/infinity.svg -------------------------------------------------------------------------------- /public/assets/icons/peers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/peers.svg -------------------------------------------------------------------------------- /public/assets/icons/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/plug.svg -------------------------------------------------------------------------------- /public/assets/icons/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/power.svg -------------------------------------------------------------------------------- /public/assets/icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/refresh.svg -------------------------------------------------------------------------------- /public/assets/icons/triple-arrows-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/triple-arrows-down.svg -------------------------------------------------------------------------------- /public/assets/icons/triple-arrows-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/triple-arrows-up.svg -------------------------------------------------------------------------------- /public/assets/icons/wifi-signal-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/wifi-signal-high.svg -------------------------------------------------------------------------------- /public/assets/icons/wifi-signal-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/wifi-signal-low.svg -------------------------------------------------------------------------------- /public/assets/icons/wifi-signal-normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/wifi-signal-normal.svg -------------------------------------------------------------------------------- /public/assets/icons/wifi-signal-very-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/wifi-signal-very-low.svg -------------------------------------------------------------------------------- /public/assets/icons/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/icons/wifi.svg -------------------------------------------------------------------------------- /public/assets/images/africa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/images/africa.svg -------------------------------------------------------------------------------- /public/assets/images/antarctica.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/images/antarctica.svg -------------------------------------------------------------------------------- /public/assets/images/asia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/images/asia.svg -------------------------------------------------------------------------------- /public/assets/images/europe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/images/europe.svg -------------------------------------------------------------------------------- /public/assets/images/feature1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/images/feature1.svg -------------------------------------------------------------------------------- /public/assets/images/feature2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/images/feature2.svg -------------------------------------------------------------------------------- /public/assets/images/feature3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/images/feature3.svg -------------------------------------------------------------------------------- /public/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/images/logo.png -------------------------------------------------------------------------------- /public/assets/images/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/images/logo@2x.png -------------------------------------------------------------------------------- /public/assets/images/north-america.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/images/north-america.svg -------------------------------------------------------------------------------- /public/assets/images/oceania.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/images/oceania.svg -------------------------------------------------------------------------------- /public/assets/images/small-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/images/small-logo.png -------------------------------------------------------------------------------- /public/assets/images/south-america.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/assets/images/south-america.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/public/index.html -------------------------------------------------------------------------------- /scripts/linux/after-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/scripts/linux/after-install.sh -------------------------------------------------------------------------------- /scripts/linux/after-uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/scripts/linux/after-uninstall.sh -------------------------------------------------------------------------------- /scripts/linux/instal-dev-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/scripts/linux/instal-dev-dependencies.sh -------------------------------------------------------------------------------- /scripts/linux/sentinelcli-dvpn.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/scripts/linux/sentinelcli-dvpn.service -------------------------------------------------------------------------------- /src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client.js -------------------------------------------------------------------------------- /src/client/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/App.vue -------------------------------------------------------------------------------- /src/client/components/app/AccountDrawer/AccountDrawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/AccountDrawer/AccountDrawer.scss -------------------------------------------------------------------------------- /src/client/components/app/AccountDrawer/AccountDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/AccountDrawer/AccountDrawer.vue -------------------------------------------------------------------------------- /src/client/components/app/AccountDrawer/OpenButton/OpenButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/AccountDrawer/OpenButton/OpenButton.vue -------------------------------------------------------------------------------- /src/client/components/app/AccountDrawer/OpenButton/index.js: -------------------------------------------------------------------------------- 1 | export default from './OpenButton' 2 | -------------------------------------------------------------------------------- /src/client/components/app/AccountDrawer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/AccountDrawer/index.js -------------------------------------------------------------------------------- /src/client/components/app/ConnectionToggle/ConnectionToggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/ConnectionToggle/ConnectionToggle.scss -------------------------------------------------------------------------------- /src/client/components/app/ConnectionToggle/ConnectionToggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/ConnectionToggle/ConnectionToggle.vue -------------------------------------------------------------------------------- /src/client/components/app/ConnectionToggle/index.js: -------------------------------------------------------------------------------- 1 | export default from './ConnectionToggle' 2 | -------------------------------------------------------------------------------- /src/client/components/app/ContinentPreview/ContinentPreview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/ContinentPreview/ContinentPreview.scss -------------------------------------------------------------------------------- /src/client/components/app/ContinentPreview/ContinentPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/ContinentPreview/ContinentPreview.vue -------------------------------------------------------------------------------- /src/client/components/app/ContinentPreview/index.js: -------------------------------------------------------------------------------- 1 | export default from './ContinentPreview' 2 | -------------------------------------------------------------------------------- /src/client/components/app/GbsInput/GbsInput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/GbsInput/GbsInput.scss -------------------------------------------------------------------------------- /src/client/components/app/GbsInput/GbsInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/GbsInput/GbsInput.vue -------------------------------------------------------------------------------- /src/client/components/app/GbsInput/index.js: -------------------------------------------------------------------------------- 1 | export default from './GbsInput' 2 | -------------------------------------------------------------------------------- /src/client/components/app/NodeDetail/NodeDetail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/NodeDetail/NodeDetail.scss -------------------------------------------------------------------------------- /src/client/components/app/NodeDetail/NodeDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/NodeDetail/NodeDetail.vue -------------------------------------------------------------------------------- /src/client/components/app/NodeDetail/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/NodeDetail/icons.js -------------------------------------------------------------------------------- /src/client/components/app/NodeDetail/index.js: -------------------------------------------------------------------------------- 1 | export default from './NodeDetail' 2 | -------------------------------------------------------------------------------- /src/client/components/app/NodeDetails/NodeDetails.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/NodeDetails/NodeDetails.scss -------------------------------------------------------------------------------- /src/client/components/app/NodeDetails/NodeDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/NodeDetails/NodeDetails.vue -------------------------------------------------------------------------------- /src/client/components/app/NodeDetails/index.js: -------------------------------------------------------------------------------- 1 | export default from './NodeDetails' 2 | -------------------------------------------------------------------------------- /src/client/components/app/NodeDrawer/NodeDrawer.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/client/components/app/NodeDrawer/NodeDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/NodeDrawer/NodeDrawer.vue -------------------------------------------------------------------------------- /src/client/components/app/NodeDrawer/index.js: -------------------------------------------------------------------------------- 1 | export default from './NodeDrawer' 2 | -------------------------------------------------------------------------------- /src/client/components/app/NodePreview/NodePreview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/NodePreview/NodePreview.scss -------------------------------------------------------------------------------- /src/client/components/app/NodePreview/NodePreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/NodePreview/NodePreview.vue -------------------------------------------------------------------------------- /src/client/components/app/NodePreview/index.js: -------------------------------------------------------------------------------- 1 | export default from './NodePreview' 2 | -------------------------------------------------------------------------------- /src/client/components/app/PageHeader/PageHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/PageHeader/PageHeader.vue -------------------------------------------------------------------------------- /src/client/components/app/PageHeader/index.js: -------------------------------------------------------------------------------- 1 | export default from './PageHeader' 2 | -------------------------------------------------------------------------------- /src/client/components/app/ParameterScale/ParameterScale.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/ParameterScale/ParameterScale.scss -------------------------------------------------------------------------------- /src/client/components/app/ParameterScale/ParameterScale.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/ParameterScale/ParameterScale.vue -------------------------------------------------------------------------------- /src/client/components/app/ParameterScale/index.js: -------------------------------------------------------------------------------- 1 | export default from './ParameterScale' 2 | -------------------------------------------------------------------------------- /src/client/components/app/QrCode/QrCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/QrCode/QrCode.vue -------------------------------------------------------------------------------- /src/client/components/app/QrCode/index.js: -------------------------------------------------------------------------------- 1 | export default from './QrCode' 2 | -------------------------------------------------------------------------------- /src/client/components/app/Quota/Quota.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/Quota/Quota.scss -------------------------------------------------------------------------------- /src/client/components/app/Quota/Quota.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/Quota/Quota.vue -------------------------------------------------------------------------------- /src/client/components/app/Quota/index.js: -------------------------------------------------------------------------------- 1 | export default from './Quota' 2 | -------------------------------------------------------------------------------- /src/client/components/app/SubscriptionModal/SubscriptionModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/app/SubscriptionModal/SubscriptionModal.vue -------------------------------------------------------------------------------- /src/client/components/app/SubscriptionModal/index.js: -------------------------------------------------------------------------------- 1 | export default from './SubscriptionModal' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrButton/SlrButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrButton/SlrButton.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrButton/SlrButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrButton/SlrButton.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrButton/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrButton' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrCard/SlrCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrCard/SlrCard.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrCard/SlrCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrCard/SlrCard.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrCard/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrCard' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrCheckbox/SlrCheckbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrCheckbox/SlrCheckbox.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrCheckbox/SlrCheckbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrCheckbox/SlrCheckbox.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrCheckbox/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrCheckbox' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrClipboardText/SlrClipboardText.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrClipboardText/SlrClipboardText.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrClipboardText/SlrClipboardText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrClipboardText/SlrClipboardText.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrClipboardText/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrClipboardText' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrCopyButton/SlrCopyButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrCopyButton/SlrCopyButton.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrCopyButton/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrCopyButton' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrDrawer/CloseButton/CloseButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrDrawer/CloseButton/CloseButton.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrDrawer/CloseButton/CloseButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrDrawer/CloseButton/CloseButton.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrDrawer/CloseButton/index.js: -------------------------------------------------------------------------------- 1 | export default from './CloseButton' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrDrawer/SlrDrawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrDrawer/SlrDrawer.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrDrawer/SlrDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrDrawer/SlrDrawer.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrDrawer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrDrawer/index.js -------------------------------------------------------------------------------- /src/client/components/ui/SlrIcon/SlrIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrIcon/SlrIcon.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrIcon/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrIcon' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrInput/SlrInput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrInput/SlrInput.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrInput/SlrInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrInput/SlrInput.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrInput/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrInput' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrLazyList/LazyListView/LazyListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrLazyList/LazyListView/LazyListView.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrLazyList/LazyListView/index.js: -------------------------------------------------------------------------------- 1 | export default from './LazyListView' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrLazyList/SlrLazyList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrLazyList/SlrLazyList.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrLazyList/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrLazyList' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrLoader/SlrLoader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrLoader/SlrLoader.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrLoader/SlrLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrLoader/SlrLoader.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrLoader/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrLoader' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrLogo/SlrLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrLogo/SlrLogo.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrLogo/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrLogo' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrModal/SlrModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrModal/SlrModal.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrModal/SlrModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrModal/SlrModal.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrModal/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrModal' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrPopper/SlrPopper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrPopper/SlrPopper.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrPopper/SlrPopper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrPopper/SlrPopper.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrPopper/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrPopper' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrProgress/SlrProgress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrProgress/SlrProgress.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrProgress/SlrProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrProgress/SlrProgress.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrProgress/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrProgress' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrSearchInput/SlrSearchInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrSearchInput/SlrSearchInput.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrSearchInput/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrSearchInput' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrTable/SlrTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrTable/SlrTable.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrTable/SlrTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrTable/SlrTable.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrTable/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrTable' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrTabs/SlrTab/SlrTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrTabs/SlrTab/SlrTab.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrTabs/SlrTab/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrTab' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrTabs/SlrTabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrTabs/SlrTabs.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrTabs/SlrTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrTabs/SlrTabs.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrTabs/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrTabs' 2 | -------------------------------------------------------------------------------- /src/client/components/ui/SlrTextarea/SlrTextarea.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrTextarea/SlrTextarea.scss -------------------------------------------------------------------------------- /src/client/components/ui/SlrTextarea/SlrTextarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/components/ui/SlrTextarea/SlrTextarea.vue -------------------------------------------------------------------------------- /src/client/components/ui/SlrTextarea/index.js: -------------------------------------------------------------------------------- 1 | export default from './SlrTextarea' 2 | -------------------------------------------------------------------------------- /src/client/constants/denomNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/constants/denomNames.js -------------------------------------------------------------------------------- /src/client/constants/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/constants/dns.js -------------------------------------------------------------------------------- /src/client/constants/featureSlides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/constants/featureSlides.js -------------------------------------------------------------------------------- /src/client/constants/plans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/constants/plans.js -------------------------------------------------------------------------------- /src/client/constants/statuses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/constants/statuses.js -------------------------------------------------------------------------------- /src/client/hooks/useAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/hooks/useAccount.js -------------------------------------------------------------------------------- /src/client/hooks/useBalance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/hooks/useBalance.js -------------------------------------------------------------------------------- /src/client/hooks/useConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/hooks/useConnection.js -------------------------------------------------------------------------------- /src/client/hooks/useFocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/hooks/useFocus.js -------------------------------------------------------------------------------- /src/client/hooks/useGlobalEmitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/hooks/useGlobalEmitter.js -------------------------------------------------------------------------------- /src/client/hooks/useIpPolling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/hooks/useIpPolling.js -------------------------------------------------------------------------------- /src/client/hooks/useNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/hooks/useNotification.js -------------------------------------------------------------------------------- /src/client/hooks/useSessionDuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/hooks/useSessionDuration.js -------------------------------------------------------------------------------- /src/client/hooks/useShell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/hooks/useShell.js -------------------------------------------------------------------------------- /src/client/hooks/useStatusPolling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/hooks/useStatusPolling.js -------------------------------------------------------------------------------- /src/client/hooks/useSubscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/hooks/useSubscription.js -------------------------------------------------------------------------------- /src/client/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/i18n/en.js -------------------------------------------------------------------------------- /src/client/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/i18n/index.js -------------------------------------------------------------------------------- /src/client/pages/ChangeLocation/ChangeLocation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/ChangeLocation/ChangeLocation.vue -------------------------------------------------------------------------------- /src/client/pages/ChangeLocation/index.js: -------------------------------------------------------------------------------- 1 | export default from './ChangeLocation' 2 | -------------------------------------------------------------------------------- /src/client/pages/ChangeLocation/tabs/AvailableNodes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/ChangeLocation/tabs/AvailableNodes.vue -------------------------------------------------------------------------------- /src/client/pages/ChangeLocation/tabs/SubscribedNodes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/ChangeLocation/tabs/SubscribedNodes.vue -------------------------------------------------------------------------------- /src/client/pages/ChangeLocation/tabs/useNodeTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/ChangeLocation/tabs/useNodeTabs.js -------------------------------------------------------------------------------- /src/client/pages/Connection/Connection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/Connection/Connection.scss -------------------------------------------------------------------------------- /src/client/pages/Connection/Connection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/Connection/Connection.vue -------------------------------------------------------------------------------- /src/client/pages/Connection/ConnectionDetail/ConnectionDetail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/Connection/ConnectionDetail/ConnectionDetail.scss -------------------------------------------------------------------------------- /src/client/pages/Connection/ConnectionDetail/ConnectionDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/Connection/ConnectionDetail/ConnectionDetail.vue -------------------------------------------------------------------------------- /src/client/pages/Connection/ConnectionDetail/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/Connection/ConnectionDetail/icons.js -------------------------------------------------------------------------------- /src/client/pages/Connection/ConnectionDetail/index.js: -------------------------------------------------------------------------------- 1 | export default from './ConnectionDetail' 2 | -------------------------------------------------------------------------------- /src/client/pages/Connection/index.js: -------------------------------------------------------------------------------- 1 | export default from './Connection' 2 | -------------------------------------------------------------------------------- /src/client/pages/Login/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/Login/Login.vue -------------------------------------------------------------------------------- /src/client/pages/Login/LoginCreate/LoginCreate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/Login/LoginCreate/LoginCreate.vue -------------------------------------------------------------------------------- /src/client/pages/Login/LoginCreate/index.js: -------------------------------------------------------------------------------- 1 | export default from './LoginCreate' 2 | -------------------------------------------------------------------------------- /src/client/pages/Login/LoginImport/LoginImport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/Login/LoginImport/LoginImport.vue -------------------------------------------------------------------------------- /src/client/pages/Login/LoginImport/index.js: -------------------------------------------------------------------------------- 1 | export default from './LoginImport' 2 | -------------------------------------------------------------------------------- /src/client/pages/Login/Onboarding/Onboarding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/Login/Onboarding/Onboarding.scss -------------------------------------------------------------------------------- /src/client/pages/Login/Onboarding/Onboarding.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/pages/Login/Onboarding/Onboarding.vue -------------------------------------------------------------------------------- /src/client/pages/Login/Onboarding/index.js: -------------------------------------------------------------------------------- 1 | export default from './Onboarding' 2 | -------------------------------------------------------------------------------- /src/client/pages/Login/index.js: -------------------------------------------------------------------------------- 1 | export default from './Login' 2 | -------------------------------------------------------------------------------- /src/client/plugins/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/plugins/i18n.js -------------------------------------------------------------------------------- /src/client/plugins/slr-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/plugins/slr-components.js -------------------------------------------------------------------------------- /src/client/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/router/index.js -------------------------------------------------------------------------------- /src/client/store/helpers/promisifyIpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/store/helpers/promisifyIpc.js -------------------------------------------------------------------------------- /src/client/store/modules/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/store/modules/account.js -------------------------------------------------------------------------------- /src/client/store/modules/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/store/modules/connection.js -------------------------------------------------------------------------------- /src/client/store/modules/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/store/modules/node.js -------------------------------------------------------------------------------- /src/client/store/modules/nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/store/modules/nodes.js -------------------------------------------------------------------------------- /src/client/store/modules/plan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/store/modules/plan.js -------------------------------------------------------------------------------- /src/client/store/modules/quota.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/store/modules/quota.js -------------------------------------------------------------------------------- /src/client/store/modules/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/store/modules/settings.js -------------------------------------------------------------------------------- /src/client/store/modules/subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/store/modules/subscription.js -------------------------------------------------------------------------------- /src/client/store/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/store/mutation-types.js -------------------------------------------------------------------------------- /src/client/store/plugins/syncElectronStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/store/plugins/syncElectronStore.js -------------------------------------------------------------------------------- /src/client/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/store/store.js -------------------------------------------------------------------------------- /src/client/styles/animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/styles/animations.scss -------------------------------------------------------------------------------- /src/client/styles/blocks/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/styles/blocks/index.scss -------------------------------------------------------------------------------- /src/client/styles/blocks/slr-currency.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/styles/blocks/slr-currency.scss -------------------------------------------------------------------------------- /src/client/styles/blocks/slr-hoverable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/styles/blocks/slr-hoverable.scss -------------------------------------------------------------------------------- /src/client/styles/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/styles/fonts.scss -------------------------------------------------------------------------------- /src/client/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/styles/index.scss -------------------------------------------------------------------------------- /src/client/styles/mixins/font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/styles/mixins/font.scss -------------------------------------------------------------------------------- /src/client/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/styles/reset.scss -------------------------------------------------------------------------------- /src/client/styles/spacers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/styles/spacers.scss -------------------------------------------------------------------------------- /src/client/styles/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/styles/typography.scss -------------------------------------------------------------------------------- /src/client/styles/utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/styles/utils.scss -------------------------------------------------------------------------------- /src/client/styles/variables/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/styles/variables/colors.scss -------------------------------------------------------------------------------- /src/client/styles/variables/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/client/styles/variables/index.scss -------------------------------------------------------------------------------- /src/client/styles/variables/sizes.scss: -------------------------------------------------------------------------------- 1 | $header-height: 90px; -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main.js -------------------------------------------------------------------------------- /src/main/api/RemoteNodeApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/api/RemoteNodeApi.js -------------------------------------------------------------------------------- /src/main/api/rest/DvpnApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/api/rest/DvpnApi.js -------------------------------------------------------------------------------- /src/main/api/rest/KeyApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/api/rest/KeyApi.js -------------------------------------------------------------------------------- /src/main/common/AxiosError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/common/AxiosError.js -------------------------------------------------------------------------------- /src/main/common/BaseError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/common/BaseError.js -------------------------------------------------------------------------------- /src/main/common/Notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/common/Notifications.js -------------------------------------------------------------------------------- /src/main/common/RpcError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/common/RpcError.js -------------------------------------------------------------------------------- /src/main/data/continents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/data/continents.js -------------------------------------------------------------------------------- /src/main/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/i18n/en.js -------------------------------------------------------------------------------- /src/main/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/i18n/index.js -------------------------------------------------------------------------------- /src/main/ipc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/ipc/index.js -------------------------------------------------------------------------------- /src/main/ipc/listeners/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/ipc/listeners/account.js -------------------------------------------------------------------------------- /src/main/ipc/listeners/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/ipc/listeners/connection.js -------------------------------------------------------------------------------- /src/main/ipc/listeners/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/ipc/listeners/node.js -------------------------------------------------------------------------------- /src/main/ipc/listeners/nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/ipc/listeners/nodes.js -------------------------------------------------------------------------------- /src/main/ipc/listeners/quota.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/ipc/listeners/quota.js -------------------------------------------------------------------------------- /src/main/ipc/listeners/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/ipc/listeners/shell.js -------------------------------------------------------------------------------- /src/main/ipc/listeners/subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/ipc/listeners/subscription.js -------------------------------------------------------------------------------- /src/main/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/preload.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/auth/v1beta1/auth_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/auth/v1beta1/auth_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/auth/v1beta1/auth_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/auth/v1beta1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/auth/v1beta1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/auth/v1beta1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/auth/v1beta1/query_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/auth/v1beta1/query_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/auth/v1beta1/query_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/auth/v1beta1/query_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/bank/v1beta1/bank_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/bank/v1beta1/bank_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/bank/v1beta1/bank_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/bank/v1beta1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/bank/v1beta1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/bank/v1beta1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/bank/v1beta1/query_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/bank/v1beta1/query_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/bank/v1beta1/query_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/bank/v1beta1/query_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/bank/v1beta1/tx_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/bank/v1beta1/tx_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/bank/v1beta1/tx_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/bank/v1beta1/tx_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/abci/v1beta1/abci_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/abci/v1beta1/abci_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/base/abci/v1beta1/abci_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/kv/v1beta1/kv_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/kv/v1beta1/kv_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/base/kv/v1beta1/kv_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/query/v1beta1/pagination_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/query/v1beta1/pagination_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/base/query/v1beta1/pagination_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/reflection/v1beta1/reflection_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/base/reflection/v1beta1/reflection_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/reflection/v1beta1/reflection_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/base/reflection/v1beta1/reflection_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/snapshots/v1beta1/snapshot_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/snapshots/v1beta1/snapshot_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/base/snapshots/v1beta1/snapshot_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/store/v1beta1/commit_info_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/store/v1beta1/commit_info_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/base/store/v1beta1/commit_info_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/store/v1beta1/snapshot_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/store/v1beta1/snapshot_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/base/store/v1beta1/snapshot_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/tendermint/v1beta1/query_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/base/tendermint/v1beta1/query_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/tendermint/v1beta1/query_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/base/tendermint/v1beta1/query_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/v1beta1/coin_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/base/v1beta1/coin_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/base/v1beta1/coin_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/capability/v1beta1/capability_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/capability/v1beta1/capability_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/capability/v1beta1/capability_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/capability/v1beta1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/capability/v1beta1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/capability/v1beta1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/crisis/v1beta1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/crisis/v1beta1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/crisis/v1beta1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/crisis/v1beta1/tx_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/crisis/v1beta1/tx_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/crisis/v1beta1/tx_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/crisis/v1beta1/tx_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/crypto/ed25519/keys_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/crypto/ed25519/keys_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/crypto/ed25519/keys_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/crypto/multisig/keys_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/crypto/multisig/keys_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/crypto/multisig/keys_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/crypto/multisig/v1beta1/multisig_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/crypto/multisig/v1beta1/multisig_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/crypto/multisig/v1beta1/multisig_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/crypto/secp256k1/keys_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/crypto/secp256k1/keys_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/crypto/secp256k1/keys_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/distribution/v1beta1/distribution_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/distribution/v1beta1/distribution_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/distribution/v1beta1/distribution_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/distribution/v1beta1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/distribution/v1beta1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/distribution/v1beta1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/distribution/v1beta1/query_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/distribution/v1beta1/query_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/distribution/v1beta1/query_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/distribution/v1beta1/query_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/distribution/v1beta1/tx_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/distribution/v1beta1/tx_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/distribution/v1beta1/tx_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/distribution/v1beta1/tx_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/evidence/v1beta1/evidence_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/evidence/v1beta1/evidence_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/evidence/v1beta1/evidence_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/evidence/v1beta1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/evidence/v1beta1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/evidence/v1beta1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/evidence/v1beta1/query_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/evidence/v1beta1/query_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/evidence/v1beta1/query_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/evidence/v1beta1/query_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/evidence/v1beta1/tx_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/evidence/v1beta1/tx_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/evidence/v1beta1/tx_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/evidence/v1beta1/tx_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/genutil/v1beta1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/genutil/v1beta1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/genutil/v1beta1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/gov/v1beta1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/gov/v1beta1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/gov/v1beta1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/gov/v1beta1/gov_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/gov/v1beta1/gov_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/gov/v1beta1/gov_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/gov/v1beta1/query_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/gov/v1beta1/query_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/gov/v1beta1/query_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/gov/v1beta1/query_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/gov/v1beta1/tx_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/gov/v1beta1/tx_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/gov/v1beta1/tx_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/gov/v1beta1/tx_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/mint/v1beta1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/mint/v1beta1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/mint/v1beta1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/mint/v1beta1/mint_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/mint/v1beta1/mint_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/mint/v1beta1/mint_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/mint/v1beta1/query_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/mint/v1beta1/query_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/mint/v1beta1/query_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/mint/v1beta1/query_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/params/v1beta1/params_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/params/v1beta1/params_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/params/v1beta1/params_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/params/v1beta1/query_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/params/v1beta1/query_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/params/v1beta1/query_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/params/v1beta1/query_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/slashing/v1beta1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/slashing/v1beta1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/slashing/v1beta1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/slashing/v1beta1/query_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/slashing/v1beta1/query_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/slashing/v1beta1/query_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/slashing/v1beta1/query_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/slashing/v1beta1/slashing_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/slashing/v1beta1/slashing_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/slashing/v1beta1/slashing_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/slashing/v1beta1/tx_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/slashing/v1beta1/tx_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/slashing/v1beta1/tx_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/slashing/v1beta1/tx_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/staking/v1beta1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/staking/v1beta1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/staking/v1beta1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/staking/v1beta1/query_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/staking/v1beta1/query_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/staking/v1beta1/query_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/staking/v1beta1/query_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/staking/v1beta1/staking_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/staking/v1beta1/staking_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/staking/v1beta1/staking_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/staking/v1beta1/tx_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/staking/v1beta1/tx_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/staking/v1beta1/tx_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/staking/v1beta1/tx_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/tx/signing/v1beta1/signing_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/tx/signing/v1beta1/signing_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/tx/signing/v1beta1/signing_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/tx/v1beta1/service_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/tx/v1beta1/service_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/tx/v1beta1/service_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/tx/v1beta1/service_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/tx/v1beta1/tx_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/tx/v1beta1/tx_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/tx/v1beta1/tx_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/upgrade/v1beta1/query_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/upgrade/v1beta1/query_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/upgrade/v1beta1/query_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/upgrade/v1beta1/query_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/upgrade/v1beta1/upgrade_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/upgrade/v1beta1/upgrade_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/upgrade/v1beta1/upgrade_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/vesting/v1beta1/tx_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/vesting/v1beta1/tx_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/vesting/v1beta1/tx_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/vesting/v1beta1/tx_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos/vesting/v1beta1/vesting_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos/vesting/v1beta1/vesting_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos/vesting/v1beta1/vesting_pb.js -------------------------------------------------------------------------------- /src/main/proto/cosmos_proto/cosmos_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/cosmos_proto/cosmos_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/cosmos_proto/cosmos_pb.js -------------------------------------------------------------------------------- /src/main/proto/gogoproto/gogo_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/gogoproto/gogo_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/gogoproto/gogo_pb.js -------------------------------------------------------------------------------- /src/main/proto/google/api/annotations_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/google/api/annotations_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/google/api/annotations_pb.js -------------------------------------------------------------------------------- /src/main/proto/google/api/http_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/google/api/http_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/google/api/http_pb.js -------------------------------------------------------------------------------- /src/main/proto/google/api/httpbody_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/google/api/httpbody_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/google/api/httpbody_pb.js -------------------------------------------------------------------------------- /src/main/proto/google/protobuf/any_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/google/protobuf/any_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/google/protobuf/any_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/deposit/v1/deposit_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/deposit/v1/deposit_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/deposit/v1/deposit_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/deposit/v1/events_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/deposit/v1/events_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/deposit/v1/events_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/deposit/v1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/deposit/v1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/deposit/v1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/deposit/v1/msg_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/deposit/v1/msg_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/deposit/v1/msg_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/deposit/v1/params_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/deposit/v1/params_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/deposit/v1/params_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/deposit/v1/querier_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/deposit/v1/querier_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/deposit/v1/querier_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/deposit/v1/querier_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/node/v1/events_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/node/v1/events_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/node/v1/events_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/node/v1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/node/v1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/node/v1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/node/v1/msg_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/node/v1/msg_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/node/v1/msg_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/node/v1/msg_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/node/v1/node_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/node/v1/node_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/node/v1/node_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/node/v1/params_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/node/v1/params_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/node/v1/params_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/node/v1/querier_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/node/v1/querier_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/node/v1/querier_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/node/v1/querier_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/plan/v1/events_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/plan/v1/events_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/plan/v1/events_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/plan/v1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/plan/v1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/plan/v1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/plan/v1/msg_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/plan/v1/msg_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/plan/v1/msg_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/plan/v1/msg_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/plan/v1/params_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/plan/v1/params_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/plan/v1/params_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/plan/v1/plan_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/plan/v1/plan_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/plan/v1/plan_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/plan/v1/querier_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/plan/v1/querier_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/plan/v1/querier_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/plan/v1/querier_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/provider/v1/events_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/provider/v1/events_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/provider/v1/events_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/provider/v1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/provider/v1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/provider/v1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/provider/v1/msg_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/provider/v1/msg_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/provider/v1/msg_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/provider/v1/msg_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/provider/v1/params_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/provider/v1/params_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/provider/v1/params_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/provider/v1/provider_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/provider/v1/provider_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/provider/v1/provider_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/provider/v1/querier_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/provider/v1/querier_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/provider/v1/querier_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/provider/v1/querier_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/events_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/events_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/session/v1/events_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/session/v1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/msg_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/session/v1/msg_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/msg_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/session/v1/msg_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/params_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/params_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/session/v1/params_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/proof_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/proof_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/session/v1/proof_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/querier_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/session/v1/querier_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/querier_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/session/v1/querier_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/session_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/session/v1/session_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/session/v1/session_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/events_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/events_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/subscription/v1/events_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/subscription/v1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/msg_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/subscription/v1/msg_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/msg_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/subscription/v1/msg_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/params_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/params_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/subscription/v1/params_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/querier_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/subscription/v1/querier_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/querier_grpc_web_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/subscription/v1/querier_grpc_web_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/querier_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/subscription/v1/querier_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/quota_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/quota_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/subscription/v1/quota_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/subscription_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/subscription/v1/subscription_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/subscription/v1/subscription_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/swap/v1/events_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/swap/v1/events_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/swap/v1/events_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/swap/v1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/swap/v1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/swap/v1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/swap/v1/msg_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/swap/v1/msg_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/swap/v1/msg_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/swap/v1/msg_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/swap/v1/params_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/swap/v1/params_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/swap/v1/params_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/swap/v1/querier_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/swap/v1/querier_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/swap/v1/querier_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/swap/v1/querier_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/swap/v1/swap_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/swap/v1/swap_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/swap/v1/swap_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/types/v1/bandwidth_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/types/v1/bandwidth_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/types/v1/bandwidth_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/types/v1/status_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/types/v1/status_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/types/v1/status_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/vpn/v1/genesis_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/vpn/v1/genesis_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/vpn/v1/genesis_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/vpn/v1/msg_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/vpn/v1/msg_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/vpn/v1/msg_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/vpn/v1/params_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/vpn/v1/params_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/vpn/v1/params_pb.js -------------------------------------------------------------------------------- /src/main/proto/sentinel/vpn/v1/querier_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/sentinel/vpn/v1/querier_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/sentinel/vpn/v1/querier_pb.js -------------------------------------------------------------------------------- /src/main/proto/tendermint/abci/types_grpc_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/tendermint/abci/types_grpc_pb.js -------------------------------------------------------------------------------- /src/main/proto/tendermint/abci/types_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/tendermint/abci/types_pb.js -------------------------------------------------------------------------------- /src/main/proto/tendermint/crypto/keys_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/tendermint/crypto/keys_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/tendermint/crypto/keys_pb.js -------------------------------------------------------------------------------- /src/main/proto/tendermint/crypto/proof_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/tendermint/crypto/proof_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/tendermint/crypto/proof_pb.js -------------------------------------------------------------------------------- /src/main/proto/tendermint/libs/bits/types_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/tendermint/libs/bits/types_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/tendermint/libs/bits/types_pb.js -------------------------------------------------------------------------------- /src/main/proto/tendermint/p2p/types_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/tendermint/p2p/types_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/tendermint/p2p/types_pb.js -------------------------------------------------------------------------------- /src/main/proto/tendermint/types/block_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/tendermint/types/block_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/tendermint/types/block_pb.js -------------------------------------------------------------------------------- /src/main/proto/tendermint/types/evidence_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/tendermint/types/evidence_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/tendermint/types/evidence_pb.js -------------------------------------------------------------------------------- /src/main/proto/tendermint/types/params_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/tendermint/types/params_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/tendermint/types/params_pb.js -------------------------------------------------------------------------------- /src/main/proto/tendermint/types/types_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/tendermint/types/types_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/tendermint/types/types_pb.js -------------------------------------------------------------------------------- /src/main/proto/tendermint/types/validator_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/tendermint/types/validator_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/tendermint/types/validator_pb.js -------------------------------------------------------------------------------- /src/main/proto/tendermint/version/types_grpc_pb.js: -------------------------------------------------------------------------------- 1 | // GENERATED CODE -- NO SERVICES IN PROTO 2 | -------------------------------------------------------------------------------- /src/main/proto/tendermint/version/types_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/proto/tendermint/version/types_pb.js -------------------------------------------------------------------------------- /src/main/rest/dvpn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/rest/dvpn.js -------------------------------------------------------------------------------- /src/main/rest/keyring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/rest/keyring.js -------------------------------------------------------------------------------- /src/main/services/AccountService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/services/AccountService.js -------------------------------------------------------------------------------- /src/main/services/CustomClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/services/CustomClient.js -------------------------------------------------------------------------------- /src/main/services/LoginService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/services/LoginService.js -------------------------------------------------------------------------------- /src/main/services/NodeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/services/NodeService.js -------------------------------------------------------------------------------- /src/main/services/SessionService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/services/SessionService.js -------------------------------------------------------------------------------- /src/main/services/SignService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/services/SignService.js -------------------------------------------------------------------------------- /src/main/services/SubscriptionService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/services/SubscriptionService.js -------------------------------------------------------------------------------- /src/main/services/TransactionService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/services/TransactionService.js -------------------------------------------------------------------------------- /src/main/services/СonnectionService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/services/СonnectionService.js -------------------------------------------------------------------------------- /src/main/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/store/store.js -------------------------------------------------------------------------------- /src/main/utils/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/utils/errorHandler.js -------------------------------------------------------------------------------- /src/main/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/main/utils/logger.js -------------------------------------------------------------------------------- /src/shared/channel-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/shared/channel-types.js -------------------------------------------------------------------------------- /src/shared/checkCountryName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/shared/checkCountryName.js -------------------------------------------------------------------------------- /src/shared/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/src/shared/constants.js -------------------------------------------------------------------------------- /tests/unit/example.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/tests/unit/example.spec.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/vue.config.js -------------------------------------------------------------------------------- /winehq.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/winehq.key -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solarlabsteam/sentinel-dvpn-desktop/HEAD/yarn.lock --------------------------------------------------------------------------------