hoodquidity/packages/contracts/lib/forge-std/test/fixtures/config.toml
Денис Зефиров dba2811447 Hoodquidity: liquidity campaigns for Robinhood Chain stock token markets
Full build: Vite/React acid-terminal frontend (BEARER design system,
Panchang/Sentient/Fragment Mono, neon layer, palette audit script),
HoodquidityVaults Foundry contracts (single+dual deposits via Chainlink-style
feeds, hybrid exit, 10% platform fee, boost, Genesis LP), Reown AppKit wallet
connect with Robinhood Chain testnet (46630), live data from Dexscreener and
onchain reads, partner portal, design-sync setup for claude.ai/design.

Deploy: static via Forgejo Actions platform, BUILD_DIR=apps/web/dist (.env).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-11 08:32:28 +04:00

81 lines
1.8 KiB
TOML

# ------------------------------------------------
# EXAMPLE DEPLOYMENT CONFIG
# ------------------------------------------------
# -- MAINNET -------------------------------------
[mainnet]
endpoint_url = "${MAINNET_RPC}"
[mainnet.bool]
is_live = true
bool_array = [true, false]
[mainnet.address]
weth = "${WETH_MAINNET}"
deps = [
"0x0000000000000000000000000000000000000000",
"0x1111111111111111111111111111111111111111",
]
[mainnet.uint]
number = 1234
number_array = [5678, 9999]
[mainnet.int]
signed_number = -1234
signed_number_array = [-5678, 9999]
[mainnet.bytes32]
word = "0x00000000000000000000000000000000000000000000000000000000000004d2" # 1234
word_array = [
"0x000000000000000000000000000000000000000000000000000000000000162e", # 5678
"0x000000000000000000000000000000000000000000000000000000000000270f", # 9999
]
[mainnet.bytes]
b = "0xabcd"
b_array = ["0xdead", "0xbeef"]
[mainnet.string]
str = "foo"
str_array = ["bar", "baz"]
# -- OPTIMISM ------------------------------------
[optimism]
endpoint_url = "${OPTIMISM_RPC}"
[optimism.bool]
is_live = false
bool_array = [false, true]
[optimism.address]
weth = "${WETH_OPTIMISM}"
deps = [
"0x2222222222222222222222222222222222222222",
"0x3333333333333333333333333333333333333333",
]
[optimism.uint]
number = 9999
number_array = [1234, 5678]
[optimism.int]
signed_number = 9999
signed_number_array = [-1234, -5678]
[optimism.bytes32]
word = "0x000000000000000000000000000000000000000000000000000000000000270f" # 9999
word_array = [
"0x00000000000000000000000000000000000000000000000000000000000004d2", # 1234
"0x000000000000000000000000000000000000000000000000000000000000162e", # 5678
]
[optimism.bytes]
b = "0xdcba"
b_array = ["0xc0ffee", "0xbabe"]
[optimism.string]
str = "alice"
str_array = ["bob", "charlie"]