-
Notifications
You must be signed in to change notification settings - Fork 7
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
[Blocked] feat: adding more fields to vault scalar #77
Closed
Closed
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
0d4d958
feat: adding updateCollateral function
jtfirek ef9f11b
chore: repushing to add new folder
jtfirek dce2cc6
chore: generating model for new rows in vault scalar
jtfirek 9c608cb
feat: colat amount for vaults
jtfirek 0a6aa4e
Merge branch 'master' into jacob/addingToVault
jtfirek 25fb5b5
feat: adding depositCollateral
jtfirek 278a195
feat:shell script to run the processor
jtfirek d8555a7
chore: trying to fix bug
jtfirek df4015b
fix: bug
jtfirek 69f496b
chore: fixing pr issues
jtfirek b10c36b
feat: adding pending BTC amount
jtfirek ffe4b70
feat: adding vault token check in oracle function
jtfirek 1705adc
chore: merging with master
jtfirek 8533013
chore: adding map
jtfirek 6695de1
feat: contiuing to add to the vaults
jtfirek 6bce822
chore: forgot to commit some of yesterdays code
jtfirek f5694a8
chore: pushing work from last few day
jtfirek 39c8deb
fix: fixing our use of store.get
jtfirek 214210e
Merge branch 'interlay:master' into jacob/addingToVault
jtfirek 84d101a
chore: generating types
jtfirek 8ca162c
chore: getting storage values for thresholds
jtfirek 437a401
chore: types working
jtfirek ba9b56e
chore: more progress
jtfirek d57088b
feat: adding more fields to vault
jtfirek 9965474
chore: refactoring oracle
jtfirek 302df31
chore: cleaning code
jtfirek 8fb1420
chore: cleaning code2
jtfirek ed07d7c
chore: cleaning code3
jtfirek File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 was deleted.
Oops, something went wrong.
50 changes: 25 additions & 25 deletions
50
db/migrations/1674556550397-Data.js → db/migrations/1676475974555-Data.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,13 @@ | ||
module.exports = class Data1678203850076 { | ||
name = 'Data1678203850076' | ||
|
||
async up(db) { | ||
await db.query(`ALTER TABLE "vault" DROP COLUMN "status_collateral"`) | ||
await db.query(`ALTER TABLE "vault" ADD "status_collateral" character varying(27) NOT NULL`) | ||
} | ||
|
||
async down(db) { | ||
await db.query(`ALTER TABLE "vault" ADD "status_collateral" character varying(16) NOT NULL`) | ||
await db.query(`ALTER TABLE "vault" DROP COLUMN "status_collateral"`) | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please restore this file so it doesn't mess with README instructions for quick starts.