This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
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 Agoric/mfig-sesify-ui
fix(ui): start using SES
- Loading branch information
Showing
7 changed files
with
26 additions
and
14 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,3 @@ | ||
agoric-wallet | ||
keys | ||
agoric-servers |
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 |
---|---|---|
|
@@ -149,11 +149,8 @@ <h1 class="mdc-typography--headline2">Fungible Token Faucet</h1> | |
|
||
|
||
<!-- Required Material Web JavaScript library --> | ||
<script src="https://unpkg.com/[email protected]/dist/material-components-web.min.js"></script> | ||
<script src="https://unpkg.com/material-components-web@^11.0.0/dist/material-components-web.min.js"></script> | ||
|
||
<script> | ||
</script> | ||
|
||
<script type="module" src="src/main.js"></script> | ||
<script type="module" src="src/main.js"></script> | ||
</body> | ||
</html> |
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 @@ | ||
/* eslint-disable import/no-extraneous-dependencies */ | ||
import 'ses/dist/ses.umd'; // adds lockdown, harden, and Compartment | ||
import '@agoric/eventual-send/shim'; // adds support needed by E | ||
|
||
// Help lock down the JS environment. The start compartment (current evaluation context) | ||
// can still access powerful globals, but this start compartment can use `new Compartment(...)` | ||
// to evaluate code with stricter confinement. | ||
lockdown({ | ||
errorTaming: 'unsafe', | ||
overrideTaming: 'severe', | ||
}); | ||
|
||
Error.stackTraceLimit = Infinity; |
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