Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
update out folder
Browse files Browse the repository at this point in the history
  • Loading branch information
SonYoungsung committed Sep 6, 2024
1 parent b523341 commit f286d53
Show file tree
Hide file tree
Showing 154 changed files with 4,563 additions and 3 deletions.
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const nextConfig = {
env: {
MODE: process.env.NEXT_PUBLIC_MODE,
},
output: "export",
// output: "export",
basePath: "/tosv2-interface",
images: {
unoptimized: true,
Expand Down
32 changes: 32 additions & 0 deletions out/404.html

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions out/500.html

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/Header.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/Header.js.nft.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"version":1,"files":["../webpack-runtime.js","../../package.json","../../../node_modules/next/head.js","../../../node_modules/next/package.json","../../../node_modules/react/package.json","../../../node_modules/react/jsx-runtime.js","../../../node_modules/next/dist/shared/lib/head.js","../../../node_modules/next/dist/shared/lib/utils.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/react/index.js","../../../node_modules/react/cjs/react-jsx-runtime.production.min.js","../../../node_modules/react/cjs/react-jsx-runtime.development.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp.js","../../../node_modules/react/cjs/react.production.min.js","../../../node_modules/react/cjs/react.development.js","../../../package.json"]}
2,046 changes: 2,046 additions & 0 deletions out/_app.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/_app.js.nft.json

Large diffs are not rendered by default.

705 changes: 705 additions & 0 deletions out/_document.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/_document.js.nft.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"version":1,"files":["../webpack-runtime.js","../chunks/4686.js","../chunks/9505.js","../../package.json","../../../node_modules/next/package.json","../../../node_modules/react/package.json","../../../node_modules/next/dist/server/get-page-files.js","../../../node_modules/next/dist/server/utils.js","../../../node_modules/next/dist/server/htmlescape.js","../../../node_modules/next/dist/shared/lib/utils.js","../../../node_modules/next/dist/shared/lib/constants.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../node_modules/next/dist/shared/lib/html-context.js","../../../node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","../../../node_modules/next/dist/shared/lib/router/utils/get-middleware-regex.js","../../../node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","../../../node_modules/next/dist/shared/lib/router/utils/route-matcher.js","../../../node_modules/next/dist/shared/lib/router/utils/route-regex.js","../../../node_modules/react/index.js","../../../node_modules/next/dist/shared/lib/page-path/normalize-page-path.js","../../../node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","../../../node_modules/next/dist/shared/lib/escape-regexp.js","../../../node_modules/react/cjs/react.production.min.js","../../../node_modules/react/cjs/react.development.js","../../../node_modules/next/dist/shared/lib/router/utils/index.js","../../../node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","../../../node_modules/next/dist/shared/lib/isomorphic/path.js","../../../node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","../../../node_modules/next/dist/compiled/path-browserify/package.json","../../../node_modules/next/dist/compiled/path-browserify/index.js","../../../package.json","../../../node_modules/next/dist/lib/pretty-bytes.js","../../../node_modules/next/dist/lib/is-error.js"]}
131 changes: 131 additions & 0 deletions out/_error.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
"use strict";
(() => {
var exports = {};
exports.id = 4820;
exports.ids = [4820];
exports.modules = {

/***/ 67:
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {


Object.defineProperty(exports, "__esModule", ({
value: true
}));
exports["default"] = void 0;
var _react = _interopRequireDefault(__webpack_require__(6689));
var _head = _interopRequireDefault(__webpack_require__(4957));
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
};
}
const statusCodes = {
400: "Bad Request",
404: "This page could not be found",
405: "Method Not Allowed",
500: "Internal Server Error"
};
function _getInitialProps({ res , err }) {
const statusCode = res && res.statusCode ? res.statusCode : err ? err.statusCode : 404;
return {
statusCode
};
}
class Error extends _react.default.Component {
render() {
const { statusCode } = this.props;
const title = this.props.title || statusCodes[statusCode] || "An unexpected error has occurred";
return /*#__PURE__*/ _react.default.createElement("div", {
style: styles.error
}, /*#__PURE__*/ _react.default.createElement(_head.default, null, /*#__PURE__*/ _react.default.createElement("title", null, statusCode ? `${statusCode}: ${title}` : "Application error: a client-side exception has occurred")), /*#__PURE__*/ _react.default.createElement("div", null, /*#__PURE__*/ _react.default.createElement("style", {
dangerouslySetInnerHTML: {
__html: `
body { margin: 0; color: #000; background: #fff; }
.next-error-h1 {
border-right: 1px solid rgba(0, 0, 0, .3);
}
@media (prefers-color-scheme: dark) {
body { color: #fff; background: #000; }
.next-error-h1 {
border-right: 1px solid rgba(255, 255, 255, .3);
}
}`
}
}), statusCode ? /*#__PURE__*/ _react.default.createElement("h1", {
className: "next-error-h1",
style: styles.h1
}, statusCode) : null, /*#__PURE__*/ _react.default.createElement("div", {
style: styles.desc
}, /*#__PURE__*/ _react.default.createElement("h2", {
style: styles.h2
}, this.props.title || statusCode ? title : /*#__PURE__*/ _react.default.createElement(_react.default.Fragment, null, "Application error: a client-side exception has occurred (see the browser console for more information)"), "."))));
}
}
exports["default"] = Error;
Error.displayName = "ErrorPage";
Error.getInitialProps = _getInitialProps;
Error.origGetInitialProps = _getInitialProps;
const styles = {
error: {
fontFamily: '-apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Fira Sans", Avenir, "Helvetica Neue", "Lucida Grande", sans-serif',
height: "100vh",
textAlign: "center",
display: "flex",
flexDirection: "column",
alignItems: "center",
justifyContent: "center"
},
desc: {
display: "inline-block",
textAlign: "left",
lineHeight: "49px",
height: "49px",
verticalAlign: "middle"
},
h1: {
display: "inline-block",
margin: 0,
marginRight: "20px",
padding: "10px 23px 10px 0",
fontSize: "24px",
fontWeight: 500,
verticalAlign: "top"
},
h2: {
fontSize: "14px",
fontWeight: "normal",
lineHeight: "inherit",
margin: 0,
padding: 0
}
}; //# sourceMappingURL=_error.js.map


/***/ }),

/***/ 4957:
/***/ ((module) => {

module.exports = require("next/dist/shared/lib/head.js");

/***/ }),

/***/ 6689:
/***/ ((module) => {

module.exports = require("react");

/***/ })

};
;

// load runtime
var __webpack_require__ = require("../webpack-runtime.js");
__webpack_require__.C(exports);
var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
var __webpack_exports__ = (__webpack_exec__(67));
module.exports = __webpack_exports__;

})();
1 change: 1 addition & 0 deletions out/_error.js.nft.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"version":1,"files":["../webpack-runtime.js","../../package.json","../../../node_modules/next/package.json","../../../node_modules/react/package.json","../../../node_modules/next/dist/shared/lib/head.js","../../../node_modules/next/dist/shared/lib/utils.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/react/index.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp.js","../../../node_modules/react/cjs/react.production.min.js","../../../node_modules/react/cjs/react.development.js","../../../package.json"]}
22 changes: 22 additions & 0 deletions out/bond.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/bond.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/BondCard.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/BondCard.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/BondCardContainer.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/BondCardContainer.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/BondCardSection.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/BondCardSection.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/BondModal.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/BondModal.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/BondSortSelect.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/BondSortSelect.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/BondTip.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/BondTip.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/MyCard.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/MyCard.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/MyCardSection.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/MyCardSection.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/MyHistory.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/MyHistory.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/StakeCheckbox.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/StakeCheckbox.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/TipMessage.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/TipMessage.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/TopCard.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/TopCard.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/TopCardContrainer.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/TopCardContrainer.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/modal/BondConfirm.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/bond/modal/BondConfirm.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/bond/modal/BondModal_BottomContent.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/common/GradientSpinner.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/common/GradientSpinner.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/common/card/TopCard.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/common/card/TopCard.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/common/card/TopCardContainer.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/common/card/TopCardContainer.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/common/modal/BottomContent.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/common/modal/BottomContent.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/common/modal/EndTime.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/common/modal/EndTime.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/common/modal/IBottomContent.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/common/modal/IBottomContent.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/common/modal/StakeGraph.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/common/modal/StakeGraph.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/common/modal/Tile.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/common/modal/Tile.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/common/tip/TipCard.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/common/tip/TipCard.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/dao/DaoTopContainer.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/dao/DaoTopContainer.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/dao/GraphContainer.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/dao/GraphContainer.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/dao/StatisticContainer.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/dao/StatisticContainer.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/dashboard/GraphContainer.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/dashboard/GraphContainer.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/dashboard/GraphFilter.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/dashboard/GraphFilter.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/dashboard/SmallCard.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/dashboard/SmallCard.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/dashboard/SmallCardContainer.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/dashboard/SmallCardContainer.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/global/NetworkModal.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/global/NetworkModal.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/global/Notice.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/global/Notice.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/intro/IntroCircle.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/intro/IntroCircle.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/intro/IntroContainer.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/intro/IntroContainer.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/intro/IntroText.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/intro/IntroText.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/layout.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/layout.js.nft.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"version":1,"files":["../../webpack-runtime.js","../../../package.json"]}
22 changes: 22 additions & 0 deletions out/components/layout/AccountDrawer.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/layout/AccountDrawer.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/layout/Footer.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/layout/Footer.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/layout/Header.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/layout/Header.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/layout/PageLayout.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/layout/PageLayout.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/layout/PageTitle.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/layout/PageTitle.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/layout/components/NetworkIcon.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/layout/components/NetworkIcon.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/layout/components/WalletIconLayout.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/navBar.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/navBar.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/navBar/Logo.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/navBar/Logo.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/navBar/MenuItem.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/navBar/MenuItem.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/BondRadioGroup.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/stake/BondRadioGroup.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/MsgComponent.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/stake/MsgComponent.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/MultiUnstakeModal.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/stake/MultiUnstakeModal.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/StakeCard.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/stake/StakeCard.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/StakeCardContainer.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/stake/StakeCardContainer.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/StakeCardSection.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/stake/StakeCardSection.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/StakeModal.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/stake/StakeModal.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/StakeScreenBottom.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/stake/StakeScreenBottom.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/StakeSortSelect.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/stake/StakeSortSelect.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/StakeTitle.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/stake/StakeTitle.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/UnstakeModal.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/stake/UnstakeModal.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/UpdateModal.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/stake/UpdateModal.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/UpdateModalAfterEndTime.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/components/stake/UpdateModalAfterEndTime.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/modal/ManageModal_BottomContent.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/modal/RelockModal_BottomContent.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/components/stake/modal/StakeModal_BottomContent.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/dao.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/dao.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/dashboard.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/dashboard.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/entry.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/entry.js.nft.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions out/index.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/index.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/intro.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/intro.js.nft.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions out/stake.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions out/stake.js.nft.json

Large diffs are not rendered by default.

0 comments on commit f286d53

Please sign in to comment.