Skip to content

Commit

Permalink
loam init; initial oracle contract implementation
Browse files Browse the repository at this point in the history
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
chadoh committed Jul 19, 2024
1 parent 6d60a3a commit 3ac25cd
Show file tree
Hide file tree
Showing 21 changed files with 10,807 additions and 17 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
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
43 changes: 43 additions & 0 deletions .gitignore
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
Loading

0 comments on commit 3ac25cd

Please sign in to comment.