├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .gitlab-ci.yml ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── back ├── namespaces │ ├── prod-namespace.yaml │ └── staging-namespace.yaml ├── node_watcher │ ├── .dockerignore │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── README.md │ ├── datamodel.prisma │ ├── docker-compose.yml │ ├── images │ │ ├── 1.gcloudauthlist.png │ │ ├── 10.k8check.png │ │ ├── 3.dockerbuild.png │ │ ├── 4.imagelist.png │ │ ├── 5.dockertag.png │ │ ├── 6.dockerpush.png │ │ ├── 7.copysha.png │ │ ├── 8.pastesha.png │ │ └── 9.k8create.png │ ├── kubernetes │ │ ├── nodewatcher-deployment-staging.yaml │ │ ├── nodewatcher-service.yaml │ │ ├── nomidotwatcher-job.yaml │ │ ├── nomidotwatcher-last-50k-job.yaml │ │ └── v1.5 │ │ │ ├── nodewatcher-deployment-staging.yaml │ │ │ ├── nodewatcher-service.yaml │ │ │ ├── nomidotwatcher-job.yaml │ │ │ └── nomidotwatcher-last-50k-job.yaml │ ├── package.json │ ├── prisma.yml │ ├── src │ │ ├── generated │ │ │ └── prisma-client │ │ │ │ ├── index.ts │ │ │ │ └── prisma-schema.ts │ │ ├── index.ts │ │ ├── nodeWatcher.ts │ │ ├── tasks │ │ │ ├── createBlockNumber.ts │ │ │ ├── createCouncil.ts │ │ │ ├── createEra.ts │ │ │ ├── createHeartbeat.ts │ │ │ ├── createMotion.ts │ │ │ ├── createMotionStatus.ts │ │ │ ├── createNominationAndValidators.ts │ │ │ ├── createOfflineValidator.ts │ │ │ ├── createPreimage.ts │ │ │ ├── createProposal.ts │ │ │ ├── createProposalStatus.ts │ │ │ ├── createReferendum.ts │ │ │ ├── createReferendumStatus.ts │ │ │ ├── createReward.ts │ │ │ ├── createSession.ts │ │ │ ├── createSlashing.ts │ │ │ ├── createStake.ts │ │ │ ├── createTotalIssuance.ts │ │ │ ├── createTreasury.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── util │ │ │ ├── filterEvents.ts │ │ │ ├── getReferendumStatus.ts │ │ │ └── statuses.ts │ └── tsconfig.json └── server │ ├── .dockerignore │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── README.md │ ├── kubernetes │ ├── loadbalancer.yaml │ ├── nodewatcher-server-ingress.yaml │ ├── nodewatcher-server-service.yaml │ └── server-deployment.yaml │ ├── package.json │ ├── prisma │ ├── datamodel.prisma │ ├── prisma.yml │ └── seed.graphql │ ├── src │ ├── generated │ │ ├── prisma-client │ │ │ ├── index.ts │ │ │ └── prisma-schema.ts │ │ └── prisma.graphql │ ├── index.ts │ ├── resolvers │ │ ├── query.ts │ │ └── subscription.ts │ ├── schema.graphql │ └── types.ts │ └── tsconfig.json ├── docs └── architecture.md ├── front ├── context │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── AccountsContext.tsx │ │ ├── AlertsContext.tsx │ │ ├── ApiPromiseContext.tsx │ │ ├── ApiRxContext.tsx │ │ ├── HealthContext.tsx │ │ ├── SystemContext.tsx │ │ ├── TxQueueContext.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── util │ │ │ ├── index.ts │ │ │ ├── provider.ts │ │ │ ├── ssr.ts │ │ │ ├── stashes.ts │ │ │ ├── ui.tsx │ │ │ └── useEffect.ts │ └── tsconfig.json ├── gatsby │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── README.md │ ├── design-system.d.ts │ ├── gatsby-browser.js │ ├── gatsby-config.js │ ├── gatsby-node.js │ ├── gatsby-ssr.js │ ├── gatsby-wrappers.js │ ├── package.json │ ├── src │ │ ├── apollo.ts │ │ ├── components │ │ │ ├── AccountsDropdown.tsx │ │ │ ├── AddressSummary │ │ │ │ ├── AddressSummary.styles.ts │ │ │ │ ├── AddressSummary.tsx │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── Balance │ │ │ │ ├── BalanceDisplay.tsx │ │ │ │ └── index.tsx │ │ │ ├── BondingModal.tsx │ │ │ ├── Button.tsx │ │ │ ├── Cart │ │ │ │ ├── CartItems.tsx │ │ │ │ └── index.tsx │ │ │ ├── Layout │ │ │ │ ├── Header │ │ │ │ │ ├── Header.tsx │ │ │ │ │ ├── HeaderItem.tsx │ │ │ │ │ ├── Subheaders │ │ │ │ │ │ ├── BlockHeader.tsx │ │ │ │ │ │ ├── EraHeader.tsx │ │ │ │ │ │ ├── SessionHeader.tsx │ │ │ │ │ │ ├── StakingHeader.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── Layout.tsx │ │ │ │ └── index.ts │ │ │ ├── NominationDetails.tsx │ │ │ ├── Seo │ │ │ │ ├── Seo.tsx │ │ │ │ └── index.ts │ │ │ ├── StatItem.tsx │ │ │ ├── Status.tsx │ │ │ ├── Table.tsx │ │ │ ├── Tooltip.tsx │ │ │ ├── Typography.tsx │ │ │ ├── ValidatorsTable.tsx │ │ │ ├── css.d.ts │ │ │ └── index.ts │ │ ├── images │ │ │ ├── extension.png │ │ │ └── polkadot.png │ │ ├── pages │ │ │ ├── accounts.tsx │ │ │ ├── cart.tsx │ │ │ ├── index.tsx │ │ │ └── validators.tsx │ │ ├── types.ts │ │ └── util │ │ │ ├── cartHelpers.ts │ │ │ ├── constants.ts │ │ │ ├── expectedRewardCalc.ts │ │ │ ├── graphql.ts │ │ │ ├── index.ts │ │ │ ├── stakingHelpers.ts │ │ │ ├── validateExtrinsic.ts │ │ │ └── validators.ts │ └── tsconfig.json └── kubernetes │ └── staging │ ├── frontend-deployment.yaml │ ├── loadbalancer.yaml │ └── namespace.yaml ├── lerna.json ├── package.json ├── tsconfig.json ├── validator-info ├── README.md ├── images │ ├── nomi-guide-02-enter-info.png │ └── nomi-guide-03-verify-signature.png └── validatorinfo.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/README.md -------------------------------------------------------------------------------- /back/namespaces/prod-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/namespaces/prod-namespace.yaml -------------------------------------------------------------------------------- /back/namespaces/staging-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/namespaces/staging-namespace.yaml -------------------------------------------------------------------------------- /back/node_watcher/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /back/node_watcher/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/CHANGELOG.md -------------------------------------------------------------------------------- /back/node_watcher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/Dockerfile -------------------------------------------------------------------------------- /back/node_watcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/README.md -------------------------------------------------------------------------------- /back/node_watcher/datamodel.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/datamodel.prisma -------------------------------------------------------------------------------- /back/node_watcher/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/docker-compose.yml -------------------------------------------------------------------------------- /back/node_watcher/images/1.gcloudauthlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/images/1.gcloudauthlist.png -------------------------------------------------------------------------------- /back/node_watcher/images/10.k8check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/images/10.k8check.png -------------------------------------------------------------------------------- /back/node_watcher/images/3.dockerbuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/images/3.dockerbuild.png -------------------------------------------------------------------------------- /back/node_watcher/images/4.imagelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/images/4.imagelist.png -------------------------------------------------------------------------------- /back/node_watcher/images/5.dockertag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/images/5.dockertag.png -------------------------------------------------------------------------------- /back/node_watcher/images/6.dockerpush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/images/6.dockerpush.png -------------------------------------------------------------------------------- /back/node_watcher/images/7.copysha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/images/7.copysha.png -------------------------------------------------------------------------------- /back/node_watcher/images/8.pastesha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/images/8.pastesha.png -------------------------------------------------------------------------------- /back/node_watcher/images/9.k8create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/images/9.k8create.png -------------------------------------------------------------------------------- /back/node_watcher/kubernetes/nodewatcher-deployment-staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/kubernetes/nodewatcher-deployment-staging.yaml -------------------------------------------------------------------------------- /back/node_watcher/kubernetes/nodewatcher-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/kubernetes/nodewatcher-service.yaml -------------------------------------------------------------------------------- /back/node_watcher/kubernetes/nomidotwatcher-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/kubernetes/nomidotwatcher-job.yaml -------------------------------------------------------------------------------- /back/node_watcher/kubernetes/nomidotwatcher-last-50k-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/kubernetes/nomidotwatcher-last-50k-job.yaml -------------------------------------------------------------------------------- /back/node_watcher/kubernetes/v1.5/nodewatcher-deployment-staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/kubernetes/v1.5/nodewatcher-deployment-staging.yaml -------------------------------------------------------------------------------- /back/node_watcher/kubernetes/v1.5/nodewatcher-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/kubernetes/v1.5/nodewatcher-service.yaml -------------------------------------------------------------------------------- /back/node_watcher/kubernetes/v1.5/nomidotwatcher-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/kubernetes/v1.5/nomidotwatcher-job.yaml -------------------------------------------------------------------------------- /back/node_watcher/kubernetes/v1.5/nomidotwatcher-last-50k-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/kubernetes/v1.5/nomidotwatcher-last-50k-job.yaml -------------------------------------------------------------------------------- /back/node_watcher/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/package.json -------------------------------------------------------------------------------- /back/node_watcher/prisma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/prisma.yml -------------------------------------------------------------------------------- /back/node_watcher/src/generated/prisma-client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/generated/prisma-client/index.ts -------------------------------------------------------------------------------- /back/node_watcher/src/generated/prisma-client/prisma-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/generated/prisma-client/prisma-schema.ts -------------------------------------------------------------------------------- /back/node_watcher/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/index.ts -------------------------------------------------------------------------------- /back/node_watcher/src/nodeWatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/nodeWatcher.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createBlockNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createBlockNumber.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createCouncil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createCouncil.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createEra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createEra.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createHeartbeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createHeartbeat.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createMotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createMotion.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createMotionStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createMotionStatus.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createNominationAndValidators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createNominationAndValidators.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createOfflineValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createOfflineValidator.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createPreimage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createPreimage.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createProposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createProposal.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createProposalStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createProposalStatus.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createReferendum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createReferendum.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createReferendumStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createReferendumStatus.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createReward.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createReward.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createSession.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createSlashing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createSlashing.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createStake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createStake.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createTotalIssuance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createTotalIssuance.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/createTreasury.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/createTreasury.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/index.ts -------------------------------------------------------------------------------- /back/node_watcher/src/tasks/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/tasks/types.ts -------------------------------------------------------------------------------- /back/node_watcher/src/util/filterEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/util/filterEvents.ts -------------------------------------------------------------------------------- /back/node_watcher/src/util/getReferendumStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/util/getReferendumStatus.ts -------------------------------------------------------------------------------- /back/node_watcher/src/util/statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/src/util/statuses.ts -------------------------------------------------------------------------------- /back/node_watcher/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/node_watcher/tsconfig.json -------------------------------------------------------------------------------- /back/server/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /back/server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/.gitignore -------------------------------------------------------------------------------- /back/server/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/.graphqlconfig.yml -------------------------------------------------------------------------------- /back/server/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/CHANGELOG.md -------------------------------------------------------------------------------- /back/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/Dockerfile -------------------------------------------------------------------------------- /back/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/README.md -------------------------------------------------------------------------------- /back/server/kubernetes/loadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/kubernetes/loadbalancer.yaml -------------------------------------------------------------------------------- /back/server/kubernetes/nodewatcher-server-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/kubernetes/nodewatcher-server-ingress.yaml -------------------------------------------------------------------------------- /back/server/kubernetes/nodewatcher-server-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/kubernetes/nodewatcher-server-service.yaml -------------------------------------------------------------------------------- /back/server/kubernetes/server-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/kubernetes/server-deployment.yaml -------------------------------------------------------------------------------- /back/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/package.json -------------------------------------------------------------------------------- /back/server/prisma/datamodel.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/prisma/datamodel.prisma -------------------------------------------------------------------------------- /back/server/prisma/prisma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/prisma/prisma.yml -------------------------------------------------------------------------------- /back/server/prisma/seed.graphql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /back/server/src/generated/prisma-client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/src/generated/prisma-client/index.ts -------------------------------------------------------------------------------- /back/server/src/generated/prisma-client/prisma-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/src/generated/prisma-client/prisma-schema.ts -------------------------------------------------------------------------------- /back/server/src/generated/prisma.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/src/generated/prisma.graphql -------------------------------------------------------------------------------- /back/server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/src/index.ts -------------------------------------------------------------------------------- /back/server/src/resolvers/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/src/resolvers/query.ts -------------------------------------------------------------------------------- /back/server/src/resolvers/subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/src/resolvers/subscription.ts -------------------------------------------------------------------------------- /back/server/src/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/src/schema.graphql -------------------------------------------------------------------------------- /back/server/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/src/types.ts -------------------------------------------------------------------------------- /back/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/back/server/tsconfig.json -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /front/context/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/CHANGELOG.md -------------------------------------------------------------------------------- /front/context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/LICENSE -------------------------------------------------------------------------------- /front/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/README.md -------------------------------------------------------------------------------- /front/context/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/package.json -------------------------------------------------------------------------------- /front/context/src/AccountsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/AccountsContext.tsx -------------------------------------------------------------------------------- /front/context/src/AlertsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/AlertsContext.tsx -------------------------------------------------------------------------------- /front/context/src/ApiPromiseContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/ApiPromiseContext.tsx -------------------------------------------------------------------------------- /front/context/src/ApiRxContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/ApiRxContext.tsx -------------------------------------------------------------------------------- /front/context/src/HealthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/HealthContext.tsx -------------------------------------------------------------------------------- /front/context/src/SystemContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/SystemContext.tsx -------------------------------------------------------------------------------- /front/context/src/TxQueueContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/TxQueueContext.tsx -------------------------------------------------------------------------------- /front/context/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/index.ts -------------------------------------------------------------------------------- /front/context/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/types.ts -------------------------------------------------------------------------------- /front/context/src/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/util/index.ts -------------------------------------------------------------------------------- /front/context/src/util/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/util/provider.ts -------------------------------------------------------------------------------- /front/context/src/util/ssr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/util/ssr.ts -------------------------------------------------------------------------------- /front/context/src/util/stashes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/util/stashes.ts -------------------------------------------------------------------------------- /front/context/src/util/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/util/ui.tsx -------------------------------------------------------------------------------- /front/context/src/util/useEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/src/util/useEffect.ts -------------------------------------------------------------------------------- /front/context/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/context/tsconfig.json -------------------------------------------------------------------------------- /front/gatsby/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/CHANGELOG.md -------------------------------------------------------------------------------- /front/gatsby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/Dockerfile -------------------------------------------------------------------------------- /front/gatsby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/README.md -------------------------------------------------------------------------------- /front/gatsby/design-system.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@substrate/design-system'; 2 | -------------------------------------------------------------------------------- /front/gatsby/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/gatsby-browser.js -------------------------------------------------------------------------------- /front/gatsby/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/gatsby-config.js -------------------------------------------------------------------------------- /front/gatsby/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/gatsby-node.js -------------------------------------------------------------------------------- /front/gatsby/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/gatsby-ssr.js -------------------------------------------------------------------------------- /front/gatsby/gatsby-wrappers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/gatsby-wrappers.js -------------------------------------------------------------------------------- /front/gatsby/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/package.json -------------------------------------------------------------------------------- /front/gatsby/src/apollo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/apollo.ts -------------------------------------------------------------------------------- /front/gatsby/src/components/AccountsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/AccountsDropdown.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/AddressSummary/AddressSummary.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/AddressSummary/AddressSummary.styles.ts -------------------------------------------------------------------------------- /front/gatsby/src/components/AddressSummary/AddressSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/AddressSummary/AddressSummary.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/AddressSummary/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/AddressSummary/index.ts -------------------------------------------------------------------------------- /front/gatsby/src/components/AddressSummary/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/AddressSummary/types.ts -------------------------------------------------------------------------------- /front/gatsby/src/components/Balance/BalanceDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Balance/BalanceDisplay.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Balance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Balance/index.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/BondingModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/BondingModal.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Button.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Cart/CartItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Cart/CartItems.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Cart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Cart/index.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Layout/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Layout/Header/Header.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Layout/Header/HeaderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Layout/Header/HeaderItem.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Layout/Header/Subheaders/BlockHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Layout/Header/Subheaders/BlockHeader.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Layout/Header/Subheaders/EraHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Layout/Header/Subheaders/EraHeader.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Layout/Header/Subheaders/SessionHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Layout/Header/Subheaders/SessionHeader.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Layout/Header/Subheaders/StakingHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Layout/Header/Subheaders/StakingHeader.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Layout/Header/Subheaders/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Layout/Header/Subheaders/index.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Layout/Header/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Layout/Header/index.ts -------------------------------------------------------------------------------- /front/gatsby/src/components/Layout/Header/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Layout/Header/types.ts -------------------------------------------------------------------------------- /front/gatsby/src/components/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Layout/Layout.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Layout/index.ts -------------------------------------------------------------------------------- /front/gatsby/src/components/NominationDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/NominationDetails.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Seo/Seo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Seo/Seo.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Seo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Seo/index.ts -------------------------------------------------------------------------------- /front/gatsby/src/components/StatItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/StatItem.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Status.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Table.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Tooltip.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/Typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/Typography.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/ValidatorsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/ValidatorsTable.tsx -------------------------------------------------------------------------------- /front/gatsby/src/components/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/css.d.ts -------------------------------------------------------------------------------- /front/gatsby/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/components/index.ts -------------------------------------------------------------------------------- /front/gatsby/src/images/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/images/extension.png -------------------------------------------------------------------------------- /front/gatsby/src/images/polkadot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/images/polkadot.png -------------------------------------------------------------------------------- /front/gatsby/src/pages/accounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/pages/accounts.tsx -------------------------------------------------------------------------------- /front/gatsby/src/pages/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/pages/cart.tsx -------------------------------------------------------------------------------- /front/gatsby/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/pages/index.tsx -------------------------------------------------------------------------------- /front/gatsby/src/pages/validators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/pages/validators.tsx -------------------------------------------------------------------------------- /front/gatsby/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/types.ts -------------------------------------------------------------------------------- /front/gatsby/src/util/cartHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/util/cartHelpers.ts -------------------------------------------------------------------------------- /front/gatsby/src/util/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/util/constants.ts -------------------------------------------------------------------------------- /front/gatsby/src/util/expectedRewardCalc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/util/expectedRewardCalc.ts -------------------------------------------------------------------------------- /front/gatsby/src/util/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/util/graphql.ts -------------------------------------------------------------------------------- /front/gatsby/src/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/util/index.ts -------------------------------------------------------------------------------- /front/gatsby/src/util/stakingHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/util/stakingHelpers.ts -------------------------------------------------------------------------------- /front/gatsby/src/util/validateExtrinsic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/util/validateExtrinsic.ts -------------------------------------------------------------------------------- /front/gatsby/src/util/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/src/util/validators.ts -------------------------------------------------------------------------------- /front/gatsby/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/gatsby/tsconfig.json -------------------------------------------------------------------------------- /front/kubernetes/staging/frontend-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/kubernetes/staging/frontend-deployment.yaml -------------------------------------------------------------------------------- /front/kubernetes/staging/loadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/kubernetes/staging/loadbalancer.yaml -------------------------------------------------------------------------------- /front/kubernetes/staging/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/front/kubernetes/staging/namespace.yaml -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /validator-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/validator-info/README.md -------------------------------------------------------------------------------- /validator-info/images/nomi-guide-02-enter-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/validator-info/images/nomi-guide-02-enter-info.png -------------------------------------------------------------------------------- /validator-info/images/nomi-guide-03-verify-signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/validator-info/images/nomi-guide-03-verify-signature.png -------------------------------------------------------------------------------- /validator-info/validatorinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/validator-info/validatorinfo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/Nomidot/HEAD/yarn.lock --------------------------------------------------------------------------------