-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* refactor repo configs/readme * add codegen module * add common module * remove stale subgraphs/core modules * add contracts module * add order_book module * add order posting example * add generated api model * add python-dotenv package * refactor importing sort * refactor .env usage and variables requested * codegen: update reference openapi file for orderbook api codegen * add E2E_SEPOLIA_TESTING_EOA_PRIVATE_KEY to .env.example * codegen: regenerate order book models * api: refactor api base code to handle errors from orderbook api * orderbook: fix issue with type in order cancellation * tests(e2e): add e2e order posting test backed by vcr * ignore .env* files * api(orderbook): refactor data serialization/deserialization * tests(e2e): use gnosis mainnet for e2e test * ci: stop using deprecated version of actions/upload-artifact * chore: ignore pyright error when instantiating model with string positional param * chore: remove TODO/WIP comments from README * ci: ensure E2E_GNOSIS_MAINNET_TESTING_EOA_PRIVATE_KEY is available when running pytest * chore(ci): revert actions/upload-artifact to v3 to avoid bug when saving conflicting artifacts actions/upload-artifact#480 --------- Co-authored-by: José Ribeiro <[email protected]>
- Loading branch information
1 parent
0f163e8
commit 20bdb73
Showing
16 changed files
with
1,643 additions
and
1,380 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,2 +1,2 @@ | ||
USER_ADDRESS= | ||
PRIVATE_KEY= | ||
E2E_GNOSIS_MAINNET_TESTING_EOA_PRIVATE_KEY= |
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 |
---|---|---|
|
@@ -124,7 +124,7 @@ celerybeat.pid | |
*.sage.py | ||
|
||
# Environments | ||
.env | ||
.env* | ||
.venv | ||
env/ | ||
venv/ | ||
|
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
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.