Skip to content
Open
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
7 changes: 6 additions & 1 deletion Zero/apps/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,12 @@
"ulid": "3.0.1",
"uuid": "11.1.0",
"wrangler": "catalog:",
"zod": "catalog:"
"zod": "catalog:",
"solana-agent-kit": "^2.0.10",
"@langchain/openai": "^1.1.3",
"@langchain/langgraph": "^1.0.2",
"@solana/web3.js": "^1.98.4",
"bs58": "^6.0.0"
},
"devDependencies": {
"@effect/language-service": "0.31.1",
Expand Down
3 changes: 3 additions & 0 deletions Zero/arcium_mxe/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[target.sbpf-solana-solana]
rustflags = ["--cfg", "getrandom_backend=\"custom\""]

11 changes: 11 additions & 0 deletions Zero/arcium_mxe/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.anchor
.DS_Store
target
**/*.rs.bk
node_modules
test-ledger
.yarn
encrypted-ixs/arcis_temp_target
build
encrypted-ixs/src/main.rs
artifacts/
7 changes: 7 additions & 0 deletions Zero/arcium_mxe/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.anchor
.DS_Store
target
node_modules
dist
build
test-ledger
24 changes: 24 additions & 0 deletions Zero/arcium_mxe/Anchor.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[toolchain]
package_manager = "pnpm"

[features]
resolution = true
skip-lint = false

[programs.devnet]
arcium_mxe = "8qbRSancKocbWrqkrr5EJGFMMjGunK2rJYgfJn5heZyH"

[programs.localnet]
arcium_mxe = "3zCEhhfBEYKiGDYw2tBrz7tVYa1QCDMWTdQFjyLMrWHp"

[registry]
url = "https://api.apr.dev"

[provider]
cluster = "localnet"
wallet = "~/.config/solana/id.json"

[scripts]
test = "pnpm run ts-mocha -p ./tsconfig.json -t 1000000 \"tests/**/*.ts\""

[hooks]
13 changes: 13 additions & 0 deletions Zero/arcium_mxe/Arcium.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[localnet]
# number of nodes in the single cluster of the localnet
nodes = 2
# number of seconds to wait for the localnet to come online
localnet_timeout_secs = 60
# MPC backends this MXE supports (default: ["Cerberus"])
# Supported values: "Cerberus", "Manticore", or both
# Examples: backends = ["Cerberus"] or backends = ["Cerberus", "Manticore"]
backends = ["Cerberus"]
# Required when backends includes "Manticore"
# Each path is copied to corresponding node's artifacts/manticore/computation_folder_N
# Example: manticore_data_folders = ["./data/player-0", "./data/player-1"]
# manticore_data_folders = []
Loading