-
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.
- Loading branch information
Showing
5 changed files
with
255 additions
and
4 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,17 +1,17 @@ | ||
{ | ||
"files": { | ||
"main.css": "/static/css/main.682999b0.css", | ||
"main.js": "/static/js/main.bc86568c.js", | ||
"main.js": "/static/js/main.c7c7ef85.js", | ||
"static/js/154.7cdaa816.chunk.js": "/static/js/154.7cdaa816.chunk.js", | ||
"static/js/656.e5778609.chunk.js": "/static/js/656.e5778609.chunk.js", | ||
"index.html": "/index.html", | ||
"main.682999b0.css.map": "/static/css/main.682999b0.css.map", | ||
"main.bc86568c.js.map": "/static/js/main.bc86568c.js.map", | ||
"main.c7c7ef85.js.map": "/static/js/main.c7c7ef85.js.map", | ||
"154.7cdaa816.chunk.js.map": "/static/js/154.7cdaa816.chunk.js.map", | ||
"656.e5778609.chunk.js.map": "/static/js/656.e5778609.chunk.js.map" | ||
}, | ||
"entrypoints": [ | ||
"static/css/main.682999b0.css", | ||
"static/js/main.bc86568c.js" | ||
"static/js/main.c7c7ef85.js" | ||
] | ||
} |
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 +1 @@ | ||
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><link rel="canonical" href="https://polkagate.xyz/"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="PolkaGate: The Ultimate Polkadot Extension Wallet for Easy Access to the Polkadot Ecosystem. Manage Your DOT, Connect with DApps, and More!"/><link rel="apple-touch-icon" href="/pg.png"/><link rel="manifest" href="/manifest.json"/><title>PolkaGate</title><script defer="defer" src="/static/js/main.bc86568c.js"></script><link href="/static/css/main.682999b0.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html> | ||
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><link rel="canonical" href="https://polkagate.xyz/"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="PolkaGate: The Ultimate Polkadot Extension Wallet for Easy Access to the Polkadot Ecosystem. Manage Your DOT, Connect with DApps, and More!"/><link rel="apple-touch-icon" href="/pg.png"/><link rel="manifest" href="/manifest.json"/><title>PolkaGate</title><script defer="defer" src="/static/js/main.c7c7ef85.js"></script><link href="/static/css/main.682999b0.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html> |
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,247 @@ | ||
/*! | ||
* Check to see if the MemoizeMap has recorded a result of the two operands | ||
* | ||
* @param {Mixed} leftHandOperand | ||
* @param {Mixed} rightHandOperand | ||
* @param {MemoizeMap} memoizeMap | ||
* @returns {Boolean|null} result | ||
*/ | ||
|
||
/*! | ||
* Compare two Regular Expressions for equality. | ||
* | ||
* @param {RegExp} leftHandOperand | ||
* @param {RegExp} rightHandOperand | ||
* @return {Boolean} result | ||
*/ | ||
|
||
/*! | ||
* Compare two Sets/Maps for equality. Faster than other equality functions. | ||
* | ||
* @param {Set} leftHandOperand | ||
* @param {Set} rightHandOperand | ||
* @param {Object} [options] (Optional) | ||
* @return {Boolean} result | ||
*/ | ||
|
||
/*! | ||
* Determine if the given object has an @@iterator function. | ||
* | ||
* @param {Object} target | ||
* @return {Boolean} `true` if the object has an @@iterator function. | ||
*/ | ||
|
||
/*! | ||
* Determines if two objects have matching values, given a set of keys. Defers to deepEqual for the equality check of | ||
* each key. If any value of the given key is not equal, the function will return false (early). | ||
* | ||
* @param {Mixed} leftHandOperand | ||
* @param {Mixed} rightHandOperand | ||
* @param {Array} keys An array of keys to compare the values of leftHandOperand and rightHandOperand against | ||
* @param {Object} [options] (Optional) | ||
* @return {Boolean} result | ||
*/ | ||
|
||
/*! | ||
* Gets all entries from a Generator. This will consume the generator - which could have side effects. | ||
* | ||
* @param {Generator} target | ||
* @returns {Array} an array of entries from the Generator. | ||
*/ | ||
|
||
/*! | ||
* Gets all iterator entries from the given Object. If the Object has no @@iterator function, returns an empty array. | ||
* This will consume the iterator - which could have side effects depending on the @@iterator implementation. | ||
* | ||
* @param {Object} target | ||
* @returns {Array} an array of entries from the @@iterator function | ||
*/ | ||
|
||
/*! | ||
* Gets all own and inherited enumerable keys from a target. | ||
* | ||
* @param {Object} target | ||
* @returns {Array} an array of own and inherited enumerable keys from the target. | ||
*/ | ||
|
||
/*! | ||
* Primary Export | ||
*/ | ||
|
||
/*! | ||
* Recursively check the equality of two Objects. Once basic sameness has been established it will defer to `deepEqual` | ||
* for each enumerable key in the object. | ||
* | ||
* @param {Mixed} leftHandOperand | ||
* @param {Mixed} rightHandOperand | ||
* @param {Object} [options] (Optional) | ||
* @return {Boolean} result | ||
*/ | ||
|
||
/*! | ||
* Returns true if the argument is a primitive. | ||
* | ||
* This intentionally returns true for all objects that can be compared by reference, | ||
* including functions and symbols. | ||
* | ||
* @param {Mixed} value | ||
* @return {Boolean} result | ||
*/ | ||
|
||
/*! | ||
* Set the result of the equality into the MemoizeMap | ||
* | ||
* @param {Mixed} leftHandOperand | ||
* @param {Mixed} rightHandOperand | ||
* @param {MemoizeMap} memoizeMap | ||
* @param {Boolean} result | ||
*/ | ||
|
||
/*! | ||
* Simple equality for flat iterable objects such as Arrays, TypedArrays or Node.js buffers. | ||
* | ||
* @param {Iterable} leftHandOperand | ||
* @param {Iterable} rightHandOperand | ||
* @param {Object} [options] (Optional) | ||
* @return {Boolean} result | ||
*/ | ||
|
||
/*! | ||
* Simple equality for generator objects such as those returned by generator functions. | ||
* | ||
* @param {Iterable} leftHandOperand | ||
* @param {Iterable} rightHandOperand | ||
* @param {Object} [options] (Optional) | ||
* @return {Boolean} result | ||
*/ | ||
|
||
/*! | ||
* The main logic of the `deepEqual` function. | ||
* | ||
* @param {Mixed} leftHandOperand | ||
* @param {Mixed} rightHandOperand | ||
* @param {Object} [options] (optional) Additional options | ||
* @param {Array} [options.comparator] (optional) Override default algorithm, determining custom equality. | ||
* @param {Array} [options.memoize] (optional) Provide a custom memoization object which will cache the results of | ||
complex objects for a speed boost. By passing `false` you can disable memoization, but this will cause circular | ||
references to blow the stack. | ||
* @return {Boolean} equal match | ||
*/ | ||
|
||
/*! | ||
* deep-eql | ||
* Copyright(c) 2013 Jake Luer <[email protected]> | ||
* MIT Licensed | ||
*/ | ||
|
||
/*! ***************************************************************************** | ||
Copyright (c) Microsoft Corporation. | ||
|
||
Permission to use, copy, modify, and/or distribute this software for any | ||
purpose with or without fee is hereby granted. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | ||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | ||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | ||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | ||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR | ||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | ||
PERFORMANCE OF THIS SOFTWARE. | ||
***************************************************************************** */ | ||
|
||
/** | ||
* @license React | ||
* react-dom.production.min.js | ||
* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
/** | ||
* @license React | ||
* react-jsx-runtime.production.min.js | ||
* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
/** | ||
* @license React | ||
* react.production.min.js | ||
* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
/** | ||
* @license React | ||
* scheduler.production.min.js | ||
* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
/** | ||
* @remix-run/router v1.0.1 | ||
* | ||
* Copyright (c) Remix Software Inc. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE.md file in the root directory of this source tree. | ||
* | ||
* @license MIT | ||
*/ | ||
|
||
/** | ||
* React Router DOM v6.4.1 | ||
* | ||
* Copyright (c) Remix Software Inc. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE.md file in the root directory of this source tree. | ||
* | ||
* @license MIT | ||
*/ | ||
|
||
/** | ||
* React Router v6.4.1 | ||
* | ||
* Copyright (c) Remix Software Inc. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE.md file in the root directory of this source tree. | ||
* | ||
* @license MIT | ||
*/ | ||
|
||
/** @license MUI v5.8.0 | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
/** @license React v16.13.1 | ||
* react-is.production.min.js | ||
* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
/** @license React v17.0.2 | ||
* react-is.production.min.js | ||
* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ |
Large diffs are not rendered by default.
Oops, something went wrong.