Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/test aws #186

Merged
merged 27 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0c2962e
fix: atlantic added in clap, get status code updated and snos branch …
Nov 23, 2024
19cc437
fix: aws corrections
heemankv Nov 29, 2024
d79b721
Merge remote-tracking branch 'origin/fix/atlantic' into fix/test-aws
Nov 29, 2024
670ad05
fix: atlantic tests and url update
Nov 29, 2024
5f2857b
update: starknet-os version
heemankv Nov 29, 2024
821bac9
verification values udpated for proving
Nov 29, 2024
6fc26bb
dockerfile updated
Nov 29, 2024
337323d
verification logic changed
Nov 30, 2024
cc0b11a
dockerfile updated
Nov 30, 2024
3454571
atlantic query response updated
Nov 30, 2024
6f6a00d
nack->ack and max 10 blocks in update state
apoorvsadana Nov 30, 2024
5c2fe48
fix: aws event bridge setup
heemankv Dec 3, 2024
c9b14d7
lint fix
heemankv Dec 3, 2024
35dc318
fix: lint
heemankv Dec 3, 2024
5c15ce6
update: delete storage setup
heemankv Dec 3, 2024
9074006
lint fixes
heemankv Dec 3, 2024
bce2bf8
fix: coverage
heemankv Dec 3, 2024
fc92c99
update: fixed serialization of trigger message
heemankv Dec 3, 2024
c1e3fe0
code cleanup
heemankv Dec 4, 2024
4dca57b
update: fix worker trigger for aws
heemankv Dec 4, 2024
64a7d28
update: re-fix CI issue
heemankv Dec 5, 2024
687e5b4
random commit to re-trigger CI
heemankv Dec 5, 2024
9eb4b55
update: added more metric
heemankv Dec 6, 2024
62bac48
update: Bucket Region from ENV
heemankv Dec 6, 2024
47a4675
update: fixed location constraint
heemankv Dec 9, 2024
8892386
update: reworked location constraint
heemankv Dec 9, 2024
0e5dc9a
fix: location constraint
heemankv Dec 9, 2024
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
6 changes: 6 additions & 0 deletions .env.test
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ AWS_ENDPOINT_URL=http://localhost.localstack.cloud:4566
# For Omniqueue
AWS_DEFAULT_REGION=localhost

# For EventBridge

MADARA_ORCHESTRATOR_EVENT_BRIDGE_TRIGGER_RULE_NAME=madara-orchestrator-worker-trigger



#### ALERTS ####

Expand Down Expand Up @@ -59,6 +64,7 @@ MADARA_ORCHESTRATOR_ATLANTIC_RPC_NODE_URL=http://127.0.0.1:8545

MADARA_ORCHESTRATOR_SQS_PREFIX=madara_orchestrator
MADARA_ORCHESTRATOR_SQS_SUFFIX=queue
MADARA_ORCHESTRATOR_EVENT_BRIDGE_TARGET_QUEUE_NAME=madara_orchestrator_worker_trigger_queue
MADARA_ORCHESTRATOR_SQS_BASE_QUEUE_URL=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000

#### SETTLEMENT ####
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## Fixed

- refactor: aws setup for Event Bridge
- refactor: RUST_LOG filtering support
- refactor: cargo.toml files cleaned
- blob data formation process from state update
Expand Down
113 changes: 81 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ aws-sdk-s3 = { version = "1.38.0", features = ["behavior-version-latest"] }
aws-sdk-eventbridge = { version = "1.41.0", features = [
"behavior-version-latest",
] }
aws-sdk-iam = "1.52.0"
aws-sdk-scheduler = "1.49.0"
aws-sdk-sns = { version = "1.40.0", features = ["behavior-version-latest"] }
aws-credential-types = { version = "1.2.1", features = [
"hardcoded-credentials",
Expand Down Expand Up @@ -122,17 +124,17 @@ tracing-subscriber = { version = "0.3.18", features = [
tracing-opentelemetry = "0.26.0"

# Cairo VM
cairo-vm = { git = "https://github.com/Moonsong-Labs/cairo-vm", branch = "herman/fix-pie-serialization", features = [
cairo-vm = { git = "https://github.com/Moonsong-Labs/cairo-vm", branch = "notlesh/snos-2024-11-04", features = [
"cairo-1-hints",
"extensive_hints",
"mod_builtin",
] }


# Snos & Sharp (Starkware)
# TODO: need to update this once the updated PR merges
starknet-os = { git = "https://github.com/Mohiiit/snos", rev = "2dcd3b0f0c6bfa368a802de12de29cd124c72bb8" }
prove_block = { git = "https://github.com/Mohiiit/snos", rev = "2dcd3b0f0c6bfa368a802de12de29cd124c72bb8" }

starknet-os = { git = "https://github.com/keep-starknet-strange/snos", branch = "tmp/snos_devnet_zero_txs" }
prove_block = { git = "https://github.com/keep-starknet-strange/snos", branch = "tmp/snos_devnet_zero_txs" }

# Madara prover API
madara-prover-common = { git = "https://github.com/Moonsong-Labs/madara-prover-api", branch = "od/use-latest-cairo-vm" }
Expand Down
Loading
Loading