forked from Dshield-xyz/Dshield
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
277 lines (239 loc) · 12.7 KB
/
Copy pathjustfile
File metadata and controls
277 lines (239 loc) · 12.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
set dotenv-load
export PATH := env("HOME") + "/.bb:" + env("HOME") + "/.nargo/bin:" + env("PATH")
export STELLAR_NETWORK := env("STELLAR_NETWORK", "local")
default:
@just --list
# Check all dependencies are installed
setup:
@echo "Checking dependencies..."
@nargo --version
@bb --version
@stellar --version | head -1
@just --version
@rustup target list --installed | grep wasm
@echo "All dependencies OK."
# Start Stellar localnet with Protocol 26 (future) and unlimited resource limits
start:
stellar container start -t future --name stellar-local --limits unlimited
@echo "Waiting for RPC to become healthy..."
@until curl -s http://localhost:8000/soroban/rpc -X POST -H 'Content-Type: application/json' -d '{"jsonrpc":"2.0","id":1,"method":"getHealth"}' 2>/dev/null | grep -q '"status"'; do sleep 3; done
@echo "Localnet ready at http://localhost:8000"
# Stop Stellar localnet
stop:
stellar container stop stellar-local 2>/dev/null || true
# Fund the deployer account on localnet
fund:
stellar keys generate alice --network local 2>/dev/null || true
@echo "Account funded."
# Compile all Noir circuits and generate VKs
build-circuits:
@echo "Building shielded_pool circuit..."
cd circuits/shielded_pool && nargo compile
cd circuits/shielded_pool && bb write_vk --scheme ultra_honk --oracle_hash keccak --bytecode_path target/shielded_pool.json --output_path target --output_format bytes_and_fields
@echo "Building compliance circuit..."
cd circuits/compliance && nargo compile
cd circuits/compliance && bb write_vk --scheme ultra_honk --oracle_hash keccak --bytecode_path target/compliance.json --output_path target --output_format bytes_and_fields
@echo "Building disclosure circuit..."
cd circuits/disclosure && nargo compile
cd circuits/disclosure && bb write_vk --scheme ultra_honk --oracle_hash keccak --bytecode_path target/disclosure.json --output_path target --output_format bytes_and_fields
@echo "All circuits built."
# Generate a test proof from the shielded_pool circuit
prove-pool:
cd circuits/shielded_pool && nargo execute
cd circuits/shielded_pool && bb prove --scheme ultra_honk --oracle_hash keccak --bytecode_path target/shielded_pool.json --witness_path target/shielded_pool.gz --output_path target --output_format bytes_and_fields
@echo "Pool proof generated."
# Generate a test proof from the compliance circuit
prove-compliance:
cd circuits/compliance && nargo execute
cd circuits/compliance && bb prove --scheme ultra_honk --oracle_hash keccak --bytecode_path target/compliance.json --witness_path target/compliance.gz --output_path target --output_format bytes_and_fields
@echo "Compliance proof generated."
# Verify pool proof locally (off-chain)
verify-pool:
cd circuits/shielded_pool && bb verify -s ultra_honk --oracle_hash keccak -k target/vk -p target/proof -i target/public_inputs
@echo "Pool proof verified."
# Generate a test proof from the disclosure circuit
prove-disclosure:
cd circuits/disclosure && nargo execute
cd circuits/disclosure && bb prove --scheme ultra_honk --oracle_hash keccak --bytecode_path target/disclosure.json --witness_path target/disclosure.gz --output_path target --output_format bytes_and_fields
@echo "Disclosure proof generated."
# Verify compliance proof locally (off-chain)
verify-compliance:
cd circuits/compliance && bb verify -s ultra_honk --oracle_hash keccak -k target/vk -p target/proof -i target/public_inputs
@echo "Compliance proof verified."
# Verify disclosure proof locally (off-chain)
verify-disclosure:
cd circuits/disclosure && bb verify -s ultra_honk --oracle_hash keccak -k target/vk -p target/proof -i target/public_inputs
@echo "Disclosure proof verified."
# Build Soroban contract WASM binaries
build-contracts:
stellar contract build
@echo "Contracts built:"
@ls -la target/wasm32v1-none/release/*.wasm
# Build everything (circuits + contracts)
build: build-circuits build-contracts
# Deploy all contracts to the network
# Deploy all contracts. Pass `testnet` to target Stellar testnet, e.g.
# `just deploy testnet`; defaults to the local quickstart network.
deploy network="local": build
#!/usr/bin/env bash
set -euo pipefail
NETWORK="{{network}}"
if [ "$NETWORK" = "testnet" ]; then
RPC_URL="https://soroban-testnet.stellar.org"
PASSPHRASE="Test SDF Network ; September 2015"
FRIENDBOT="https://friendbot.stellar.org/?addr="
# Make sure the CLI knows the testnet network (idempotent).
stellar network add testnet --rpc-url "$RPC_URL" \
--network-passphrase "$PASSPHRASE" 2>/dev/null || true
else
RPC_URL="http://localhost:8000/soroban/rpc"
PASSPHRASE="Standalone Network ; February 2017"
FRIENDBOT="http://localhost:8000/friendbot?addr="
fi
echo "Deploying to network: $NETWORK"
# Ensure the deployer + issuer + relayer exist and are funded (friendbot is
# idempotent). On testnet this funds via the public friendbot. The relayer
# submits withdrawals on users' behalf so their accounts stay off-chain.
stellar keys generate alice --network "$NETWORK" 2>/dev/null || true
stellar keys generate usdc-issuer --network "$NETWORK" 2>/dev/null || true
stellar keys generate relayer --network "$NETWORK" 2>/dev/null || true
ALICE_ADDR=$(stellar keys address alice)
ISSUER_ADDR=$(stellar keys address usdc-issuer)
RELAYER_ADDR=$(stellar keys address relayer)
curl -s "${FRIENDBOT}${ALICE_ADDR}" >/dev/null 2>&1 || true
curl -s "${FRIENDBOT}${ISSUER_ADDR}" >/dev/null 2>&1 || true
curl -s "${FRIENDBOT}${RELAYER_ADDR}" >/dev/null 2>&1 || true
echo "Deploying verifier contract..."
VERIFIER_ID=$(stellar contract deploy \
--wasm target/wasm32v1-none/release/dshield_verifier.wasm \
--source alice \
--network "$NETWORK" \
-- \
--vk_bytes-file-path circuits/shielded_pool/target/vk)
echo "Verifier deployed: $VERIFIER_ID"
echo "$VERIFIER_ID" > .verifier_id
echo "Deploying USDC test token..."
# Use a SEPARATE issuer so the deployer (alice) is a normal holder. A SAC
# cannot mint to its own issuer ("operation invalid on issuer"), so alice
# must not be the issuer.
# The SAC address is deterministic; deploying an already-deployed asset
# errors, so derive the id and only deploy if it isn't there yet. Deploy
# from alice (already funded) — SAC deployment is permissionless and the
# admin still becomes the issuer.
TOKEN_ID=$(stellar contract id asset --asset "USDC:$ISSUER_ADDR" --network "$NETWORK" 2>&1 | tail -1)
if ! stellar contract invoke --id "$TOKEN_ID" --source alice --network "$NETWORK" -- name >/dev/null 2>&1; then
stellar contract asset deploy --asset "USDC:$ISSUER_ADDR" --source alice --network "$NETWORK" >/dev/null 2>&1
fi
echo "USDC token: $TOKEN_ID"
echo "$TOKEN_ID" > .token_id
echo "Establishing deployer trustline to USDC..."
# Classic assets require a trustline before an account can hold them.
stellar tx new change-trust --source alice --line "USDC:$ISSUER_ADDR" --network "$NETWORK" >/dev/null 2>&1 || true
echo "Minting USDC to deployer..."
stellar contract invoke --id "$TOKEN_ID" --source usdc-issuer --network "$NETWORK" --send=yes \
-- mint --to "$ALICE_ADDR" --amount 10000000000000 > /dev/null 2>&1
echo "Deployer funded with 1,000,000 USDC"
echo "Deploying pool tiers (10, 100, 1000 USDC)..."
POOL_10=$(stellar contract deploy \
--wasm target/wasm32v1-none/release/dshield_pool.wasm \
--source alice --network "$NETWORK" \
-- --verifier "$VERIFIER_ID" --token "$TOKEN_ID" --deposit_amount 100000000)
echo "Pool 10 USDC: $POOL_10"
POOL_100=$(stellar contract deploy \
--wasm target/wasm32v1-none/release/dshield_pool.wasm \
--source alice --network "$NETWORK" \
-- --verifier "$VERIFIER_ID" --token "$TOKEN_ID" --deposit_amount 1000000000)
echo "Pool 100 USDC: $POOL_100"
POOL_1000=$(stellar contract deploy \
--wasm target/wasm32v1-none/release/dshield_pool.wasm \
--source alice --network "$NETWORK" \
-- --verifier "$VERIFIER_ID" --token "$TOKEN_ID" --deposit_amount 10000000000)
echo "Pool 1000 USDC: $POOL_1000"
echo "$POOL_10" > .pool_id
echo "POOL_TIERS=10 USDC:$POOL_10:100000000,100 USDC:$POOL_100:1000000000,1000 USDC:$POOL_1000:10000000000"
ADMIN_ADDR=$ALICE_ADDR
echo "Deploying compliance contract..."
# pools: the tier pool addresses the compliance contract cross-references
# to validate that a proof's merkle_root and disclosed_amount/threshold
# actually correspond to a real pool's fixed deposit_amount (see
# amount_for_root in contracts/compliance/src/lib.rs) — otherwise a
# prover could self-assert any amount.
COMPLIANCE_ID=$(stellar contract deploy \
--wasm target/wasm32v1-none/release/dshield_compliance.wasm \
--source alice \
--network "$NETWORK" \
-- \
--vk_bytes-file-path circuits/compliance/target/vk \
--admin "$ADMIN_ADDR" \
--pools "[\"$POOL_10\",\"$POOL_100\",\"$POOL_1000\"]")
echo "Compliance deployed: $COMPLIANCE_ID"
echo "$COMPLIANCE_ID" > .compliance_id
echo "Setting disclosure VK on compliance contract..."
stellar contract invoke --id "$COMPLIANCE_ID" --source alice --network "$NETWORK" --send=yes \
-- set_disclosure_vk --vk_bytes-file-path circuits/disclosure/target/vk >/dev/null
echo "Disclosure VK set."
echo "Writing frontend/.env.local..."
# Use alice as the dev wallet so the app deposits from the account that
# holds USDC + the trustline. Throwaway key (local/testnet only).
ISSUER_SECRET=$(stellar keys show usdc-issuer 2>/dev/null || stellar keys secret usdc-issuer 2>/dev/null || true)
RELAYER_SECRET=$(stellar keys show relayer 2>/dev/null || stellar keys secret relayer 2>/dev/null || true)
ADMIN_SECRET=$(stellar keys show alice 2>/dev/null || stellar keys secret alice 2>/dev/null || true)
# Shared secret required as the x-admin-key header on /api/register-kyc
# (that route grants "KYC verified" status, so it must not be callable by
# an arbitrary visitor). Reused across redeploys if already set.
KYC_ADMIN_API_KEY=$(grep -m1 '^KYC_ADMIN_API_KEY=' frontend/.env.local 2>/dev/null | cut -d= -f2- || true)
[ -n "$KYC_ADMIN_API_KEY" ] || KYC_ADMIN_API_KEY=$(openssl rand -hex 24)
# Only inject the dev secret key for local deployments (auto-connects a
# funded wallet). For testnet/production, users connect via Freighter.
if [ "$NETWORK" = "local" ]; then
ALICE_SECRET=$(stellar keys show alice 2>/dev/null || stellar keys secret alice 2>/dev/null || true)
DEV_KEY_LINE="NEXT_PUBLIC_DEV_SECRET_KEY=$ALICE_SECRET"
else
DEV_KEY_LINE="NEXT_PUBLIC_DEV_SECRET_KEY="
fi
cat > frontend/.env.local <<EOF
NEXT_PUBLIC_RPC_URL=$RPC_URL
NEXT_PUBLIC_NETWORK_PASSPHRASE=$PASSPHRASE
$DEV_KEY_LINE
NEXT_PUBLIC_USDC_CODE=USDC
NEXT_PUBLIC_USDC_ISSUER=$ISSUER_ADDR
USDC_ISSUER_SECRET=$ISSUER_SECRET
RELAYER_SECRET=$RELAYER_SECRET
COMPLIANCE_ADMIN_SECRET=$ADMIN_SECRET
KYC_ADMIN_API_KEY=$KYC_ADMIN_API_KEY
NEXT_PUBLIC_POOL_CONTRACT_ID=$POOL_10
NEXT_PUBLIC_POOL_TIERS=10 USDC:$POOL_10:100000000,100 USDC:$POOL_100:1000000000,1000 USDC:$POOL_1000:10000000000
NEXT_PUBLIC_COMPLIANCE_CONTRACT_ID=$COMPLIANCE_ID
EOF
# Strip the leading indentation the recipe block adds.
sed -i 's/^ //' frontend/.env.local
echo "Frontend env updated. Restart the dev server to pick up new contract IDs."
# Run the full end-to-end pipeline on localnet
e2e: start fund deploy
@echo "End-to-end pipeline complete."
# Demo the privacy loop on-chain: deposit -> ZK proof -> relayed withdraw.
# Run against the active deployment; needs a freshly deployed pool.
# e.g. `just deploy testnet && just demo testnet`
demo network="local":
bash scripts/demo.sh {{network}}
# Demo the compliant-disclosure loop on-chain: register KYC -> ZK proof ->
# verify_compliance, plus a negative KYC-gate check. e.g. `just demo-compliance testnet`
demo-compliance network="local":
bash scripts/demo-compliance.sh {{network}}
# Run contract unit tests
test-contracts:
cargo test --workspace
# Run frontend unit tests
test-frontend:
cd frontend && pnpm test
# Run all unit tests
test: test-contracts test-frontend
# Run E2E integration tests
test-e2e:
./tests/e2e.sh
# Clean up artifacts and containers
clean:
stellar container stop stellar-local 2>/dev/null || true
rm -f .verifier_id .pool_id .compliance_id
rm -rf circuits/shielded_pool/target circuits/compliance/target circuits/disclosure/target
@echo "Cleaned."