From 2d1ac275bae7ab3a16c10c0f272b5da6fda21d10 Mon Sep 17 00:00:00 2001 From: jipstavenuiter Date: Mon, 25 Dec 2023 14:16:09 +0100 Subject: [PATCH 1/2] (chore): deprecate goerli --- .gitignore | 5 + .../app/hooks/useHypercertClient.js | 2 +- .../app/hooks/useHypercertClient.ts | 2 +- apps/server-http/dist/index.js | 175 +----------------- apps/server-http/dist/index.js.map | 2 +- apps/server-http/src/app.js | 2 +- 6 files changed, 14 insertions(+), 174 deletions(-) diff --git a/.gitignore b/.gitignore index 030020b..fc4bea3 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,8 @@ yarn-error.log* # typescript *.tsbuildinfo next-env.d.ts +/.idea/inspectionProfiles/Project_Default.xml +/.idea/.gitignore +/.idea/demo-apps.iml +/.idea/modules.xml +/.idea/vcs.xml diff --git a/apps/nextjs-hypercerts/app/hooks/useHypercertClient.js b/apps/nextjs-hypercerts/app/hooks/useHypercertClient.js index 2207ac5..19681b3 100644 --- a/apps/nextjs-hypercerts/app/hooks/useHypercertClient.js +++ b/apps/nextjs-hypercerts/app/hooks/useHypercertClient.js @@ -1,7 +1,7 @@ import { HypercertClient } from "@hypercerts-org/sdk"; const useHypercertClient = () => { - const client = new HypercertClient({ chain: { id: 5 } }); + const client = new HypercertClient({ chain: { id: 11155111 } }); return { client }; }; diff --git a/apps/nextjs-ts-hypercerts/app/hooks/useHypercertClient.ts b/apps/nextjs-ts-hypercerts/app/hooks/useHypercertClient.ts index 2207ac5..19681b3 100644 --- a/apps/nextjs-ts-hypercerts/app/hooks/useHypercertClient.ts +++ b/apps/nextjs-ts-hypercerts/app/hooks/useHypercertClient.ts @@ -1,7 +1,7 @@ import { HypercertClient } from "@hypercerts-org/sdk"; const useHypercertClient = () => { - const client = new HypercertClient({ chain: { id: 5 } }); + const client = new HypercertClient({ chain: { id: 11155111 } }); return { client }; }; diff --git a/apps/server-http/dist/index.js b/apps/server-http/dist/index.js index 4e8b586..ba13967 100644 --- a/apps/server-http/dist/index.js +++ b/apps/server-http/dist/index.js @@ -1,171 +1,6 @@ -// modules are defined as an array -// [ module function, map of requires ] -// -// map of requires is short require name -> numeric require -// -// anything defined in a previous bundle is accessed via the -// orig method which is the require for previous bundles -parcelRequire = (function (modules, cache, entry, globalName) { - // Save the require from previous bundle to this closure if any - var previousRequire = typeof parcelRequire === 'function' && parcelRequire; - var nodeRequire = typeof require === 'function' && require; - - function newRequire(name, jumped) { - if (!cache[name]) { - if (!modules[name]) { - // if we cannot find the module within our internal map or - // cache jump to the current global require ie. the last bundle - // that was added to the page. - var currentRequire = typeof parcelRequire === 'function' && parcelRequire; - if (!jumped && currentRequire) { - return currentRequire(name, true); - } - - // If there are other bundles on this page the require from the - // previous one is saved to 'previousRequire'. Repeat this as - // many times as there are bundles until the module is found or - // we exhaust the require chain. - if (previousRequire) { - return previousRequire(name, true); - } - - // Try the node require function if it exists. - if (nodeRequire && typeof name === 'string') { - return nodeRequire(name); - } - - var err = new Error('Cannot find module \'' + name + '\''); - err.code = 'MODULE_NOT_FOUND'; - throw err; - } - - localRequire.resolve = resolve; - localRequire.cache = {}; - - var module = cache[name] = new newRequire.Module(name); - - modules[name][0].call(module.exports, localRequire, module, module.exports, this); - } - - return cache[name].exports; - - function localRequire(x){ - return newRequire(localRequire.resolve(x)); - } - - function resolve(x){ - return modules[name][1][x] || x; - } - } - - function Module(moduleName) { - this.id = moduleName; - this.bundle = newRequire; - this.exports = {}; - } - - newRequire.isParcelRequire = true; - newRequire.Module = Module; - newRequire.modules = modules; - newRequire.cache = cache; - newRequire.parent = previousRequire; - newRequire.register = function (id, exports) { - modules[id] = [function (require, module) { - module.exports = exports; - }, {}]; - }; - - var error; - for (var i = 0; i < entry.length; i++) { - try { - newRequire(entry[i]); - } catch (e) { - // Save first error but execute all entries - if (!error) { - error = e; - } - } - } - - if (entry.length) { - // Expose entry point to Node, AMD or browser globals - // Based on https://github.com/ForbesLindesay/umd/blob/master/template.js - var mainExports = newRequire(entry[entry.length - 1]); - - // CommonJS - if (typeof exports === "object" && typeof module !== "undefined") { - module.exports = mainExports; - - // RequireJS - } else if (typeof define === "function" && define.amd) { - define(function () { - return mainExports; - }); - - //