Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 18 additions & 23 deletions examples/CRISP/enclave.config.yaml
Original file line number Diff line number Diff line change
@@ -1,58 +1,53 @@
chains:
- name: "hardhat"
rpc_url: "ws://localhost:8545"
- name: localhost
rpc_url: ws://localhost:8545
contracts:
e3_program:
address: "0xc5a5C42992dECbae36851359345FE25997F5C42d"
deploy_block: 1 # Set to actual deploy block
address: '0xc5a5C42992dECbae36851359345FE25997F5C42d'
deploy_block: 1
enclave:
address: "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0"
deploy_block: 1 # Set to actual deploy block
address: '0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0'
deploy_block: 13
ciphernode_registry:
address: "0x610178dA211FEF7D417bC0e6FeD39F05609AD788"
deploy_block: 1 # Set to actual deploy block
address: '0x610178dA211FEF7D417bC0e6FeD39F05609AD788'
deploy_block: 11
bonding_registry:
address: "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6"
deploy_block: 1 # Set to actual deploy block
address: '0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6'
deploy_block: 8
fee_token:
address: "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0"
deploy_block: 1 # Set to actual deploy block
address: '0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0'
deploy_block: 4

program:
dev: true
# risc0:
# risc0_dev_mode: 1 # 0 = real groth16 proofs, 1 = fake proofs (dev mode)
# bonsai_api_key: xxxxxxxxxxxxxxxx
# bonsai_api_url: xxxxxxxxxxxxxxxx

nodes:
cn1:
address: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8"
address: '0x70997970C51812dc3A010C7d01b50e0d17dc79C8'
quic_port: 9201
autonetkey: true
autopassword: true
cn2:
address: "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"
address: '0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC'
quic_port: 9202
autonetkey: true
autopassword: true
cn3:
address: "0x90F79bf6EB2c4f870365E785982E1f101E93b906"
address: '0x90F79bf6EB2c4f870365E785982E1f101E93b906'
quic_port: 9203
autonetkey: true
autopassword: true
cn4:
address: "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65"
address: '0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65'
quic_port: 9204
autonetkey: true
autopassword: true
cn5:
address: "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc"
address: '0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc'
quic_port: 9205
autonetkey: true
autopassword: true
ag:
address: "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266"
address: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266'
quic_port: 9206
autonetkey: true
autopassword: true
Expand Down
8 changes: 1 addition & 7 deletions examples/CRISP/packages/crisp-contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,19 +77,13 @@ const config: HardhatUserConfig = {
],
tasks: [cleanDeploymentsTask, ciphernodeAdd, ciphernodeAdminAdd, ciphernodeMintTokens],
networks: {
hardhat: {
type: "edr-simulated",
chainType: "l1",
},
localhost: {
accounts: {
mnemonic,
},
chainId: chainIds.hardhat,
url: "http://localhost:8545",
type: "http",
type: "edr-simulated",
chainType: "l1",
timeout: 60000,
},
ganache: {
accounts: {
Expand Down
Loading