Skip to content

Instantly share code, notes, and snippets.

@bogdan
Created April 19, 2022 12:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bogdan/ac75bef59ff4579fc88ce769ecc7db12 to your computer and use it in GitHub Desktop.
Save bogdan/ac75bef59ff4579fc88ce769ecc7db12 to your computer and use it in GitHub Desktop.
backend/lib/routes/domain/claim-signature/get.ts|7 col 3| isEvmDomain,
backend/lib/routes/domain/claim-signature/get.ts|33 col 8| if (!isEvmDomain(domain.name)) {
backend/lib/routes/resellers/v1/TxsController.ts|67 col 3| isEvmDomain,
backend/lib/routes/resellers/v1/TxsController.ts|244 col 10| if (!isEvmDomain(domainName)) {
client/actions/transactionActions.ts|11 col 21| import {Blockchain, isEvmDomain, isZilDomain} from '@shared/blockchain';
client/actions/transactionActions.ts|110 col 26| if (!rawTransaction && isEvmDomain(domain)) {
client/components/guest-manage/SelfManageDomain.tsx|34 col 9| import {isEvmDomain, isZilDomain} from '@shared/blockchain';
client/components/guest-manage/SelfManageDomain.tsx|194 col 9| if (isEvmDomain(domain)) {
client/components/manage-new/ManagePages.tsx|38 col 21| import {Blockchain, isEvmDomain, isZilDomain} from '@shared/blockchain';
client/components/manage-new/ManagePages.tsx|255 col 9| if (isEvmDomain(domainName)) {
client/components/manage-new/ManagePages.tsx|745 col 8| {isEvmDomain(manage.domain?.name || '') && (
client/components/manage-new/SellDomain/index.tsx|18 col 9| import {isEvmDomain} from '@shared/blockchain';
client/components/manage-new/SellDomain/index.tsx|383 col 20| isEvmBlockchain: isEvmDomain(manage.domain?.name ?? ''),
client/components/manage/record-sections/SellDomain.tsx|22 col 9| import {isEvmDomain} from '@shared/blockchain';
client/components/manage/record-sections/SellDomain.tsx|26 col 20| isEvmBlockchain: isEvmDomain(manage.domain?.name ?? ''),
client/pages/mint/index.page.tsx|36 col 21| import {Blockchain, isEvmDomain, isZilDomain} from '@shared/blockchain';
client/pages/mint/index.page.tsx|155 col 50| } else if (newDomainsToMint.every((d) => isEvmDomain(d))) {
client/pages/template-builder.page.tsx|45 col 9| import {isEvmDomain} from '@shared/blockchain';
client/pages/template-builder.page.tsx|148 col 11| if (isEvmDomain(query.domain)) {
client/pages/template-builder.page.tsx|265 col 13| if (isEvmDomain(domain)) {
shared/src/blockchain/index.ts|71 col 14| export const isEvmDomain = (domain: string): boolean => {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment