Completed clean root directory structure: - Root now contains only: .git, .env, docs/, orig/ - Moved all remaining files and directories to orig/: - Config files (.claude, .dockerignore, .drone.yml, etc.) - All .env variants (except active .env) - Git config (.gitconfig, .github, .gitignore, etc.) - Tool configs (.golangci.yml, .revive.toml, etc.) - Documentation (*.md files, @prompts) - Build files (Dockerfiles, Makefile, go.mod, go.sum) - Docker compose files - All source directories (scripts, tests, tools, etc.) - Runtime directories (logs, monitoring, reports) - Dependency files (node_modules, lib, cache) - Special files (--delete) - Removed empty runtime directories (bin/, data/) V2 structure is now clean: - docs/planning/ - V2 planning documents - orig/ - Complete V1 codebase preserved - .env - Active environment config (not in git) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
812 B
JSON
24 lines
812 B
JSON
{
|
|
"name": "curve_usdc_usdt",
|
|
"description": "Curve stable swap example with 0.04% fee",
|
|
"pool": {
|
|
"address": "0x0000000000000000000000000000000000000006",
|
|
"exchange": "curve",
|
|
"token0": { "symbol": "USDC", "decimals": 6 },
|
|
"token1": { "symbol": "USDT", "decimals": 6 },
|
|
"reserve0": { "value": "1000000000000", "decimals": 6, "symbol": "USDC" },
|
|
"reserve1": { "value": "1000000000000", "decimals": 6, "symbol": "USDT" },
|
|
"fee": { "value": "4", "decimals": 4, "symbol": "FEE" },
|
|
"amplification": "100"
|
|
},
|
|
"tests": [
|
|
{
|
|
"name": "amount_out_1_usdc",
|
|
"type": "amount_out",
|
|
"amount_in": { "value": "1000000", "decimals": 6, "symbol": "USDC" },
|
|
"expected": { "value": "999600", "decimals": 6, "symbol": "USDT" },
|
|
"tolerance_bps": 1
|
|
}
|
|
]
|
|
}
|