Add Oracle Aggregator and CCIP Integration

- Introduced Aggregator.sol for Chainlink-compatible oracle functionality, including round-based updates and access control.
- Added OracleWithCCIP.sol to extend Aggregator with CCIP cross-chain messaging capabilities.
- Created .gitmodules to include OpenZeppelin contracts as a submodule.
- Developed a comprehensive deployment guide in NEXT_STEPS_COMPLETE_GUIDE.md for Phase 2 and smart contract deployment.
- Implemented Vite configuration for the orchestration portal, supporting both Vue and React frameworks.
- Added server-side logic for the Multi-Cloud Orchestration Portal, including API endpoints for environment management and monitoring.
- Created scripts for resource import and usage validation across non-US regions.
- Added tests for CCIP error handling and integration to ensure robust functionality.
- Included various new files and directories for the orchestration portal and deployment scripts.
This commit is contained in:
defiQUG
2025-12-12 14:57:48 -08:00
parent a1466e4005
commit 1fb7266469
1720 changed files with 241279 additions and 16 deletions

View File

@@ -0,0 +1,16 @@
# scripts/assets/create-diagram-stencil.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/assets/create-diagram-stencil.sh --help`
## Examples
```bash
./scripts/assets/create-diagram-stencil.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/assets/download-azure-icons.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/assets/download-azure-icons.sh --help`
## Examples
```bash
./scripts/assets/download-azure-icons.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/assets/setup-assets.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/assets/setup-assets.sh --help`
## Examples
```bash
./scripts/assets/setup-assets.sh --help
```

View File

@@ -0,0 +1,11 @@
# scripts/automation/add-ensure-azure.sh
Insert ensure_azure_cli and set_subscription in lib-enabled scripts if missing
Writes report to docs/AZURE_INIT_ADDED.md
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/add-ensure-azure.sh --help`

View File

@@ -0,0 +1,18 @@
# scripts/automation/adopt-lib-top.sh
Adopt common library in top-N legacy scripts (no lib sourcing yet)
Safe: inserts only a single line after first SCRIPT_DIR=...BASH_SOURCE occurrence.
Verifies syntax, reverts on failure. Writes report to docs/SCRIPTS_ADOPTION_PLAN.md
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/adopt-lib-top.sh --help`
## Examples
```bash
./scripts/automation/adopt-lib-top.sh --help
```

View File

@@ -0,0 +1,18 @@
# scripts/automation/cleanup-color-vars.sh
Remove color variable definitions from scripts that already source lib/init.sh
Only removes if no ${RED|GREEN|YELLOW|BLUE|CYAN|NC} usages remain.
Writes a report to docs/COLOR_VARS_CLEANUP.md
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/automation/cleanup-color-vars.sh --help`
## Examples
```bash
./scripts/automation/cleanup-color-vars.sh --help
```

View File

@@ -0,0 +1,20 @@
# scripts/automation/cleanup-manual-az.sh
Remove legacy Azure CLI checks from scripts that already source lib/init.sh and call ensure_azure_cli
Patterns removed (if present):
- if ! command -v az ... fi
- az account show ... || { ... }
Creates report at docs/AZ_CHECKS_CLEANUP.md
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/automation/cleanup-manual-az.sh --help`
## Examples
```bash
./scripts/automation/cleanup-manual-az.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/automation/create-deployment-checklist.sh
Create deployment checklist based on current status
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/create-deployment-checklist.sh --help`
## Examples
```bash
./scripts/automation/create-deployment-checklist.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/automation/fix-hardhat-deps.sh
Fix Hardhat dependency resolution
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/fix-hardhat-deps.sh --help`
## Examples
```bash
./scripts/automation/fix-hardhat-deps.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/automation/fix-script-errors.sh
Fix identified script syntax errors
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/fix-script-errors.sh --help`
## Examples
```bash
./scripts/automation/fix-script-errors.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/automation/generate-commands-index.sh
Generate a command registry index at docs/COMMANDS_INDEX.md
Scans scripts/ for *.sh and extracts: name, path, category, purpose, help support, dry-run support
**Uses common library**: no
**Has --help**: yes
## Usage
`./scripts/automation/generate-commands-index.sh --help`
## Examples
```bash
./scripts/automation/generate-commands-index.sh --help
```

View File

@@ -0,0 +1,20 @@
# scripts/automation/generate-docs-index.sh
Generate docs indices for scripts and tags
Inputs: docs/COMMANDS_INDEX.md and docs/scripts/*.md
Outputs:
- docs/SCRIPTS_INDEX.md (by category)
- docs/tags/* (help-yes, dryrun-yes, category-<name>)
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/generate-docs-index.sh --help`
## Examples
```bash
./scripts/automation/generate-docs-index.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/automation/generate-script-docs.sh
Generate per-script documentation pages in docs/scripts/
**Uses common library**: yes
**Has --help**: yes
## Usage
`./scripts/automation/generate-script-docs.sh --help`
## Examples
```bash
./scripts/automation/generate-script-docs.sh --help
```

View File

@@ -0,0 +1,19 @@
# scripts/automation/generate-scripts-incubator.sh
Generate scripts inventory and command index (local-only)
Outputs:
- docs/SCRIPTS_INVENTORY.md
- docs/COMMANDS_INDEX.md
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/generate-scripts-incubator.sh --help`
## Examples
```bash
./scripts/automation/generate-scripts-incubator.sh --help
```

View File

@@ -0,0 +1,19 @@
# scripts/automation/generate-scripts-inventory.sh
Generate scripts inventory and command index (local-only)
Outputs:
- docs/SCRIPTS_INVENTORY.md
- docs/COMMANDS_INDEX.md
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/generate-scripts-inventory.sh --help`
## Examples
```bash
./scripts/automation/generate-scripts-inventory.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/automation/measure-startup.sh
Measure startup time for common library sourcing and representative scripts
**Uses common library**: no
**Has --help**: yes
## Usage
`./scripts/automation/measure-startup.sh --help`
## Examples
```bash
./scripts/automation/measure-startup.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/automation/prepare-deployment.sh
Prepare for deployment - check all prerequisites
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/prepare-deployment.sh --help`
## Examples
```bash
./scripts/automation/prepare-deployment.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/automation/run-all-automated-tasks.sh
Master script to run all automated tasks in parallel
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/run-all-automated-tasks.sh --help`
## Examples
```bash
./scripts/automation/run-all-automated-tasks.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/automation/run-tests-parallel.sh
Run all tests in parallel
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/run-tests-parallel.sh --help`
## Examples
```bash
./scripts/automation/run-tests-parallel.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/automation/scope-review.sh
Project Scope Review - Check for scope creep
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/scope-review.sh --help`
## Examples
```bash
./scripts/automation/scope-review.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/automation/validate-all-scripts.sh
Validate all deployment and automation scripts
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/validate-all-scripts.sh --help`
## Examples
```bash
./scripts/automation/validate-all-scripts.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/automation/validate-scripts.sh
Validate all shell scripts locally (no git/network). Produces docs/SCRIPTS_QA_REPORT.md
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/automation/validate-scripts.sh --help`
## Examples
```bash
./scripts/automation/validate-scripts.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/azure/analyze-deployment-failures.sh
Comprehensive Azure deployment failure analysis
Compares Terraform logs with Azure activity logs
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/analyze-deployment-failures.sh --help`
## Examples
```bash
./scripts/azure/analyze-deployment-failures.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/azure/analyze-quotas.sh
Analyze all quotas and find optimal VM sizes
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/analyze-quotas.sh --help`
## Examples
```bash
./scripts/azure/analyze-quotas.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/azure/check-ai-ml-providers.sh
Check AI, ML, OpenAI, and related Resource Providers and Preview Features
Ensures all AI/ML related providers are registered
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/check-ai-ml-providers.sh --help`
## Examples
```bash
./scripts/azure/check-ai-ml-providers.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/azure/check-and-continue.sh
Continuously check status and continue with next steps
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/check-and-continue.sh --help`
## Examples
```bash
./scripts/azure/check-and-continue.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/azure/check-azure-prerequisites.sh
Check Azure Prerequisites: Regions, Resource Providers, and Quotas
Ensures all required providers are registered and quotas are available
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/check-azure-prerequisites.sh --help`
## Examples
```bash
./scripts/azure/check-azure-prerequisites.sh --help
```

View File

@@ -0,0 +1,24 @@
# scripts/azure/check-naming-conventions.sh
**Name**: `check-naming-conventions.sh`
Audit Azure resource naming conventions and categorize standard vs legacy vs non-standard
**Uses common library**: yes
**Has --help**: yes
## Usage
`${SCRIPT_NAME} [--json <file>] [--help]`
### Options
```
--json <file> Write detailed JSON output to file
--help Show help
```
## Examples
```bash
${SCRIPT_NAME} [--json <file>] [--help]
```

View File

@@ -0,0 +1,17 @@
# scripts/azure/check-quotas.sh
Check Azure Quotas for specific region
Usage: ./scripts/azure/check-quotas.sh [region]
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/check-quotas.sh --help`
## Examples
```bash
./scripts/azure/check-quotas.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/azure/continue-fix-if-needed.sh
Continue fix if script didn't complete all steps
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/continue-fix-if-needed.sh --help`
## Examples
```bash
./scripts/azure/continue-fix-if-needed.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/azure/delete-all-problematic-clusters-parallel.sh
Delete all failed and canceled clusters in parallel
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/delete-all-problematic-clusters-parallel.sh --help`
## Examples
```bash
./scripts/azure/delete-all-problematic-clusters-parallel.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/azure/fix-deployment-issues.sh
Comprehensive fix for deployment issues
Deletes failed/canceled clusters and re-runs Terraform
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/fix-deployment-issues.sh --help`
## Examples
```bash
./scripts/azure/fix-deployment-issues.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/azure/fix-resource-group-naming.sh
Fix Resource Group Naming Conventions
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/fix-resource-group-naming.sh --help`
## Examples
```bash
./scripts/azure/fix-resource-group-naming.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/azure/get-all-region-quotas.sh
Get vCPU quotas for all non-US commercial Azure regions
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/get-all-region-quotas.sh --help`
## Examples
```bash
./scripts/azure/get-all-region-quotas.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/azure/get-available-regions.sh
Get available Azure regions for this subscription
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/get-available-regions.sh --help`
## Examples
```bash
./scripts/azure/get-available-regions.sh --help
```

View File

@@ -0,0 +1,24 @@
# scripts/azure/list-all-resources.sh
**Name**: `list-all-resources.sh`
List all Azure resources by type and resource group, with Key Vault & AKS detail
**Uses common library**: yes
**Has --help**: yes
## Usage
`${SCRIPT_NAME} [--json <file>] [--help]`
### Options
```
--json <file> Also export full az resource list JSON to file
--help Show help
```
## Examples
```bash
${SCRIPT_NAME} [--json <file>] [--help]
```

View File

@@ -0,0 +1,16 @@
# scripts/azure/monitor-fix-progress.sh
Monitor fix progress and continue if needed
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/monitor-fix-progress.sh --help`
## Examples
```bash
./scripts/azure/monitor-fix-progress.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/azure/standardize-resource-groups.sh
Standardize Resource Group Naming
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/standardize-resource-groups.sh --help`
## Examples
```bash
./scripts/azure/standardize-resource-groups.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/azure/wait-and-redeploy.sh
Wait for deletions to complete, then redeploy with Terraform
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/azure/wait-and-redeploy.sh --help`
## Examples
```bash
./scripts/azure/wait-and-redeploy.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/backup/backup-chaindata.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/backup/backup-chaindata.sh --help`
## Examples
```bash
./scripts/backup/backup-chaindata.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/backup/restore-chaindata.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/backup/restore-chaindata.sh --help`
## Examples
```bash
./scripts/backup/restore-chaindata.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/ccip-deployment/deploy-all-ccip-mainnet.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/ccip-deployment/deploy-all-ccip-mainnet.sh --help`
## Examples
```bash
./scripts/ccip-deployment/deploy-all-ccip-mainnet.sh --help
```

View File

@@ -0,0 +1,29 @@
# scripts/ccip/ccip-configure-destination.sh
**Name**: `ccip-configure-destination.sh`
Add/update/remove destination chain mappings on CCIP WETH bridges
**Uses common library**: yes
**Has --help**: yes
## Usage
`${SCRIPT_NAME} --token {weth9|weth10} --action {add|update|remove} --selector <chainSelector> [--receiver <addr>] --pk <hex> [--rpc <url>] [--help]`
### Options
```
--token <name> Bridge token type (weth9|weth10)
--action <op> add|update|remove
--selector N Destination chain selector (uint64)
--receiver ADDR Receiver bridge address (for add/update)
--pk HEX Admin private key to call bridge
--rpc URL RPC URL (default: ETHEREUM_MAINNET_RPC or public)
--help Show help
```
## Examples
```bash
${SCRIPT_NAME} --token {weth9|weth10} --action {add|update|remove} --selector <chainSelector> [--receiver <addr>] --pk <hex> [--rpc <url>] [--help]
```

View File

@@ -0,0 +1,27 @@
# scripts/ccip/ccip-estimate-fee.sh
**Name**: `ccip-estimate-fee.sh`
Estimate CCIP fee for a WETH bridge to a destination chain
**Uses common library**: yes
**Has --help**: yes
## Usage
`${SCRIPT_NAME} --token {weth9|weth10} --selector <chainSelector> --amount <wei> [--rpc <url>] [--help]`
### Options
```
--token <name> Bridge token type (weth9|weth10)
--selector N Destination chain selector (uint64)
--amount WEI Amount of token to send (wei)
--rpc URL RPC URL (default: ETHEREUM_MAINNET_RPC or public)
--help Show help
```
## Examples
```bash
${SCRIPT_NAME} --token {weth9|weth10} --selector <chainSelector> --amount <wei> [--rpc <url>] [--help]
```

View File

@@ -0,0 +1,29 @@
# scripts/ccip/ccip-send.sh
**Name**: `ccip-send.sh`
Approve fee/token and call sendCrossChain for WETH bridge
**Uses common library**: yes
**Has --help**: yes
## Usage
`${SCRIPT_NAME} --token {weth9|weth10} --selector <chainSelector> --recipient <address> --amount <wei> --pk <hex> [--rpc <url>] [--help]`
### Options
```
--token <name> Bridge token type (weth9|weth10)
--selector N Destination chain selector (uint64)
--recipient ADDR Recipient address on destination chain
--amount WEI Amount of token to send (wei)
--pk HEX Deployer private key (0x...)
--rpc URL RPC URL (default: ETHEREUM_MAINNET_RPC or public)
--help Show help
```
## Examples
```bash
${SCRIPT_NAME} --token {weth9|weth10} --selector <chainSelector> --recipient <address> --amount <wei> --pk <hex> [--rpc <url>] [--help]
```

View File

@@ -0,0 +1,26 @@
# scripts/ccip/ccip-status.sh
**Name**: `ccip-status.sh`
Display CCIP WETH bridge configuration and status
**Uses common library**: yes
**Has --help**: yes
## Usage
`${SCRIPT_NAME} --token {weth9|weth10} [--user <address>] [--rpc <url>] [--help]`
### Options
```
--token <name> Bridge token type (weth9|weth10)
--user ADDR Show nonce for user
--rpc URL RPC URL (default: ETHEREUM_MAINNET_RPC or public)
--help Show help
```
## Examples
```bash
${SCRIPT_NAME} --token {weth9|weth10} [--user <address>] [--rpc <url>] [--help]
```

View File

@@ -0,0 +1,16 @@
# scripts/configure-network-advanced.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/configure-network-advanced.sh --help`
## Examples
```bash
./scripts/configure-network-advanced.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/configure-network-test.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/configure-network-test.sh --help`
## Examples
```bash
./scripts/configure-network-test.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/configure-network.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/configure-network.sh --help`
## Examples
```bash
./scripts/configure-network.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/deployment/add-cloudflare-env.sh
Add Cloudflare credentials to .env file
Usage: ./scripts/deployment/add-cloudflare-env.sh <zone-id> <api-token>
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/add-cloudflare-env.sh --help`
## Examples
```bash
./scripts/deployment/add-cloudflare-env.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/apply-cloud-sovereignty.sh
Apply Cloud for Sovereignty Landing Zone Deployment
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/apply-cloud-sovereignty.sh --help`
## Examples
```bash
./scripts/deployment/apply-cloud-sovereignty.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/deployment/azure-login.sh
Azure Login Helper Script
Helps authenticate with Azure CLI, especially for WSL users
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/azure-login.sh --help`
## Examples
```bash
./scripts/deployment/azure-login.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/begin-infrastructure-deployment.sh
Begin Chain-138 Infrastructure Deployment
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/begin-infrastructure-deployment.sh --help`
## Examples
```bash
./scripts/deployment/begin-infrastructure-deployment.sh --help
```

View File

@@ -0,0 +1,25 @@
# scripts/deployment/calculate-costs-consolidated.sh
**Name**: `calculate-costs-consolidated.sh`
Calculate deployment costs using costs.sh (supports JSON and text outputs)
**Uses common library**: yes
**Has --help**: yes
## Usage
`${SCRIPT_NAME} [--source auto|infura|conservative] [--format text|json] [--help]`
### Options
```
--source <name> Gas price source (default: auto)
--format <fmt> Output format (text|json)
--help Show help
```
## Examples
```bash
${SCRIPT_NAME} [--source auto|infura|conservative] [--format text|json] [--help]
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/check-all-deployment-sources.sh
Check all possible sources for deployment addresses
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/check-all-deployment-sources.sh --help`
## Examples
```bash
./scripts/deployment/check-all-deployment-sources.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/check-and-proceed.sh
Check infrastructure status and proceed with next steps if ready
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/check-and-proceed.sh --help`
## Examples
```bash
./scripts/deployment/check-and-proceed.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/check-deployment-status.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/check-deployment-status.sh --help`
## Examples
```bash
./scripts/deployment/check-deployment-status.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/check-existing-deployments.sh
Check for existing contract deployments on Ethereum Mainnet and Chain-138
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/check-existing-deployments.sh --help`
## Examples
```bash
./scripts/deployment/check-existing-deployments.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/check-infrastructure-status.sh
Check Infrastructure Deployment Status
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/check-infrastructure-status.sh --help`
## Examples
```bash
./scripts/deployment/check-infrastructure-status.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/check-mainnet-balances.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/check-mainnet-balances.sh --help`
## Examples
```bash
./scripts/deployment/check-mainnet-balances.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/check-mainnet-deployment-status.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/check-mainnet-deployment-status.sh --help`
## Examples
```bash
./scripts/deployment/check-mainnet-deployment-status.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/check-rpc-status.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/check-rpc-status.sh --help`
## Examples
```bash
./scripts/deployment/check-rpc-status.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/check-terraform-status.sh
Quick Terraform status checker
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/check-terraform-status.sh --help`
## Examples
```bash
./scripts/deployment/check-terraform-status.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/check-wallet-balances.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/check-wallet-balances.sh --help`
## Examples
```bash
./scripts/deployment/check-wallet-balances.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/deployment/cloudflare-dns.sh
Cloudflare DNS Configuration Script
Automates DNS record creation for d-bis.org domain
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/cloudflare-dns.sh --help`
## Examples
```bash
./scripts/deployment/cloudflare-dns.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/compile-test-mainnet-contracts.sh
Compile and test all Mainnet contracts
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/compile-test-mainnet-contracts.sh --help`
## Examples
```bash
./scripts/deployment/compile-test-mainnet-contracts.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/complete-all-deployment.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/complete-all-deployment.sh --help`
## Examples
```bash
./scripts/deployment/complete-all-deployment.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/complete-all-next-steps.sh
Complete All Next Steps - Chain-138 and Cloud for Sovereignty
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/complete-all-next-steps.sh --help`
## Examples
```bash
./scripts/deployment/complete-all-next-steps.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/deployment/complete-all-phases-parallel.sh
Complete All Phases - Full Parallel Execution
Orchestrates all deployment phases for 36-region deployment
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/complete-all-phases-parallel.sh --help`
## Examples
```bash
./scripts/deployment/complete-all-phases-parallel.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/complete-all-tasks.sh
Complete all remaining tasks
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/complete-all-tasks.sh --help`
## Examples
```bash
./scripts/deployment/complete-all-tasks.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/complete-infrastructure-deployment.sh
Complete Chain-138 Infrastructure Deployment
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/complete-infrastructure-deployment.sh --help`
## Examples
```bash
./scripts/deployment/complete-infrastructure-deployment.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/deployment/complete-phase2.sh
Complete Phase 2: Foundation Infrastructure
This script completes all Phase 2 tasks
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/complete-phase2.sh --help`
## Examples
```bash
./scripts/deployment/complete-phase2.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/configure-bridge-destinations.sh
Configure bridge destinations for cross-chain functionality
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/configure-bridge-destinations.sh --help`
## Examples
```bash
./scripts/deployment/configure-bridge-destinations.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/configure-weth10-bridge.sh
Configure CCIPWETH10Bridge destinations
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/configure-weth10-bridge.sh --help`
## Examples
```bash
./scripts/deployment/configure-weth10-bridge.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/configure-weth9-bridge.sh
Configure CCIPWETH9Bridge destinations
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/configure-weth9-bridge.sh --help`
## Examples
```bash
./scripts/deployment/configure-weth9-bridge.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/continue-infrastructure-deployment.sh
Continue Chain-138 Infrastructure Deployment
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/continue-infrastructure-deployment.sh --help`
## Examples
```bash
./scripts/deployment/continue-infrastructure-deployment.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/deployment/create-terraform-backend.sh
Create Terraform Backend Storage Account
This script creates the storage account for Terraform state if it doesn't exist
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/create-terraform-backend.sh --help`
## Examples
```bash
./scripts/deployment/create-terraform-backend.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/cross-check-chain138.sh
Cross-check Chain-138 deployment across all components
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/cross-check-chain138.sh --help`
## Examples
```bash
./scripts/deployment/cross-check-chain138.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/delete-bad-clusters.sh
Delete failed and canceled clusters so they can be recreated properly
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/delete-bad-clusters.sh --help`
## Examples
```bash
./scripts/deployment/delete-bad-clusters.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/deployment/deploy-36-region-infrastructure.sh
Deploy 36-Region Cloud for Sovereignty Infrastructure
Phase 2: Infrastructure Deployment
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/deploy-36-region-infrastructure.sh --help`
## Examples
```bash
./scripts/deployment/deploy-36-region-infrastructure.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-all-mainnet.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/deploy-all-mainnet.sh --help`
## Examples
```bash
./scripts/deployment/deploy-all-mainnet.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-all-ordered.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/deploy-all-ordered.sh --help`
## Examples
```bash
./scripts/deployment/deploy-all-ordered.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/deployment/deploy-all-phases.sh
Master deployment script for Chain-138 multi-region network
Deploys all phases in sequence with verification
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/deploy-all-phases.sh --help`
## Examples
```bash
./scripts/deployment/deploy-all-phases.sh --help
```

View File

@@ -0,0 +1,17 @@
# scripts/deployment/deploy-all.sh
Deploy All - Complete deployment automation for ChainID 138
This script automates the entire deployment process including infrastructure, contracts, and MetaMask integration
**Uses common library**: yes
**Has --help**: yes
## Usage
`./scripts/deployment/deploy-all.sh --help`
## Examples
```bash
./scripts/deployment/deploy-all.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-bridges-chain138.sh
Deploy bridges on Chain-138
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/deploy-bridges-chain138.sh --help`
## Examples
```bash
./scripts/deployment/deploy-bridges-chain138.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-bridges-mainnet.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/deploy-bridges-mainnet.sh --help`
## Examples
```bash
./scripts/deployment/deploy-bridges-mainnet.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-cacti.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/deploy-cacti.sh --help`
## Examples
```bash
./scripts/deployment/deploy-cacti.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-ccip-router.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/deploy-ccip-router.sh --help`
## Examples
```bash
./scripts/deployment/deploy-ccip-router.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-ccip-weth10-bridge.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/deploy-ccip-weth10-bridge.sh --help`
## Examples
```bash
./scripts/deployment/deploy-ccip-weth10-bridge.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-ccip-weth9-bridge.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/deploy-ccip-weth9-bridge.sh --help`
## Examples
```bash
./scripts/deployment/deploy-ccip-weth9-bridge.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-chain138-complete.sh
Complete Chain-138 deployment script
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/deploy-chain138-complete.sh --help`
## Examples
```bash
./scripts/deployment/deploy-chain138-complete.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-chain138-infrastructure.sh
Deploy Chain-138 Infrastructure
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/deploy-chain138-infrastructure.sh --help`
## Examples
```bash
./scripts/deployment/deploy-chain138-infrastructure.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-cloud-sovereignty-auto.sh
Automated Cloud for Sovereignty Landing Zone Deployment
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/deploy-cloud-sovereignty-auto.sh --help`
## Examples
```bash
./scripts/deployment/deploy-cloud-sovereignty-auto.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-cloud-sovereignty-foundation.sh
Deploy Cloud for Sovereignty Landing Zone Foundation
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/deploy-cloud-sovereignty-foundation.sh --help`
## Examples
```bash
./scripts/deployment/deploy-cloud-sovereignty-foundation.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-contracts-ordered.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/deploy-contracts-ordered.sh --help`
## Examples
```bash
./scripts/deployment/deploy-contracts-ordered.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-firefly.sh
No description provided.
**Uses common library**: yes
**Has --help**: no
## Usage
`./scripts/deployment/deploy-firefly.sh --help`
## Examples
```bash
./scripts/deployment/deploy-firefly.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-infrastructure-all-phases.sh
Deploy All Infrastructure Phases
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/deploy-infrastructure-all-phases.sh --help`
## Examples
```bash
./scripts/deployment/deploy-infrastructure-all-phases.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-infrastructure-phase1.sh
Phase 1: Deploy Azure Infrastructure
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/deploy-infrastructure-phase1.sh --help`
## Examples
```bash
./scripts/deployment/deploy-infrastructure-phase1.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-infrastructure-phase2.sh
Phase 2: Deploy Kubernetes Resources
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/deploy-infrastructure-phase2.sh --help`
## Examples
```bash
./scripts/deployment/deploy-infrastructure-phase2.sh --help
```

View File

@@ -0,0 +1,16 @@
# scripts/deployment/deploy-infrastructure-phase3.sh
Phase 3: Deploy Besu Network
**Uses common library**: no
**Has --help**: no
## Usage
`./scripts/deployment/deploy-infrastructure-phase3.sh --help`
## Examples
```bash
./scripts/deployment/deploy-infrastructure-phase3.sh --help
```

Some files were not shown because too many files have changed in this diff Show More