Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
eb1a872
init: auction
arihantbansal Mar 12, 2025
2efa51a
bump to 0.1.40
arihantbansal Mar 26, 2025
cfb4699
wip
arihantbansal Mar 27, 2025
baa52ca
setup basic encrypted ixs
arihantbansal Apr 2, 2025
e912bdd
update to v0.1.41
arihantbansal Apr 3, 2025
36ccba5
wip
arihantbansal Apr 3, 2025
97a5235
feat: add reveal fns
arihantbansal Apr 5, 2025
ab65c6c
update deps
arihantbansal Apr 5, 2025
b82a8be
Merge branch 'main' into auction
arihantbansal Apr 5, 2025
09a0b78
add setup
arihantbansal Apr 5, 2025
8eb5d1b
Merge branch 'auction' of github.com:arcium-hq/examples into auction
arihantbansal Apr 5, 2025
21ab4a8
update to v0.1.42
arihantbansal Apr 10, 2025
2dabcd4
Merge branch 'main' into auction
arihantbansal Apr 10, 2025
9743873
Merge branch 'main' into auction
arihantbansal Apr 22, 2025
9fab863
Merge branch 'main' into auction
arihantbansal Apr 27, 2025
bcc5130
Merge branch 'main' into auction
arihantbansal Apr 30, 2025
96bfba1
Merge branch 'main' into auction
arihantbansal May 1, 2025
aa86fe4
wip: update to v0.1.46
arihantbansal May 1, 2025
3296db4
chore: update to latest
arihantbansal Jun 17, 2025
b0f22a6
chore: updated auction encrypted ixs
arihantbansal Jun 18, 2025
67bb80d
chore: init anchor fns
arihantbansal Jun 18, 2025
756714d
Merge branch 'main' into auction
arihantbansal Jun 18, 2025
e32cee0
chore: program should work
arihantbansal Jun 18, 2025
0030c83
wip
arihantbansal Jul 4, 2025
360ccbd
Merge branch 'main' into auction
arihantbansal Jul 20, 2025
fd4176c
v0.2.0
arihantbansal Aug 14, 2025
9caab54
fix: still wont work because struct gen
arihantbansal Aug 14, 2025
007e5a6
Merge branch 'main' into auction
arihantbansal Nov 6, 2025
3c4f03c
v0.4.0
arihantbansal Nov 6, 2025
cc565c7
feat: setup auction
arihantbansal Nov 8, 2025
63f0dd5
Merge branch 'main' into auction
arihantbansal Dec 5, 2025
f1dbc88
Merge branch 'main' into auction
arihantbansal Dec 6, 2025
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
9 changes: 9 additions & 0 deletions .cursorignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Add directories or file patterns to ignore during indexing (e.g. foo/ or *.csv)
**/target/**
**/node_modules/**
**/dist/**
**/build/**
**/logs/**
**/tmp/**
**/.anchor/**
**/artifacts/**
11 changes: 11 additions & 0 deletions sealed_bid_auction/.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 sealed_bid_auction/.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
19 changes: 19 additions & 0 deletions sealed_bid_auction/Anchor.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[toolchain]
package_manager = "yarn"

[features]
resolution = true
skip-lint = false

[programs.localnet]
sealed_bid_auction = "CESv7Nbw2pLa81oA7J4ZxrmRYqywP3HqMCWfwdeErt8s"

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

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

[scripts]
test = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 \"tests/**/*.ts\""
13 changes: 13 additions & 0 deletions sealed_bid_auction/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
Loading