-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/alerts-module
- Loading branch information
Showing
28 changed files
with
1,837 additions
and
371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,65 @@ | ||
HOST= | ||
PORT= | ||
DATABASE_URL= | ||
MADARA_RPC_URL= | ||
DA_LAYER= | ||
SETTLEMENT_LAYER= | ||
|
||
# Ethereum | ||
ETHEREUM_PRIVATE_KEY= | ||
ETHEREUM_RPC_URL= | ||
MEMORY_PAGES_CONTRACT_ADDRESS= | ||
STARKNET_SOLIDITY_CORE_CONTRACT_ADDRESS= | ||
##### ORCHESTRATOR ##### | ||
|
||
HOST= | ||
PORT= | ||
|
||
# Starknet | ||
STARKNET_PUBLIC_KEY= | ||
STARNET_PRIVATE_KEY= | ||
STARKNET_RPC_URL= | ||
STARKNET_CAIRO_CORE_CONTRACT_ADDRESS= | ||
|
||
# MongoDB connection string | ||
MONGODB_CONNECTION_STRING= | ||
##### AWS CONFIG ##### | ||
|
||
# AWS | ||
AWS_ACCESS_KEY_ID= | ||
AWS_SECRET_ACCESS_KEY= | ||
AWS_DEFAULT_REGION= | ||
AWS_REGION= | ||
AWS_ENDPOINT_URL= | ||
|
||
##### STORAGE ##### | ||
|
||
DATA_STORAGE= | ||
AWS_S3_BUCKET_NAME= | ||
|
||
# SQS | ||
##### QUEUE ##### | ||
|
||
QUEUE_PROVIDER= | ||
SQS_JOB_PROCESSING_QUEUE_URL= | ||
SQS_JOB_VERIFICATION_QUEUE_URL= | ||
SQS_JOB_HANDLE_FAILURE_QUEUE_URL= | ||
SQS_WORKER_TRIGGER_QUEUE_URL= | ||
|
||
# S3 | ||
AWS_S3_BUCKET_NAME= | ||
AWS_S3_BUCKET_REGION= | ||
##### DATABASE ##### | ||
|
||
# SNS | ||
AWS_SNS_REGION= | ||
AWS_SNS_ARN= | ||
AWS_SNS_ARN_NAME= | ||
DATABASE= | ||
MONGODB_CONNECTION_STRING= | ||
|
||
##### PROVER ##### | ||
|
||
# Sharp Services | ||
PROVER_SERVICE= | ||
SHARP_CUSTOMER_ID= | ||
SHARP_URL= | ||
# [IMP!!!] These are test certificates (they don't work) | ||
SHARP_USER_CRT= | ||
SHARP_USER_KEY= | ||
SHARP_SERVER_CRT= | ||
SHARP_PROOF_LAYOUT= | ||
|
||
##### ON CHAIN CONFIG ##### | ||
|
||
DA_LAYER= | ||
SETTLEMENT_LAYER= | ||
ETHEREUM_RPC_URL= | ||
MADARA_RPC_URL= | ||
MEMORY_PAGES_CONTRACT_ADDRESS= | ||
PRIVATE_KEY= | ||
ETHEREUM_PRIVATE_KEY= | ||
STARKNET_SOLIDITY_CORE_CONTRACT_ADDRESS= | ||
|
||
##### ALERTS ##### | ||
|
||
AWS_SNS_REGION= | ||
AWS_SNS_ARN= | ||
AWS_SNS_ARN_NAME= | ||
|
||
##### SETTLEMENT CLIENT ##### | ||
|
||
DEFAULT_SETTLEMENT_CLIENT_RPC= | ||
DEFAULT_L1_CORE_CONTRACT_ADDRESS= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ name: Task - Linters Cargo | |
on: | ||
workflow_dispatch: | ||
workflow_call: | ||
push: | ||
|
||
jobs: | ||
cargo-lint: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ name: Task - Linters | |
on: | ||
workflow_dispatch: | ||
workflow_call: | ||
push: | ||
|
||
jobs: | ||
prettier: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ name: Task - Build Rust | |
on: | ||
workflow_dispatch: | ||
workflow_call: | ||
push: | ||
|
||
jobs: | ||
rust_build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.