-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit dfc38cc
Showing
32 changed files
with
14,580 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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 @@ | ||
<!DOCTYPE html><html><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><link rel="preload" href="/_next/static/css/b1e0a8c9b5b28421.css" as="style"/><link rel="stylesheet" href="/_next/static/css/b1e0a8c9b5b28421.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js"></script><script src="/_next/static/chunks/webpack-325cd72d8050e2f0.js" defer=""></script><script src="/_next/static/chunks/framework-0073b5da5bf4cc6a.js" defer=""></script><script src="/_next/static/chunks/main-c84ee0693d97f453.js" defer=""></script><script src="/_next/static/chunks/pages/_app-02782ae4bfda3283.js" defer=""></script><script src="/_next/static/chunks/pages/_error-74443ab98dfc2a66.js" defer=""></script><script src="/_next/static/F-lfcBT4o52jxnvzyprp1/_buildManifest.js" defer=""></script><script src="/_next/static/F-lfcBT4o52jxnvzyprp1/_ssgManifest.js" defer=""></script></head><body><div id="__next"><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div style="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.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)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">This page could not be found<!-- -->.</h2></div></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404}},"page":"/_error","query":{},"buildId":"F-lfcBT4o52jxnvzyprp1","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html> |
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 @@ | ||
self.__SSG_MANIFEST=new Set;self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB() |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
"use strict"; | ||
(self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([[733],{ | ||
|
||
/***/ 3733: | ||
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { | ||
|
||
/* harmony export */ __webpack_require__.d(__webpack_exports__, { | ||
/* harmony export */ Add: function() { return /* binding */ Add; } | ||
/* harmony export */ }); | ||
/* harmony import */ var o1js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9466); | ||
var __decorate = undefined && undefined.__decorate || function(decorators, target, key, desc) { | ||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; | ||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); | ||
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; | ||
return c > 3 && r && Object.defineProperty(target, key, r), r; | ||
}; | ||
var __metadata = undefined && undefined.__metadata || function(k, v) { | ||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); | ||
}; | ||
|
||
/** | ||
* Basic Example | ||
* See https://docs.minaprotocol.com/zkapps for more info. | ||
* | ||
* The Add contract initializes the state variable 'num' to be a Field(1) value by default when deployed. | ||
* When the 'update' method is called, the Add contract adds Field(2) to its 'num' contract state. | ||
* | ||
* This file is safe to delete and replace with your own contract. | ||
*/ class Add extends o1js__WEBPACK_IMPORTED_MODULE_0__/* .SmartContract */ .C3 { | ||
init() { | ||
super.init(); | ||
this.num.set((0,o1js__WEBPACK_IMPORTED_MODULE_0__/* .Field */ .gN)(1)); | ||
} | ||
async update() { | ||
const currentState = this.num.getAndRequireEquals(); | ||
const newState = currentState.add(2); | ||
this.num.set(newState); | ||
} | ||
async setValue(value) { | ||
this.num.set(value); | ||
} | ||
constructor(){ | ||
super(...arguments); | ||
this.num = (0,o1js__WEBPACK_IMPORTED_MODULE_0__/* .State */ .ZM)(); | ||
} | ||
} | ||
__decorate([ | ||
(0,o1js__WEBPACK_IMPORTED_MODULE_0__/* .state */ .SB)(o1js__WEBPACK_IMPORTED_MODULE_0__/* .Field */ .gN), | ||
__metadata("design:type", Object) | ||
], Add.prototype, "num", void 0); | ||
__decorate([ | ||
o1js__WEBPACK_IMPORTED_MODULE_0__/* .method */ .UD, | ||
__metadata("design:type", Function), | ||
__metadata("design:paramtypes", []), | ||
__metadata("design:returntype", Promise) | ||
], Add.prototype, "update", null); | ||
__decorate([ | ||
o1js__WEBPACK_IMPORTED_MODULE_0__/* .method */ .UD, | ||
__metadata("design:type", Function), | ||
__metadata("design:paramtypes", [ | ||
o1js__WEBPACK_IMPORTED_MODULE_0__/* .Field */ .gN | ||
]), | ||
__metadata("design:returntype", Promise) | ||
], Add.prototype, "setValue", null); //# sourceMappingURL=Add.js.map | ||
|
||
|
||
/***/ }) | ||
|
||
}]); |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.