-
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.
Merge pull request #34 from LibertyDSNP/feat-stake
Add feature: Provider can Stake
- Loading branch information
Showing
22 changed files
with
491 additions
and
140 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,8 +1,13 @@ | ||
UNAME := $(shell uname) | ||
|
||
integration-test: | ||
./scripts/run_integration_tests.sh | ||
tests-all: tests-unit tests-e2e | ||
|
||
integration-test-only: | ||
./scripts/run_integration_tests.sh -s | ||
tests-unit: | ||
@echo "---------------------------------------------" | ||
@echo "Running unit tests" | ||
@echo "---------------------------------------------" | ||
npm run test:ci | ||
|
||
tests-e2e: | ||
./scripts/run_e2e_tests.sh | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
<script lang="ts"> | ||
export let dismissed=false; | ||
const hide = (evt: Event) => { | ||
evt.preventDefault() | ||
dismissed = true; | ||
} | ||
export let dismissed = false; | ||
const hide = (evt: Event) => { | ||
dismissed = true; | ||
}; | ||
</script> | ||
|
||
<div class:hidden={dismissed}> | ||
<p>Frequency enables users to have control over their own data. | ||
While providers can send and receive messages on behalf of users, | ||
there is need for separation of control via | ||
delegator ⇛ provider, | ||
provider ⇋ delegator relationships in form of Permissions and Grants, | ||
respectively.</p> | ||
<p>Click OK to get started.</p> | ||
<button on:click={hide} on:keydown={hide}>Ok</button> | ||
<p> | ||
Frequency enables users to have control over their own data. While providers can send and receive messages on behalf | ||
of users, there is need for separation of control via delegator ⇛ provider, provider ⇋ delegator | ||
relationships in form of Permissions and Grants, respectively. | ||
</p> | ||
<p>Click OK to get started.</p> | ||
<button on:click|preventDefault={hide} on:keydown|preventDefault={hide}>Ok</button> | ||
</div> |
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.