forked from EquitXDev/equitxdev
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
loam init; initial oracle contract implementation
while not part of our specific app, i have started off by implementing the oracle contract so that we can build against it locally, and to exercise and learn about Loam SDK with a concrete example before getting into more open-ended territory.
- Loading branch information
Showing
21 changed files
with
10,807 additions
and
17 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Cargo.lock text -merge eol=lf linguist-generated=true -diff | ||
package-lock.json linguist-generated=true -diff |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Rust's output directory | ||
target | ||
|
||
# Local Soroban settings | ||
.soroban | ||
|
||
|
||
# The following is from the Frontend Template's .gitignore | ||
|
||
# soroban/Rust output | ||
target | ||
.soroban | ||
|
||
# build output | ||
dist/ | ||
|
||
# generated types | ||
.astro/ | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
# logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
|
||
# environment variables | ||
.env | ||
.env.production | ||
|
||
# macOS-specific files | ||
.DS_Store | ||
|
||
# generated contract clients | ||
packages/* | ||
# if you have other workspace packages, add them here | ||
!packages/.gitkeep | ||
|
||
# generated contract client imports | ||
src/contracts/* | ||
!src/contracts/util.ts |
Oops, something went wrong.