@tokenoftrust/storefront-runner 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +58 -0
- package/README.md +40 -0
- package/apps/storefront/.dev.vars.example +41 -0
- package/apps/storefront/.env.example +24 -0
- package/apps/storefront/astro.config.mjs +245 -0
- package/apps/storefront/env.d.ts +155 -0
- package/apps/storefront/lib/ensure-preview-reconcile-secret.sh +31 -0
- package/apps/storefront/lib/resolve-cf-token.sh +48 -0
- package/apps/storefront/lib/resolve-tot-credentials.sh +69 -0
- package/apps/storefront/migrations/0000_baseline.sql +54 -0
- package/apps/storefront/migrations/0001_products_fts.sql +9 -0
- package/apps/storefront/migrations/README.md +54 -0
- package/apps/storefront/migrations/meta/0000_snapshot.json +347 -0
- package/apps/storefront/migrations/meta/0001_snapshot.json +347 -0
- package/apps/storefront/migrations/meta/_journal.json +20 -0
- package/apps/storefront/package.json +41 -0
- package/apps/storefront/public/brand/northwind-logo-dark.svg +4 -0
- package/apps/storefront/public/brand/northwind-logo-light.svg +4 -0
- package/apps/storefront/public/brand/northwind-og.svg +13 -0
- package/apps/storefront/public/favicon.svg +5 -0
- package/apps/storefront/public/js/dashboard-team.js +147 -0
- package/apps/storefront/public/js/dashboard-vendor-search.js +115 -0
- package/apps/storefront/src/components/Badge.astro +34 -0
- package/apps/storefront/src/components/Breadcrumbs.astro +45 -0
- package/apps/storefront/src/components/CollectionCard.astro +56 -0
- package/apps/storefront/src/components/EmptyState.astro +35 -0
- package/apps/storefront/src/components/Img.astro +68 -0
- package/apps/storefront/src/components/ProductCard.astro +228 -0
- package/apps/storefront/src/components/Section.astro +39 -0
- package/apps/storefront/src/components/Seo.astro +70 -0
- package/apps/storefront/src/components/WidgetFrame.astro +34 -0
- package/apps/storefront/src/components/auth/AuthBadge.astro +44 -0
- package/apps/storefront/src/components/chrome/AnnouncementBar.astro +108 -0
- package/apps/storefront/src/components/chrome/MegaMenu.astro +26 -0
- package/apps/storefront/src/components/chrome/NavDropdown.astro +116 -0
- package/apps/storefront/src/components/chrome/SiteFooter.astro +181 -0
- package/apps/storefront/src/components/chrome/SiteHeader.astro +181 -0
- package/apps/storefront/src/components/chrome/UtilityNav.astro +79 -0
- package/apps/storefront/src/components/commerce/FoxyLoader.astro +23 -0
- package/apps/storefront/src/components/commerce/PriceDisplay.astro +91 -0
- package/apps/storefront/src/components/commerce/ProductCarousel.astro +197 -0
- package/apps/storefront/src/components/commerce/ProductGrid.astro +75 -0
- package/apps/storefront/src/components/commerce/RatingStars.astro +58 -0
- package/apps/storefront/src/components/compliance/NicotineWarning.astro +33 -0
- package/apps/storefront/src/components/home/Hero.astro +164 -0
- package/apps/storefront/src/components/islands/AgeGate.tsx +105 -0
- package/apps/storefront/src/components/islands/ImageGallery.tsx +237 -0
- package/apps/storefront/src/components/islands/IsolatedAgeGate.tsx +73 -0
- package/apps/storefront/src/components/islands/MobileNav.tsx +239 -0
- package/apps/storefront/src/components/islands/QuickView.tsx +138 -0
- package/apps/storefront/src/components/islands/RecentlyViewed.tsx +122 -0
- package/apps/storefront/src/components/islands/SavedList.tsx +99 -0
- package/apps/storefront/src/components/islands/SearchTypeahead.tsx +248 -0
- package/apps/storefront/src/components/islands/VariantSelector.tsx +378 -0
- package/apps/storefront/src/components/marketing/CardGrid.astro +72 -0
- package/apps/storefront/src/components/marketing/CodeSample.astro +20 -0
- package/apps/storefront/src/components/marketing/CtaBand.astro +24 -0
- package/apps/storefront/src/components/marketing/Faq.astro +37 -0
- package/apps/storefront/src/components/marketing/Integrations.astro +63 -0
- package/apps/storefront/src/components/marketing/MarketingBlocks.astro +53 -0
- package/apps/storefront/src/components/marketing/MarketingCtas.astro +48 -0
- package/apps/storefront/src/components/marketing/MarketingHero.astro +72 -0
- package/apps/storefront/src/components/marketing/ProofStrip.astro +37 -0
- package/apps/storefront/src/components/marketing/SplitCompare.astro +53 -0
- package/apps/storefront/src/components/marketing/Steps.astro +36 -0
- package/apps/storefront/src/components/marketing/Testimonials.astro +38 -0
- package/apps/storefront/src/components/marketing/TrustBar.astro +22 -0
- package/apps/storefront/src/components/nav/Footer.astro +148 -0
- package/apps/storefront/src/components/nav/Header.astro +190 -0
- package/apps/storefront/src/components/plp/ActiveFilters.astro +79 -0
- package/apps/storefront/src/components/plp/FacetSidebar.astro +146 -0
- package/apps/storefront/src/components/plp/Pagination.astro +99 -0
- package/apps/storefront/src/components/plp/SortSelect.astro +64 -0
- package/apps/storefront/src/config/devTenants.ts +16 -0
- package/apps/storefront/src/config/kvTenantResolver.ts +87 -0
- package/apps/storefront/src/config/resolver.ts +46 -0
- package/apps/storefront/src/config/tenants.ts +193 -0
- package/apps/storefront/src/layouts/Layout.astro +303 -0
- package/apps/storefront/src/lib/analytics/index.ts +47 -0
- package/apps/storefront/src/lib/auth/brokerAssertion.ts +136 -0
- package/apps/storefront/src/lib/auth/devAuth.ts +90 -0
- package/apps/storefront/src/lib/auth/gatePage.ts +81 -0
- package/apps/storefront/src/lib/auth/identityToken.ts +341 -0
- package/apps/storefront/src/lib/auth/loginGate.ts +107 -0
- package/apps/storefront/src/lib/auth/route.ts +146 -0
- package/apps/storefront/src/lib/auth/session.ts +203 -0
- package/apps/storefront/src/lib/auth/totAccessClient.ts +503 -0
- package/apps/storefront/src/lib/basePath.ts +41 -0
- package/apps/storefront/src/lib/cfImage.ts +55 -0
- package/apps/storefront/src/lib/chrome/model.ts +65 -0
- package/apps/storefront/src/lib/colors.ts +97 -0
- package/apps/storefront/src/lib/content-edit/client.ts +230 -0
- package/apps/storefront/src/lib/content-edit/index.ts +14 -0
- package/apps/storefront/src/lib/content-edit/route.ts +25 -0
- package/apps/storefront/src/lib/content-edit/types.ts +19 -0
- package/apps/storefront/src/lib/cspStaticHashes.ts +24 -0
- package/apps/storefront/src/lib/d1/catalog.ts +289 -0
- package/apps/storefront/src/lib/dashboard/staffAdmission.ts +43 -0
- package/apps/storefront/src/lib/dashboard/staffVendorAccess.ts +449 -0
- package/apps/storefront/src/lib/dashboard/tenantSelection.ts +136 -0
- package/apps/storefront/src/lib/dashboard/vendorQuery.ts +61 -0
- package/apps/storefront/src/lib/demoGate.ts +113 -0
- package/apps/storefront/src/lib/dev/ai-widget-client.js +127 -0
- package/apps/storefront/src/lib/dev/cliSignInCode.ts +132 -0
- package/apps/storefront/src/lib/diag/redact.ts +20 -0
- package/apps/storefront/src/lib/edgeCache.ts +128 -0
- package/apps/storefront/src/lib/email/magicLinkInviteEmail.ts +62 -0
- package/apps/storefront/src/lib/env.ts +60 -0
- package/apps/storefront/src/lib/fixtures/sampleProducts.ts +130 -0
- package/apps/storefront/src/lib/format.ts +29 -0
- package/apps/storefront/src/lib/foxyCommerce.ts +49 -0
- package/apps/storefront/src/lib/imageAttrs.ts +55 -0
- package/apps/storefront/src/lib/jsonld.ts +136 -0
- package/apps/storefront/src/lib/maintenance.ts +71 -0
- package/apps/storefront/src/lib/memoryKv.ts +32 -0
- package/apps/storefront/src/lib/messaging/messagesClient.ts +143 -0
- package/apps/storefront/src/lib/placeholder.ts +99 -0
- package/apps/storefront/src/lib/previewReload.ts +125 -0
- package/apps/storefront/src/lib/rawMarketingHtml.ts +133 -0
- package/apps/storefront/src/lib/search/index.ts +74 -0
- package/apps/storefront/src/lib/sections.ts +129 -0
- package/apps/storefront/src/lib/securityHeaders.ts +31 -0
- package/apps/storefront/src/lib/storyblok/content-model.ts +289 -0
- package/apps/storefront/src/lib/storyblok/provider.ts +524 -0
- package/apps/storefront/src/lib/tenantRouting.ts +91 -0
- package/apps/storefront/src/lib/tot/ToTClient.ts +177 -0
- package/apps/storefront/src/lib/tot/d1Client.ts +62 -0
- package/apps/storefront/src/lib/tot/query.ts +187 -0
- package/apps/storefront/src/lib/tot/totClientInterface.ts +30 -0
- package/apps/storefront/src/lib/url.ts +119 -0
- package/apps/storefront/src/lib/wishlist.ts +63 -0
- package/apps/storefront/src/middleware/index.ts +413 -0
- package/apps/storefront/src/pages/404.astro +61 -0
- package/apps/storefront/src/pages/[...slug].astro +90 -0
- package/apps/storefront/src/pages/api/auth/logout.ts +21 -0
- package/apps/storefront/src/pages/api/auth/magic-exchange.ts +107 -0
- package/apps/storefront/src/pages/api/auth/send.ts +85 -0
- package/apps/storefront/src/pages/api/auth/verify.ts +135 -0
- package/apps/storefront/src/pages/api/cache-purge.ts +44 -0
- package/apps/storefront/src/pages/api/content-edit/ai-edit.ts +64 -0
- package/apps/storefront/src/pages/api/csp-report.ts +25 -0
- package/apps/storefront/src/pages/api/dashboard/enter-vendor.ts +124 -0
- package/apps/storefront/src/pages/api/dashboard/vendor-search.ts +120 -0
- package/apps/storefront/src/pages/api/dev/cli-signin-code.ts +44 -0
- package/apps/storefront/src/pages/api/newsletter.ts +104 -0
- package/apps/storefront/src/pages/api/request-access.ts +172 -0
- package/apps/storefront/src/pages/auth/login.astro +149 -0
- package/apps/storefront/src/pages/auth/magic.astro +105 -0
- package/apps/storefront/src/pages/capabilities.astro +292 -0
- package/apps/storefront/src/pages/collections/[handle].astro +154 -0
- package/apps/storefront/src/pages/collections/index.astro +59 -0
- package/apps/storefront/src/pages/dashboard/[appDomain]/index.astro +100 -0
- package/apps/storefront/src/pages/dashboard/[appDomain]/team.astro +154 -0
- package/apps/storefront/src/pages/dashboard/index.astro +160 -0
- package/apps/storefront/src/pages/dev.astro +653 -0
- package/apps/storefront/src/pages/index.astro +290 -0
- package/apps/storefront/src/pages/llms.txt.ts +92 -0
- package/apps/storefront/src/pages/products/[handle].astro +443 -0
- package/apps/storefront/src/pages/robots.txt.ts +24 -0
- package/apps/storefront/src/pages/saved.astro +35 -0
- package/apps/storefront/src/pages/search.astro +150 -0
- package/apps/storefront/src/pages/sitemap.xml.ts +78 -0
- package/apps/storefront/src/pages/style-guide/[tenant]/[theme].astro +646 -0
- package/apps/storefront/src/pages/style-guide/[tenant]/index.astro +85 -0
- package/apps/storefront/src/pages/style-guide/index.astro +94 -0
- package/apps/storefront/src/pages/tenants/[id]/[...path].ts +57 -0
- package/apps/storefront/src/styles/global.css +277 -0
- package/apps/storefront/src/themes/reference.ts +61 -0
- package/apps/storefront/src/themes/schema.ts +111 -0
- package/apps/storefront/src/themes/tenants/index.ts +51 -0
- package/apps/storefront/tsconfig.json +16 -0
- package/apps/storefront/vitest.config.ts +22 -0
- package/apps/storefront/wrangler.toml +175 -0
- package/package.json +23 -0
- package/packages/public-runtime/LICENSE +58 -0
- package/packages/public-runtime/package.json +22 -0
- package/packages/public-runtime/src/binary-path.ts +68 -0
- package/packages/public-runtime/src/capabilities.ts +89 -0
- package/packages/public-runtime/src/catalog-api.ts +81 -0
- package/packages/public-runtime/src/catalog-d1.ts +192 -0
- package/packages/public-runtime/src/csp.ts +109 -0
- package/packages/public-runtime/src/customization-preview.ts +197 -0
- package/packages/public-runtime/src/customization-reconcile.ts +63 -0
- package/packages/public-runtime/src/customization-runtime.ts +157 -0
- package/packages/public-runtime/src/customization-scripts.ts +64 -0
- package/packages/public-runtime/src/customization-versioning.ts +95 -0
- package/packages/public-runtime/src/foxy.ts +184 -0
- package/packages/public-runtime/src/index.ts +30 -0
- package/packages/public-runtime/src/product.ts +159 -0
- package/packages/public-runtime/src/search.ts +45 -0
- package/packages/public-runtime/src/tenant-assets.ts +444 -0
- package/packages/public-runtime/src/tenant.ts +243 -0
- package/packages/public-runtime/tsconfig.json +8 -0
- package/packages/public-runtime/vitest.config.ts +8 -0
- package/pnpm-workspace.yaml +7 -0
- package/scripts/build/copy-tenant-assets.mjs +69 -0
- package/scripts/tot-dev.mjs +439 -0
- package/tenants/bigdvapor/content/blog.json +52 -0
- package/tenants/bigdvapor/content/chrome.html +149 -0
- package/tenants/bigdvapor/content/chrome.json +47 -0
- package/tenants/bigdvapor/content/home.html +463 -0
- package/tenants/bigdvapor/content/home.json +73 -0
- package/tenants/bigdvapor/content/pages/about.json +5 -0
- package/tenants/bigdvapor/content/pages/privacy.json +6 -0
- package/tenants/bigdvapor/content/pages/shipping-returns.json +6 -0
- package/tenants/bigdvapor/content/pages-html/blogs/news.html +86 -0
- package/tenants/bigdvapor/content/pages-html/pages/about-us.html +106 -0
- package/tenants/bigdvapor/content/pages-html/pages/contact-us.html +61 -0
- package/tenants/bigdvapor/content/pages-html/pages/privacy-policy.html +72 -0
- package/tenants/bigdvapor/content/pages-html/pages/shipping-returns.html +172 -0
- package/tenants/bigdvapor/content/themes/bigd-navy.json +109 -0
- package/tenants/bigdvapor/public/img/brands/adjust-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/again-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/al-fakher-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/arro-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/cookies-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/core-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/cyclone-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/dinner-lady-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/extre-bar-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/fifty-bar-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/firerose-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/flavor-beast-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/foger-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/kk-energy-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/kumi-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/lost-vape-dispoable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/melo-labs-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/mixo-vape-disposable.webp +0 -0
- package/tenants/bigdvapor/public/img/brands/one-tank-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/oxbar-vape-disposable.webp +0 -0
- package/tenants/bigdvapor/public/img/brands/pillow-talk-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/pod-king-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/raz-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/hero-texas.jpg +0 -0
- package/tenants/bigdvapor/public/img/og.jpg +0 -0
- package/tenants/bigdvapor/public/img/pages/AdobeStock_202106312_web.jpg +0 -0
- package/tenants/bigdvapor/public/img/pages/CREW_web.jpg +0 -0
- package/tenants/bigdvapor/public/img/pages/Hero-Image.jpg +0 -0
- package/tenants/bigdvapor/public/img/tiles/adjust.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/again.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/al-fakher.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/arro.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/cookies.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/core.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/cyclone.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/disposables.svg +23 -0
- package/tenants/bigdvapor/public/logo-wordmark.png +0 -0
- package/tenants/bigdvapor/public/pages/home.css +118 -0
- package/tenants/bigdvapor/public/pages/mkt.css +185 -0
- package/tenants/bigdvapor/public/pages/page.css +148 -0
- package/tenants/bigdvapor/public/themes/bigd-navy.css +73 -0
- package/tenants/bigdvapor/theme.json +12 -0
- package/tenants/giantvapes/content/chrome.html +152 -0
- package/tenants/giantvapes/content/chrome.json +94 -0
- package/tenants/giantvapes/content/home.html +194 -0
- package/tenants/giantvapes/content/home.json +50 -0
- package/tenants/giantvapes/content/pages/about.json +10 -0
- package/tenants/giantvapes/content/pages/privacy.json +6 -0
- package/tenants/giantvapes/content/pages/shipping-returns.json +6 -0
- package/tenants/giantvapes/content/pages-html/blogs/news.html +68 -0
- package/tenants/giantvapes/content/pages-html/pages/about-us.html +95 -0
- package/tenants/giantvapes/content/pages-html/pages/contact-us.html +68 -0
- package/tenants/giantvapes/content/pages-html/pages/privacy-policy.html +65 -0
- package/tenants/giantvapes/content/pages-html/pages/shipping-returns.html +77 -0
- package/tenants/giantvapes/content/themes/giant-navy.json +73 -0
- package/tenants/giantvapes/public/img/hero-suicide-bunny.jpg +0 -0
- package/tenants/giantvapes/public/img/hero.webp +0 -0
- package/tenants/giantvapes/public/img/og.jpg +0 -0
- package/tenants/giantvapes/public/logo-wordmark.png +0 -0
- package/tenants/giantvapes/public/pages/home.css +120 -0
- package/tenants/giantvapes/public/pages/mkt.css +185 -0
- package/tenants/giantvapes/public/pages/page.css +155 -0
- package/tenants/giantvapes/public/themes/giant-navy.css +76 -0
- package/tenants/giantvapes/theme.json +39 -0
- package/tenants/home/content/chrome.json +11 -0
- package/tenants/home/content/home.html +304 -0
- package/tenants/home/content/home.json +13 -0
- package/tenants/home/public/js/storefront.js +210 -0
- package/tenants/home/public/logo-wordmark.png +0 -0
- package/tenants/home/public/pages/storefront.css +212 -0
- package/tenants/home/theme.json +6 -0
- package/tenants/tokenoftrust/.tot/config.json +9 -0
- package/tenants/tokenoftrust/content/chrome.json +55 -0
- package/tenants/tokenoftrust/content/home.html +723 -0
- package/tenants/tokenoftrust/content/home.json +233 -0
- package/tenants/tokenoftrust/content/pages-html/careers.html +231 -0
- package/tenants/tokenoftrust/content/pages-html/company.html +275 -0
- package/tenants/tokenoftrust/content/pages-html/contact/contact-sales.html +188 -0
- package/tenants/tokenoftrust/content/pages-html/contact/startup-apply.html +206 -0
- package/tenants/tokenoftrust/content/pages-html/contact.html +178 -0
- package/tenants/tokenoftrust/content/pages-html/industries/adult-content-age-verification.html +286 -0
- package/tenants/tokenoftrust/content/pages-html/industries/cannabis.html +277 -0
- package/tenants/tokenoftrust/content/pages-html/pact-act-pricing.html +289 -0
- package/tenants/tokenoftrust/content/pages-html/pricing.html +483 -0
- package/tenants/tokenoftrust/content/pages-html/product/age-assurance/age-estimation.html +278 -0
- package/tenants/tokenoftrust/content/pages-html/product/age-assurance/age-gate.html +279 -0
- package/tenants/tokenoftrust/content/pages-html/product/age-assurance/age-verification.html +265 -0
- package/tenants/tokenoftrust/content/pages-html/product/age-assurance.html +173 -0
- package/tenants/tokenoftrust/content/pages-html/product/compliance/aml.html +214 -0
- package/tenants/tokenoftrust/content/pages-html/product/compliance/pact-act.html +226 -0
- package/tenants/tokenoftrust/content/pages-html/product/fraud-prevention.html +254 -0
- package/tenants/tokenoftrust/content/pages-html/product/social-profile-verification.html +212 -0
- package/tenants/tokenoftrust/content/pages-html/product/tax/excise-tax.html +213 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/aml.html +259 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/biometric-selfie.html +305 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/coverage.html +254 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/document-verification.html +306 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/electronic-identity-verification.html +304 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/government-id-verification.html +308 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification.html +183 -0
- package/tenants/tokenoftrust/content/pages-html/product.html +228 -0
- package/tenants/tokenoftrust/content/pages-html/resources/integrations/bigcommerce-integration.html +220 -0
- package/tenants/tokenoftrust/content/pages-html/resources/integrations/shopify-integration.html +221 -0
- package/tenants/tokenoftrust/content/pages-html/resources/integrations/wordpress.html +220 -0
- package/tenants/tokenoftrust/content/pages-html/resources/integrations.html +172 -0
- package/tenants/tokenoftrust/content/pages-html/resources/refer-a-friend-program.html +317 -0
- package/tenants/tokenoftrust/content/pages-html/resources.html +177 -0
- package/tenants/tokenoftrust/content/pages-html/reviews.html +273 -0
- package/tenants/tokenoftrust/content/pages-html/solutions.html +292 -0
- package/tenants/tokenoftrust/content/pages-html/vlp-alcohol.html +289 -0
- package/tenants/tokenoftrust/content/pages-html/vlp-cigars-and-tobacco.html +286 -0
- package/tenants/tokenoftrust/content/pages-html/vlp-firearm-accessories.html +267 -0
- package/tenants/tokenoftrust/content/pages-html/vlp-peptides.html +273 -0
- package/tenants/tokenoftrust/content/themes/tot-navy.json +88 -0
- package/tenants/tokenoftrust/public/favicon.png +0 -0
- package/tenants/tokenoftrust/public/logo-icon.png +0 -0
- package/tenants/tokenoftrust/public/logo-wordmark.png +0 -0
- package/tenants/tokenoftrust/public/pages/company.css +108 -0
- package/tenants/tokenoftrust/public/pages/home.css +457 -0
- package/tenants/tokenoftrust/public/pages/mkt.css +482 -0
- package/tenants/tokenoftrust/public/pages/pricing.css +214 -0
- package/tenants/tokenoftrust/public/pages/solutions.css +66 -0
- package/tenants/tokenoftrust/public/themes/tot-navy-1.0.0.css +136 -0
- package/tenants/tokenoftrust/public/themes/tot-navy.css +358 -0
- package/tenants/tokenoftrust/theme.json +31 -0
- package/tsconfig.base.json +20 -0
|
@@ -0,0 +1,483 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<link rel="icon" type="image/png" href="/tenants/tokenoftrust/favicon.png">
|
|
7
|
+
<title>Token of Trust Pricing — Plans for Regulated Ecommerce</title>
|
|
8
|
+
<meta name="description" content="Transparent pricing for regulated ecommerce: free sandbox, age verification from $25/mo, identity & KYC from $160/mo, tax compliance from $3,000/mo.">
|
|
9
|
+
<link rel="canonical" href="https://tokenoftrust.com/pricing/">
|
|
10
|
+
<meta name="robots" content="index,follow,max-image-preview:large">
|
|
11
|
+
<meta property="og:type" content="website">
|
|
12
|
+
<meta property="og:site_name" content="Token of Trust">
|
|
13
|
+
<meta property="og:title" content="Token of Trust Pricing — Compliance at Every Scale">
|
|
14
|
+
<meta property="og:description" content="Free sandbox, age verification from $25/mo, identity & KYC from $160/mo, tax compliance from $3,000/mo.">
|
|
15
|
+
<meta property="og:url" content="https://tokenoftrust.com/pricing/">
|
|
16
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
17
|
+
<meta name="twitter:title" content="Token of Trust Pricing">
|
|
18
|
+
<meta name="twitter:description" content="Transparent pricing for verification & compliance at every scale.">
|
|
19
|
+
<script type="application/ld+json">
|
|
20
|
+
{
|
|
21
|
+
"@context": "https://schema.org",
|
|
22
|
+
"@graph": [
|
|
23
|
+
{
|
|
24
|
+
"@type": "Organization",
|
|
25
|
+
"@id": "https://tokenoftrust.com/#org",
|
|
26
|
+
"name": "Token of Trust",
|
|
27
|
+
"url": "https://tokenoftrust.com/",
|
|
28
|
+
"logo": "/tenants/tokenoftrust/logo-icon.png",
|
|
29
|
+
"slogan": "Real Customers. Less Fraud. More Trust."
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"@type": "WebPage",
|
|
33
|
+
"name": "Token of Trust Pricing",
|
|
34
|
+
"url": "https://tokenoftrust.com/pricing/"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"@type": "Product",
|
|
38
|
+
"name": "Free Quota",
|
|
39
|
+
"description": "Free plan for testing Token of Trust: 3 free verifications, sandbox API access, basic support. No credit card required.",
|
|
40
|
+
"brand": {
|
|
41
|
+
"@id": "https://tokenoftrust.com/#org"
|
|
42
|
+
},
|
|
43
|
+
"offers": {
|
|
44
|
+
"@type": "Offer",
|
|
45
|
+
"price": "0",
|
|
46
|
+
"priceCurrency": "USD",
|
|
47
|
+
"description": "$0/mo — includes 3 free verifications"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"@type": "Product",
|
|
52
|
+
"name": "Age Verification",
|
|
53
|
+
"description": "Age assurance plan: real-time age estimation, customizable age thresholds, document-based verification, biometric selfie match, international documents and database checks.",
|
|
54
|
+
"brand": {
|
|
55
|
+
"@id": "https://tokenoftrust.com/#org"
|
|
56
|
+
},
|
|
57
|
+
"offers": {
|
|
58
|
+
"@type": "Offer",
|
|
59
|
+
"price": "25",
|
|
60
|
+
"priceCurrency": "USD",
|
|
61
|
+
"description": "$25/mo + $0.50 per verification"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"@type": "Product",
|
|
66
|
+
"name": "ID Verification",
|
|
67
|
+
"description": "Identity verification plan for fraud protection: 3-way match of user, ID and selfie, international coverage for IDs and passports, fallback to manual review.",
|
|
68
|
+
"brand": {
|
|
69
|
+
"@id": "https://tokenoftrust.com/#org"
|
|
70
|
+
},
|
|
71
|
+
"offers": {
|
|
72
|
+
"@type": "Offer",
|
|
73
|
+
"price": "160",
|
|
74
|
+
"priceCurrency": "USD",
|
|
75
|
+
"description": "$160/mo + $1.22 per verification"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"@type": "Product",
|
|
80
|
+
"name": "ID Verification + KYC/AML",
|
|
81
|
+
"description": "Identity verification with KYC/AML compliance: 3-way match, international document coverage, manual review fallback, and watchlist checks for PEPs and sanctions.",
|
|
82
|
+
"brand": {
|
|
83
|
+
"@id": "https://tokenoftrust.com/#org"
|
|
84
|
+
},
|
|
85
|
+
"offers": {
|
|
86
|
+
"@type": "Offer",
|
|
87
|
+
"price": "250",
|
|
88
|
+
"priceCurrency": "USD",
|
|
89
|
+
"description": "$250/mo + $1.54 per verification"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"@type": "Product",
|
|
94
|
+
"name": "Global Tax Compliance",
|
|
95
|
+
"description": "Enterprise-grade tax compliance: real-time VAT/GST/sales tax calculation, automated filing and remittance, and a liability shield, across 100+ countries.",
|
|
96
|
+
"brand": {
|
|
97
|
+
"@id": "https://tokenoftrust.com/#org"
|
|
98
|
+
},
|
|
99
|
+
"offers": {
|
|
100
|
+
"@type": "Offer",
|
|
101
|
+
"price": "3000",
|
|
102
|
+
"priceCurrency": "USD",
|
|
103
|
+
"description": "From $3,000/mo + transaction fees based on volume"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"@type": "FAQPage",
|
|
108
|
+
"mainEntity": [
|
|
109
|
+
{
|
|
110
|
+
"@type": "Question",
|
|
111
|
+
"name": "How much does Token of Trust cost?",
|
|
112
|
+
"acceptedAnswer": {
|
|
113
|
+
"@type": "Answer",
|
|
114
|
+
"text": "Token of Trust offers a free plan ($0/mo with 3 free verifications), Age Verification at $25/mo plus $0.50 per verification, ID Verification at $160/mo plus $1.22 per verification, ID Verification + KYC/AML at $250/mo plus $1.54 per verification, and Global Tax Compliance starting at $3,000/mo plus volume-based transaction fees. Enterprise solutions start at $500/mo."
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"@type": "Question",
|
|
119
|
+
"name": "Is there a free plan?",
|
|
120
|
+
"acceptedAnswer": {
|
|
121
|
+
"@type": "Answer",
|
|
122
|
+
"text": "Yes. The Free Quota plan costs $0/mo, includes 3 free verifications and sandbox API access, and requires no credit card."
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"@type": "Question",
|
|
127
|
+
"name": "What does age verification pricing include?",
|
|
128
|
+
"acceptedAnswer": {
|
|
129
|
+
"@type": "Answer",
|
|
130
|
+
"text": "Age Verification costs $25/mo plus $0.50 per verification and includes real-time age estimation, customizable age thresholds, document-based verification, biometric selfie match, international document support, and database checks."
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"@type": "Question",
|
|
135
|
+
"name": "What does identity verification pricing include?",
|
|
136
|
+
"acceptedAnswer": {
|
|
137
|
+
"@type": "Answer",
|
|
138
|
+
"text": "ID Verification costs $160/mo plus $1.22 per verification and includes 3-way matching of user, ID and selfie, international coverage for IDs and passports, and fallback to manual review. The KYC/AML tier at $250/mo plus $1.54 per verification adds watchlist checks for PEPs and sanctions."
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"@type": "Question",
|
|
143
|
+
"name": "How does tax compliance pricing work?",
|
|
144
|
+
"acceptedAnswer": {
|
|
145
|
+
"@type": "Answer",
|
|
146
|
+
"text": "Global Tax Compliance starts at $3,000/mo plus transaction fees based on volume. It includes real-time VAT/GST/sales tax calculation at checkout, automated filing and remittance, and a liability shield for compliance accuracy."
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"@type": "Question",
|
|
151
|
+
"name": "Do I need a credit card to start?",
|
|
152
|
+
"acceptedAnswer": {
|
|
153
|
+
"@type": "Answer",
|
|
154
|
+
"text": "No. You can start for free without a credit card and upgrade when your verification volume grows."
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
]
|
|
158
|
+
}
|
|
159
|
+
]
|
|
160
|
+
}
|
|
161
|
+
</script>
|
|
162
|
+
<link rel="stylesheet" href="/tenants/tokenoftrust/themes/tot-navy.css">
|
|
163
|
+
<link rel="stylesheet" href="/tenants/tokenoftrust/pages/pricing.css">
|
|
164
|
+
</head>
|
|
165
|
+
<body>
|
|
166
|
+
<a class="skip-link" href="#main">Skip to main content</a>
|
|
167
|
+
|
|
168
|
+
<header class="site">
|
|
169
|
+
<div class="container nav-row">
|
|
170
|
+
<a class="brand" href="/" aria-label="Token of Trust home">
|
|
171
|
+
<img src="/tenants/tokenoftrust/logo-wordmark.png" alt="Token of Trust" width="156" height="34" style="height:34px;width:auto;display:block">
|
|
172
|
+
</a>
|
|
173
|
+
<nav class="primary" id="primaryNav" aria-label="Primary">
|
|
174
|
+
<ul>
|
|
175
|
+
<li><a href="/product/">Platform</a></li>
|
|
176
|
+
<li><a href="/solutions/">Industries</a></li>
|
|
177
|
+
<li><a href="/company/">Company</a></li>
|
|
178
|
+
<li><a href="/resources/">Resources</a></li>
|
|
179
|
+
<li><a class="active" href="/pricing/" aria-current="page">Pricing</a></li>
|
|
180
|
+
<li><a href="https://app.tokenoftrust.com">Login</a></li>
|
|
181
|
+
</ul>
|
|
182
|
+
</nav>
|
|
183
|
+
<div class="nav-cta">
|
|
184
|
+
<a class="btn btn-s" href="#">Book Demo</a>
|
|
185
|
+
<a class="btn btn-p" href="#">Start For Free</a>
|
|
186
|
+
<button class="hamburger" id="hamburger" aria-label="Toggle navigation menu" aria-expanded="false" aria-controls="primaryNav">
|
|
187
|
+
<span>
|
|
188
|
+
</span>
|
|
189
|
+
<span>
|
|
190
|
+
</span>
|
|
191
|
+
<span>
|
|
192
|
+
</span>
|
|
193
|
+
</button>
|
|
194
|
+
</div>
|
|
195
|
+
</div>
|
|
196
|
+
</header>
|
|
197
|
+
|
|
198
|
+
<main id="main">
|
|
199
|
+
<section class="hero" aria-labelledby="hero-heading">
|
|
200
|
+
<div class="container">
|
|
201
|
+
<span class="eyebrow">Built for regulated ecommerce</span>
|
|
202
|
+
<h1 id="hero-heading">Transparent pricing for <span class="acc">compliance at every scale.</span></h1>
|
|
203
|
+
<p class="lede">
|
|
204
|
+
Choose the verification path that fits your products, jurisdictions, and volume. Start free
|
|
205
|
+
self-serve, or talk to sales about enterprise compliance workflows.
|
|
206
|
+
</p>
|
|
207
|
+
<div class="tabs" role="tablist" aria-label="Pricing categories">
|
|
208
|
+
<button class="tab" role="tab" id="tab-age" aria-selected="false" aria-controls="panel-age">Age Assurance</button>
|
|
209
|
+
<button class="tab" role="tab" id="tab-id" aria-selected="true" aria-controls="panel-id">Identity &
|
|
210
|
+
KYC</button>
|
|
211
|
+
<button class="tab" role="tab" id="tab-tax" aria-selected="false" aria-controls="panel-tax">Tax Compliance</button>
|
|
212
|
+
</div>
|
|
213
|
+
</div>
|
|
214
|
+
</section>
|
|
215
|
+
|
|
216
|
+
<section aria-label="Pricing plans" class="plans-section">
|
|
217
|
+
<div class="container">
|
|
218
|
+
<div class="panel" id="panel-id" role="tabpanel" aria-labelledby="tab-id">
|
|
219
|
+
<div class="plans">
|
|
220
|
+
<article class="plan reveal">
|
|
221
|
+
<h3>Free Quota</h3>
|
|
222
|
+
<p class="for">For testing</p>
|
|
223
|
+
<div class="price"><b>$0</b><span>/ mo</span></div>
|
|
224
|
+
<p class="per">Includes 3 free verifications</p>
|
|
225
|
+
<hr>
|
|
226
|
+
<ul>
|
|
227
|
+
<li>Basic identity verification</li>
|
|
228
|
+
<li>Sandbox API access</li>
|
|
229
|
+
<li>Community support</li>
|
|
230
|
+
</ul>
|
|
231
|
+
<a class="btn btn-p" href="#">Start For Free</a>
|
|
232
|
+
</article>
|
|
233
|
+
<article class="plan popular reveal">
|
|
234
|
+
<span class="pop-badge">Most popular</span>
|
|
235
|
+
<h3>ID Verification</h3>
|
|
236
|
+
<p class="for">Designed for fraud protection</p>
|
|
237
|
+
<div class="price"><b>$160</b><span>/ mo</span></div>
|
|
238
|
+
<p class="per">+ $1.22 per verification</p>
|
|
239
|
+
<hr>
|
|
240
|
+
<ul>
|
|
241
|
+
<li>3-way-match: user, ID & selfie</li>
|
|
242
|
+
<li>International coverage for IDs & passports</li>
|
|
243
|
+
<li>Fallback to manual review</li>
|
|
244
|
+
</ul>
|
|
245
|
+
<a class="btn btn-p" href="#">Get Started</a>
|
|
246
|
+
</article>
|
|
247
|
+
<article class="plan reveal">
|
|
248
|
+
<h3>ID Verification + KYC/AML</h3>
|
|
249
|
+
<p class="for">Designed for KYC compliance</p>
|
|
250
|
+
<div class="price"><b>$250</b><span>/ mo</span></div>
|
|
251
|
+
<p class="per">+ $1.54 per verification</p>
|
|
252
|
+
<hr>
|
|
253
|
+
<ul>
|
|
254
|
+
<li>3-way-match: user, ID & selfie</li>
|
|
255
|
+
<li>International coverage for licenses & passports</li>
|
|
256
|
+
<li>Fallback to manual review</li>
|
|
257
|
+
<li>Watchlist checks (PEPs, sanctions)</li>
|
|
258
|
+
</ul>
|
|
259
|
+
<a class="btn btn-s" href="#">Get Started</a>
|
|
260
|
+
</article>
|
|
261
|
+
</div>
|
|
262
|
+
</div>
|
|
263
|
+
|
|
264
|
+
<div class="panel" id="panel-age" role="tabpanel" aria-labelledby="tab-age" hidden>
|
|
265
|
+
<div class="plans two">
|
|
266
|
+
<article class="plan reveal in">
|
|
267
|
+
<h3>Free Quota</h3>
|
|
268
|
+
<p class="for">Perfect for testing</p>
|
|
269
|
+
<div class="price"><b>$0</b><span>/ mo</span></div>
|
|
270
|
+
<p class="per">No credit card required</p>
|
|
271
|
+
<hr>
|
|
272
|
+
<ul>
|
|
273
|
+
<li>3 free verifications included</li>
|
|
274
|
+
<li>Developer API access</li>
|
|
275
|
+
<li>Basic email support</li>
|
|
276
|
+
</ul>
|
|
277
|
+
<a class="btn btn-s" href="#">Start For Free</a>
|
|
278
|
+
</article>
|
|
279
|
+
<article class="plan popular reveal in">
|
|
280
|
+
<span class="pop-badge">Designed for growth</span>
|
|
281
|
+
<h3>Age Verification</h3>
|
|
282
|
+
<p class="for">For age-restricted products</p>
|
|
283
|
+
<div class="price"><b>$25</b><span>/ mo</span></div>
|
|
284
|
+
<p class="per">+ $0.50 per verification</p>
|
|
285
|
+
<div class="minitags"><span>International docs</span><span>Database check</span></div>
|
|
286
|
+
<hr>
|
|
287
|
+
<ul>
|
|
288
|
+
<li>Real-time age estimation</li>
|
|
289
|
+
<li>Customizable age thresholds</li>
|
|
290
|
+
<li>Document-based verification</li>
|
|
291
|
+
<li>Biometric selfie match</li>
|
|
292
|
+
</ul>
|
|
293
|
+
<a class="btn btn-p" href="#">Get Started</a>
|
|
294
|
+
</article>
|
|
295
|
+
</div>
|
|
296
|
+
</div>
|
|
297
|
+
|
|
298
|
+
<div class="panel" id="panel-tax" role="tabpanel" aria-labelledby="tab-tax" hidden>
|
|
299
|
+
<div class="tax-card reveal in">
|
|
300
|
+
<div class="bar" aria-hidden="true"></div>
|
|
301
|
+
<div class="tax-grid">
|
|
302
|
+
<div class="tax-left">
|
|
303
|
+
<p class="for">Enterprise grade</p>
|
|
304
|
+
<h3>Global Tax Compliance</h3>
|
|
305
|
+
<p>
|
|
306
|
+
Automate tax calculations, reporting, and filing across 100+ countries. Designed for
|
|
307
|
+
high-volume marketplaces and regulated platforms needing absolute precision.
|
|
308
|
+
</p>
|
|
309
|
+
<ul>
|
|
310
|
+
<li><div><b>Real-time tax calculation</b><span>Instant VAT/GST/sales tax determination at checkout.</span></div></li>
|
|
311
|
+
<li><div><b>Automated filing & remittance</b><span>We handle the paperwork and payments to
|
|
312
|
+
local authorities.</span></div></li>
|
|
313
|
+
<li><div><b>Liability shield</b><span>We take on the liability for tax compliance accuracy.</span></div></li>
|
|
314
|
+
</ul>
|
|
315
|
+
</div>
|
|
316
|
+
<div class="tax-right">
|
|
317
|
+
<small>Plans starting at</small>
|
|
318
|
+
<div class="price"><b>$3,000</b><span>/ mo</span></div>
|
|
319
|
+
<p class="per">+ transaction fees based on volume</p>
|
|
320
|
+
<a class="btn btn-tax" href="#">Contact Sales</a>
|
|
321
|
+
<p class="alt">Need a custom quote? <a href="#">Book a demo</a></p>
|
|
322
|
+
</div>
|
|
323
|
+
</div>
|
|
324
|
+
</div>
|
|
325
|
+
</div>
|
|
326
|
+
</div>
|
|
327
|
+
</section>
|
|
328
|
+
|
|
329
|
+
<section class="alt-bg" aria-labelledby="how-heading">
|
|
330
|
+
<div class="container center reveal">
|
|
331
|
+
<span class="kicker">How it works</span>
|
|
332
|
+
<h2 id="how-heading">Secure, scalable, built for regulated commerce</h2>
|
|
333
|
+
<div class="steps">
|
|
334
|
+
<div class="step">
|
|
335
|
+
<span class="num">01</span>
|
|
336
|
+
<h3>Select a plan</h3>
|
|
337
|
+
<p>Choose the verification level that fits your legal and business risk profile.</p>
|
|
338
|
+
</div>
|
|
339
|
+
<div class="step"><span class="num">02</span><h3>Integration</h3><p>Embed our low-code SDK or connect via
|
|
340
|
+
API in minutes.</p></div>
|
|
341
|
+
<div class="step"><span class="num">03</span><h3>Verification</h3><p>Customers complete a frictionless
|
|
342
|
+
flow in under 30 seconds.</p></div>
|
|
343
|
+
<div class="step">
|
|
344
|
+
<span class="num">04</span>
|
|
345
|
+
<h3>Results & logs</h3>
|
|
346
|
+
<p>Get instant pass/fail signals and audit-ready evidence for compliance.</p>
|
|
347
|
+
</div>
|
|
348
|
+
</div>
|
|
349
|
+
</div>
|
|
350
|
+
</section>
|
|
351
|
+
|
|
352
|
+
<section aria-labelledby="ent-heading">
|
|
353
|
+
<div class="container">
|
|
354
|
+
<div class="ent-band reveal">
|
|
355
|
+
<span class="kicker">Enterprise solutions</span>
|
|
356
|
+
<h2 id="ent-heading">High-volume or custom compliance needs?</h2>
|
|
357
|
+
<p>
|
|
358
|
+
Enterprise solutions start at $500/mo. Our solutions architects design custom verification and
|
|
359
|
+
compliance workflows for your products, states, and risk profile.
|
|
360
|
+
</p>
|
|
361
|
+
<a class="btn btn-ent" href="#">Contact Solution Designer</a>
|
|
362
|
+
</div>
|
|
363
|
+
</div>
|
|
364
|
+
</section>
|
|
365
|
+
|
|
366
|
+
<section class="alt-bg" aria-labelledby="faq-heading">
|
|
367
|
+
<div class="container">
|
|
368
|
+
<div class="center reveal">
|
|
369
|
+
<span class="kicker">Pricing FAQ</span>
|
|
370
|
+
<h2 id="faq-heading">Frequently asked questions</h2>
|
|
371
|
+
</div>
|
|
372
|
+
<div class="faq">
|
|
373
|
+
<details class="reveal">
|
|
374
|
+
<summary>How much does Token of Trust cost?</summary>
|
|
375
|
+
<p>
|
|
376
|
+
There's a free plan ($0/mo with 3 free verifications), Age Verification at $25/mo + $0.50 per
|
|
377
|
+
verification, ID Verification at $160/mo + $1.22 per verification, ID Verification + KYC/AML at
|
|
378
|
+
$250/mo + $1.54 per verification, and Global Tax Compliance starting at $3,000/mo + volume-based
|
|
379
|
+
transaction fees. Enterprise solutions start at $500/mo.
|
|
380
|
+
</p>
|
|
381
|
+
</details>
|
|
382
|
+
<details class="reveal">
|
|
383
|
+
<summary>Is there a free plan?</summary>
|
|
384
|
+
<p>Yes. The Free Quota plan costs $0/mo, includes 3 free verifications and sandbox API access, and requires
|
|
385
|
+
no credit card.</p>
|
|
386
|
+
</details>
|
|
387
|
+
<details class="reveal">
|
|
388
|
+
<summary>What does age verification pricing include?</summary>
|
|
389
|
+
<p>
|
|
390
|
+
$25/mo + $0.50 per verification includes real-time age estimation, customizable age thresholds,
|
|
391
|
+
document-based verification, biometric selfie match, international document support, and database
|
|
392
|
+
checks.
|
|
393
|
+
</p>
|
|
394
|
+
</details>
|
|
395
|
+
<details class="reveal">
|
|
396
|
+
<summary>What does identity verification pricing include?</summary>
|
|
397
|
+
<p>
|
|
398
|
+
$160/mo + $1.22 per verification includes 3-way matching of user, ID and selfie, international
|
|
399
|
+
ID/passport coverage, and manual-review fallback. The KYC/AML tier ($250/mo + $1.54) adds watchlist
|
|
400
|
+
checks for PEPs and sanctions.
|
|
401
|
+
</p>
|
|
402
|
+
</details>
|
|
403
|
+
<details class="reveal">
|
|
404
|
+
<summary>How does tax compliance pricing work?</summary>
|
|
405
|
+
<p>
|
|
406
|
+
Global Tax Compliance starts at $3,000/mo + transaction fees based on volume, including real-time
|
|
407
|
+
VAT/GST/sales tax calculation, automated filing and remittance, and a liability shield.
|
|
408
|
+
</p>
|
|
409
|
+
</details>
|
|
410
|
+
<details class="reveal">
|
|
411
|
+
<summary>Do I need a credit card to start?</summary>
|
|
412
|
+
<p>No. Start for free without a credit card and upgrade when your volume grows.</p>
|
|
413
|
+
</details>
|
|
414
|
+
</div>
|
|
415
|
+
</div>
|
|
416
|
+
</section>
|
|
417
|
+
</main>
|
|
418
|
+
|
|
419
|
+
<footer class="site">
|
|
420
|
+
<div class="container">
|
|
421
|
+
<div class="foot-grid">
|
|
422
|
+
<div>
|
|
423
|
+
<a class="brand" href="/" aria-label="Token of Trust home">
|
|
424
|
+
<img src="/tenants/tokenoftrust/logo-wordmark.png" alt="Token of Trust" width="156" height="34" style="height:34px;width:auto;display:block">
|
|
425
|
+
</a>
|
|
426
|
+
<p class="foot-note">Customer verification and compliance for regulated ecommerce. 256-bit SSL. We will
|
|
427
|
+
NEVER sell your data. GDPR · CCPA · PIPEDA.</p>
|
|
428
|
+
</div>
|
|
429
|
+
<nav aria-label="Platform footer"><h3>Platform</h3><ul>
|
|
430
|
+
<li><a href="/product/verification/">Identity Verification</a></li>
|
|
431
|
+
<li><a href="/product/age-assurance/">Age Assurance</a></li>
|
|
432
|
+
<li><a href="/product/fraud-prevention/">Fraud Prevention</a></li>
|
|
433
|
+
<li><a href="/product/">All products</a></li>
|
|
434
|
+
</ul></nav>
|
|
435
|
+
<nav aria-label="Industries footer"><h3>Industries</h3><ul>
|
|
436
|
+
<li><a href="/#industries">Alcohol</a></li>
|
|
437
|
+
<li><a href="/#industries">Tobacco & Vape</a></li>
|
|
438
|
+
<li><a href="/#industries">Age-Restricted Goods</a></li>
|
|
439
|
+
<li><a href="/#industries">Marketplaces</a></li>
|
|
440
|
+
</ul></nav>
|
|
441
|
+
<nav aria-label="Support footer"><h3>Support & Trust</h3><ul>
|
|
442
|
+
<li><a href="#">Developer Documentation</a></li>
|
|
443
|
+
<li><a href="#">API Status</a></li>
|
|
444
|
+
<li><a href="#">Security Whitepapers</a></li>
|
|
445
|
+
</ul></nav>
|
|
446
|
+
</div>
|
|
447
|
+
<p class="copyright">© 2026 Token of Trust®. All rights reserved.</p>
|
|
448
|
+
</div>
|
|
449
|
+
</footer>
|
|
450
|
+
|
|
451
|
+
<script>
|
|
452
|
+
(function(){
|
|
453
|
+
var burger = document.getElementById('hamburger');
|
|
454
|
+
var nav = document.getElementById('primaryNav');
|
|
455
|
+
burger.addEventListener('click', function(){
|
|
456
|
+
var open = nav.classList.toggle('open');
|
|
457
|
+
burger.setAttribute('aria-expanded', open ? 'true' : 'false');
|
|
458
|
+
});
|
|
459
|
+
var io = new IntersectionObserver(function(entries){
|
|
460
|
+
entries.forEach(function(e){ if(e.isIntersecting){ e.target.classList.add('in'); io.unobserve(e.target); } });
|
|
461
|
+
}, {threshold:.12});
|
|
462
|
+
document.querySelectorAll('.reveal').forEach(function(el){ io.observe(el); });
|
|
463
|
+
var tabs = Array.prototype.slice.call(document.querySelectorAll('.tab'));
|
|
464
|
+
var panels = tabs.map(function(t){ return document.getElementById(t.getAttribute('aria-controls')); });
|
|
465
|
+
function select(i, focus){
|
|
466
|
+
tabs.forEach(function(t, ti){
|
|
467
|
+
t.setAttribute('aria-selected', ti === i ? 'true' : 'false');
|
|
468
|
+
panels[ti].hidden = ti !== i;
|
|
469
|
+
});
|
|
470
|
+
panels[i].querySelectorAll('.reveal').forEach(function(el){ el.classList.add('in'); });
|
|
471
|
+
if(focus) tabs[i].focus();
|
|
472
|
+
}
|
|
473
|
+
tabs.forEach(function(t, i){
|
|
474
|
+
t.addEventListener('click', function(){ select(i); });
|
|
475
|
+
t.addEventListener('keydown', function(ev){
|
|
476
|
+
if(ev.key === 'ArrowRight'){ ev.preventDefault(); select((i + 1) % tabs.length, true); }
|
|
477
|
+
if(ev.key === 'ArrowLeft'){ ev.preventDefault(); select((i - 1 + tabs.length) % tabs.length, true); }
|
|
478
|
+
});
|
|
479
|
+
});
|
|
480
|
+
})();
|
|
481
|
+
</script>
|
|
482
|
+
</body>
|
|
483
|
+
</html>
|