Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 1m16s
CI/CD Pipeline / Security Scanning (push) Successful in 2m52s
CI/CD Pipeline / Lint and Format (push) Failing after 46s
CI/CD Pipeline / Terraform Validation (push) Failing after 26s
CI/CD Pipeline / Kubernetes Validation (push) Successful in 28s
Deploy ChainID 138 / Deploy ChainID 138 (push) Failing after 45s
HYBX OMNL TypeScript & anchor / token-aggregation build + reconcile artifact (push) Failing after 20s
Validation / validate-genesis (push) Successful in 32s
Validation / validate-terraform (push) Failing after 30s
Validation / validate-kubernetes (push) Failing after 11s
Validation / validate-smart-contracts (push) Failing after 11s
Validation / validate-security (push) Failing after 1m35s
Validation / validate-documentation (push) Failing after 22s
Verify Deployment / Verify Deployment (push) Failing after 1m4s
Move Z Chain, wallet, bot, swap, and Z Bank UI off OMNL domains with dedicated nginx vhost and production DNS config. Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
882 B
Bash
25 lines
882 B
Bash
#!/usr/bin/env bash
|
|
# DNS records for Z Ecosystem (zblockchainsystem.com) — separate from OMNL
|
|
|
|
ORIGIN_IP="${Z_ECOSYSTEM_ORIGIN_IP:-${OMNL_ORIGIN_IP:-76.53.10.34}}"
|
|
|
|
cat <<EOF
|
|
# Z Ecosystem DNS — zblockchainsystem.com (separate from OMNL)
|
|
|
|
Zone: zblockchainsystem.com
|
|
Type Name Content Proxy Product
|
|
A @ $ORIGIN_IP yes Z Hub (/z)
|
|
A www $ORIGIN_IP yes Z Hub (/z)
|
|
A rpc $ORIGIN_IP yes Z Chain RPC (:8546 on origin)
|
|
A explorer $ORIGIN_IP yes Z Chain explorer (optional)
|
|
|
|
Live URLs after DNS:
|
|
https://zblockchainsystem.com/z
|
|
https://zblockchainsystem.com/z-wallet
|
|
https://zblockchainsystem.com/swap
|
|
https://zblockchainsystem.com/central-bank
|
|
https://zblockchainsystem.com/api/v1/z-bot/health
|
|
https://rpc.zblockchainsystem.com
|
|
https://explorer.zblockchainsystem.com
|
|
EOF
|