@superfluid-finance/sdk-core 0.3.0 → 0.3.1-dev.23493bb.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.umd.js +375 -266
- package/package.json +24 -24
package/dist/index.umd.js
CHANGED
|
@@ -7407,7 +7407,7 @@ function encrypt(account, password, options, progressCallback) {
|
|
|
7407
7407
|
}
|
|
7408
7408
|
exports.encrypt = encrypt;
|
|
7409
7409
|
|
|
7410
|
-
},{"./_version":47,"./utils":52,"@ethersproject/address":22,"@ethersproject/bytes":31,"@ethersproject/hdnode":46,"@ethersproject/keccak256":53,"@ethersproject/logger":55,"@ethersproject/pbkdf2":59,"@ethersproject/properties":61,"@ethersproject/random":82,"@ethersproject/transactions":101,"aes-js":121,"scrypt-js":
|
|
7410
|
+
},{"./_version":47,"./utils":52,"@ethersproject/address":22,"@ethersproject/bytes":31,"@ethersproject/hdnode":46,"@ethersproject/keccak256":53,"@ethersproject/logger":55,"@ethersproject/pbkdf2":59,"@ethersproject/properties":61,"@ethersproject/random":82,"@ethersproject/transactions":101,"aes-js":121,"scrypt-js":180}],52:[function(require,module,exports){
|
|
7411
7411
|
"use strict";
|
|
7412
7412
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7413
7413
|
exports.uuidV4 = exports.searchPath = exports.getPassword = exports.zpad = exports.looseArrayify = void 0;
|
|
@@ -8295,7 +8295,7 @@ exports.Description = Description;
|
|
|
8295
8295
|
"use strict";
|
|
8296
8296
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8297
8297
|
exports.version = void 0;
|
|
8298
|
-
exports.version = "providers/5.5.
|
|
8298
|
+
exports.version = "providers/5.5.3";
|
|
8299
8299
|
|
|
8300
8300
|
},{}],63:[function(require,module,exports){
|
|
8301
8301
|
"use strict";
|
|
@@ -8668,10 +8668,11 @@ function bytes32ify(value) {
|
|
|
8668
8668
|
function base58Encode(data) {
|
|
8669
8669
|
return basex_1.Base58.encode((0, bytes_1.concat)([data, (0, bytes_1.hexDataSlice)((0, sha2_1.sha256)((0, sha2_1.sha256)(data)), 0, 4)]));
|
|
8670
8670
|
}
|
|
8671
|
+
var matcherIpfs = new RegExp("^(ipfs):/\/(.*)$", "i");
|
|
8671
8672
|
var matchers = [
|
|
8672
8673
|
new RegExp("^(https):/\/(.*)$", "i"),
|
|
8673
8674
|
new RegExp("^(data):(.*)$", "i"),
|
|
8674
|
-
|
|
8675
|
+
matcherIpfs,
|
|
8675
8676
|
new RegExp("^eip155:[0-9]+/(erc[0-9]+):(.*)$", "i"),
|
|
8676
8677
|
];
|
|
8677
8678
|
function _parseString(result) {
|
|
@@ -8689,6 +8690,19 @@ function _parseBytes(result) {
|
|
|
8689
8690
|
var length = bignumber_1.BigNumber.from((0, bytes_1.hexDataSlice)(result, offset, offset + 32)).toNumber();
|
|
8690
8691
|
return (0, bytes_1.hexDataSlice)(result, offset + 32, offset + 32 + length);
|
|
8691
8692
|
}
|
|
8693
|
+
// Trim off the ipfs:// prefix and return the default gateway URL
|
|
8694
|
+
function getIpfsLink(link) {
|
|
8695
|
+
if (link.match(/^ipfs:\/\/ipfs\//i)) {
|
|
8696
|
+
link = link.substring(12);
|
|
8697
|
+
}
|
|
8698
|
+
else if (link.match(/^ipfs:\/\//i)) {
|
|
8699
|
+
link = link.substring(7);
|
|
8700
|
+
}
|
|
8701
|
+
else {
|
|
8702
|
+
logger.throwArgumentError("unsupported IPFS format", "link", link);
|
|
8703
|
+
}
|
|
8704
|
+
return "https://gateway.ipfs.io/ipfs/" + link;
|
|
8705
|
+
}
|
|
8692
8706
|
var Resolver = /** @class */ (function () {
|
|
8693
8707
|
// The resolvedAddress is only for creating a ReverseLookup resolver
|
|
8694
8708
|
function Resolver(provider, address, name, resolvedAddress) {
|
|
@@ -8829,11 +8843,11 @@ var Resolver = /** @class */ (function () {
|
|
|
8829
8843
|
};
|
|
8830
8844
|
Resolver.prototype.getAvatar = function () {
|
|
8831
8845
|
return __awaiter(this, void 0, void 0, function () {
|
|
8832
|
-
var linkage, avatar, i, match, _a, selector, owner, _b, comps, addr, tokenId, tokenOwner, _c, _d, balance, _e, _f, tx, metadataUrl, _g, metadata, error_3;
|
|
8846
|
+
var linkage, avatar, i, match, scheme, _a, selector, owner, _b, comps, addr, tokenId, tokenOwner, _c, _d, balance, _e, _f, tx, metadataUrl, _g, metadata, imageUrl, ipfs, error_3;
|
|
8833
8847
|
return __generator(this, function (_h) {
|
|
8834
8848
|
switch (_h.label) {
|
|
8835
8849
|
case 0:
|
|
8836
|
-
linkage = [];
|
|
8850
|
+
linkage = [{ type: "name", content: this.name }];
|
|
8837
8851
|
_h.label = 1;
|
|
8838
8852
|
case 1:
|
|
8839
8853
|
_h.trys.push([1, 19, , 20]);
|
|
@@ -8851,7 +8865,8 @@ var Resolver = /** @class */ (function () {
|
|
|
8851
8865
|
if (match == null) {
|
|
8852
8866
|
return [3 /*break*/, 17];
|
|
8853
8867
|
}
|
|
8854
|
-
|
|
8868
|
+
scheme = match[1].toLowerCase();
|
|
8869
|
+
_a = scheme;
|
|
8855
8870
|
switch (_a) {
|
|
8856
8871
|
case "https": return [3 /*break*/, 4];
|
|
8857
8872
|
case "data": return [3 /*break*/, 5];
|
|
@@ -8868,10 +8883,10 @@ var Resolver = /** @class */ (function () {
|
|
|
8868
8883
|
return [2 /*return*/, { linkage: linkage, url: avatar }];
|
|
8869
8884
|
case 6:
|
|
8870
8885
|
linkage.push({ type: "ipfs", content: avatar });
|
|
8871
|
-
return [2 /*return*/, { linkage: linkage, url:
|
|
8886
|
+
return [2 /*return*/, { linkage: linkage, url: getIpfsLink(avatar) }];
|
|
8872
8887
|
case 7:
|
|
8873
|
-
selector = (
|
|
8874
|
-
linkage.push({ type:
|
|
8888
|
+
selector = (scheme === "erc721") ? "0xc87b56dd" : "0x0e89341c";
|
|
8889
|
+
linkage.push({ type: scheme, content: avatar });
|
|
8875
8890
|
_b = this._resolvedAddress;
|
|
8876
8891
|
if (_b) return [3 /*break*/, 9];
|
|
8877
8892
|
return [4 /*yield*/, this.getAddress()];
|
|
@@ -8888,7 +8903,7 @@ var Resolver = /** @class */ (function () {
|
|
|
8888
8903
|
case 10:
|
|
8889
8904
|
addr = _h.sent();
|
|
8890
8905
|
tokenId = (0, bytes_1.hexZeroPad)(bignumber_1.BigNumber.from(comps[1]).toHexString(), 32);
|
|
8891
|
-
if (!(
|
|
8906
|
+
if (!(scheme === "erc721")) return [3 /*break*/, 12];
|
|
8892
8907
|
_d = (_c = this.provider.formatter).callAddress;
|
|
8893
8908
|
return [4 /*yield*/, this.provider.call({
|
|
8894
8909
|
to: addr, data: (0, bytes_1.hexConcat)(["0x6352211e", tokenId])
|
|
@@ -8901,7 +8916,7 @@ var Resolver = /** @class */ (function () {
|
|
|
8901
8916
|
linkage.push({ type: "owner", content: tokenOwner });
|
|
8902
8917
|
return [3 /*break*/, 14];
|
|
8903
8918
|
case 12:
|
|
8904
|
-
if (!(
|
|
8919
|
+
if (!(scheme === "erc1155")) return [3 /*break*/, 14];
|
|
8905
8920
|
_f = (_e = bignumber_1.BigNumber).from;
|
|
8906
8921
|
return [4 /*yield*/, this.provider.call({
|
|
8907
8922
|
to: addr, data: (0, bytes_1.hexConcat)(["0x00fdd58e", (0, bytes_1.hexZeroPad)(owner, 32), tokenId])
|
|
@@ -8925,21 +8940,41 @@ var Resolver = /** @class */ (function () {
|
|
|
8925
8940
|
if (metadataUrl == null) {
|
|
8926
8941
|
return [2 /*return*/, null];
|
|
8927
8942
|
}
|
|
8928
|
-
linkage.push({ type: "metadata-url", content: metadataUrl });
|
|
8943
|
+
linkage.push({ type: "metadata-url-base", content: metadataUrl });
|
|
8929
8944
|
// ERC-1155 allows a generic {id} in the URL
|
|
8930
|
-
if (
|
|
8945
|
+
if (scheme === "erc1155") {
|
|
8931
8946
|
metadataUrl = metadataUrl.replace("{id}", tokenId.substring(2));
|
|
8947
|
+
linkage.push({ type: "metadata-url-expanded", content: metadataUrl });
|
|
8948
|
+
}
|
|
8949
|
+
// Transform IPFS metadata links
|
|
8950
|
+
if (metadataUrl.match(/^ipfs:/i)) {
|
|
8951
|
+
metadataUrl = getIpfsLink(metadataUrl);
|
|
8932
8952
|
}
|
|
8953
|
+
linkage.push({ type: "metadata-url", content: metadataUrl });
|
|
8933
8954
|
return [4 /*yield*/, (0, web_1.fetchJson)(metadataUrl)];
|
|
8934
8955
|
case 16:
|
|
8935
8956
|
metadata = _h.sent();
|
|
8936
|
-
|
|
8937
|
-
if (!metadata || typeof (metadata.image) !== "string" || !metadata.image.match(/^(https:\/\/|data:)/i)) {
|
|
8957
|
+
if (!metadata) {
|
|
8938
8958
|
return [2 /*return*/, null];
|
|
8939
8959
|
}
|
|
8940
8960
|
linkage.push({ type: "metadata", content: JSON.stringify(metadata) });
|
|
8941
|
-
|
|
8942
|
-
|
|
8961
|
+
imageUrl = metadata.image;
|
|
8962
|
+
if (typeof (imageUrl) !== "string") {
|
|
8963
|
+
return [2 /*return*/, null];
|
|
8964
|
+
}
|
|
8965
|
+
if (imageUrl.match(/^(https:\/\/|data:)/i)) {
|
|
8966
|
+
// Allow
|
|
8967
|
+
}
|
|
8968
|
+
else {
|
|
8969
|
+
ipfs = imageUrl.match(matcherIpfs);
|
|
8970
|
+
if (ipfs == null) {
|
|
8971
|
+
return [2 /*return*/, null];
|
|
8972
|
+
}
|
|
8973
|
+
linkage.push({ type: "url-ipfs", content: imageUrl });
|
|
8974
|
+
imageUrl = getIpfsLink(imageUrl);
|
|
8975
|
+
}
|
|
8976
|
+
linkage.push({ type: "url", content: imageUrl });
|
|
8977
|
+
return [2 /*return*/, { linkage: linkage, url: imageUrl }];
|
|
8943
8978
|
case 17:
|
|
8944
8979
|
i++;
|
|
8945
8980
|
return [3 /*break*/, 3];
|
|
@@ -10389,7 +10424,7 @@ var BaseProvider = /** @class */ (function (_super) {
|
|
|
10389
10424
|
if (error_9.code === logger_1.Logger.errors.CALL_EXCEPTION) {
|
|
10390
10425
|
return [2 /*return*/, null];
|
|
10391
10426
|
}
|
|
10392
|
-
|
|
10427
|
+
throw error_9;
|
|
10393
10428
|
case 3: return [2 /*return*/];
|
|
10394
10429
|
}
|
|
10395
10430
|
});
|
|
@@ -25894,7 +25929,7 @@ function intFromLE(bytes) {
|
|
|
25894
25929
|
utils.intFromLE = intFromLE;
|
|
25895
25930
|
|
|
25896
25931
|
|
|
25897
|
-
},{"bn.js":123,"minimalistic-assert":
|
|
25932
|
+
},{"bn.js":123,"minimalistic-assert":177,"minimalistic-crypto-utils":178}],141:[function(require,module,exports){
|
|
25898
25933
|
module.exports={
|
|
25899
25934
|
"name": "elliptic",
|
|
25900
25935
|
"version": "6.5.4",
|
|
@@ -28552,7 +28587,7 @@ BlockHash.prototype._pad = function pad() {
|
|
|
28552
28587
|
return res;
|
|
28553
28588
|
};
|
|
28554
28589
|
|
|
28555
|
-
},{"./utils":171,"minimalistic-assert":
|
|
28590
|
+
},{"./utils":171,"minimalistic-assert":177}],162:[function(require,module,exports){
|
|
28556
28591
|
'use strict';
|
|
28557
28592
|
|
|
28558
28593
|
var utils = require('./utils');
|
|
@@ -28601,7 +28636,7 @@ Hmac.prototype.digest = function digest(enc) {
|
|
|
28601
28636
|
return this.outer.digest(enc);
|
|
28602
28637
|
};
|
|
28603
28638
|
|
|
28604
|
-
},{"./utils":171,"minimalistic-assert":
|
|
28639
|
+
},{"./utils":171,"minimalistic-assert":177}],163:[function(require,module,exports){
|
|
28605
28640
|
'use strict';
|
|
28606
28641
|
|
|
28607
28642
|
var utils = require('./utils');
|
|
@@ -28973,7 +29008,7 @@ SHA256.prototype._digest = function digest(enc) {
|
|
|
28973
29008
|
return utils.split32(this.h, 'big');
|
|
28974
29009
|
};
|
|
28975
29010
|
|
|
28976
|
-
},{"../common":161,"../utils":171,"./common":170,"minimalistic-assert":
|
|
29011
|
+
},{"../common":161,"../utils":171,"./common":170,"minimalistic-assert":177}],168:[function(require,module,exports){
|
|
28977
29012
|
'use strict';
|
|
28978
29013
|
|
|
28979
29014
|
var utils = require('../utils');
|
|
@@ -29342,7 +29377,7 @@ function g1_512_lo(xh, xl) {
|
|
|
29342
29377
|
return r;
|
|
29343
29378
|
}
|
|
29344
29379
|
|
|
29345
|
-
},{"../common":161,"../utils":171,"minimalistic-assert":
|
|
29380
|
+
},{"../common":161,"../utils":171,"minimalistic-assert":177}],170:[function(require,module,exports){
|
|
29346
29381
|
'use strict';
|
|
29347
29382
|
|
|
29348
29383
|
var utils = require('../utils');
|
|
@@ -29673,7 +29708,7 @@ function shr64_lo(ah, al, num) {
|
|
|
29673
29708
|
}
|
|
29674
29709
|
exports.shr64_lo = shr64_lo;
|
|
29675
29710
|
|
|
29676
|
-
},{"inherits":173,"minimalistic-assert":
|
|
29711
|
+
},{"inherits":173,"minimalistic-assert":177}],172:[function(require,module,exports){
|
|
29677
29712
|
'use strict';
|
|
29678
29713
|
|
|
29679
29714
|
var hash = require('hash.js');
|
|
@@ -29788,7 +29823,7 @@ HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) {
|
|
|
29788
29823
|
return utils.encode(res, enc);
|
|
29789
29824
|
};
|
|
29790
29825
|
|
|
29791
|
-
},{"hash.js":160,"minimalistic-assert":
|
|
29826
|
+
},{"hash.js":160,"minimalistic-assert":177,"minimalistic-crypto-utils":178}],173:[function(require,module,exports){
|
|
29792
29827
|
if (typeof Object.create === 'function') {
|
|
29793
29828
|
// implementation from standard node.js 'util' module
|
|
29794
29829
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -30477,7 +30512,102 @@ if (typeof Object.create === 'function') {
|
|
|
30477
30512
|
})();
|
|
30478
30513
|
|
|
30479
30514
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
30480
|
-
},{"_process":
|
|
30515
|
+
},{"_process":179}],175:[function(require,module,exports){
|
|
30516
|
+
'use strict';
|
|
30517
|
+
|
|
30518
|
+
var traverse = module.exports = function (schema, opts, cb) {
|
|
30519
|
+
// Legacy support for v0.3.1 and earlier.
|
|
30520
|
+
if (typeof opts == 'function') {
|
|
30521
|
+
cb = opts;
|
|
30522
|
+
opts = {};
|
|
30523
|
+
}
|
|
30524
|
+
|
|
30525
|
+
cb = opts.cb || cb;
|
|
30526
|
+
var pre = (typeof cb == 'function') ? cb : cb.pre || function() {};
|
|
30527
|
+
var post = cb.post || function() {};
|
|
30528
|
+
|
|
30529
|
+
_traverse(opts, pre, post, schema, '', schema);
|
|
30530
|
+
};
|
|
30531
|
+
|
|
30532
|
+
|
|
30533
|
+
traverse.keywords = {
|
|
30534
|
+
additionalItems: true,
|
|
30535
|
+
items: true,
|
|
30536
|
+
contains: true,
|
|
30537
|
+
additionalProperties: true,
|
|
30538
|
+
propertyNames: true,
|
|
30539
|
+
not: true,
|
|
30540
|
+
if: true,
|
|
30541
|
+
then: true,
|
|
30542
|
+
else: true
|
|
30543
|
+
};
|
|
30544
|
+
|
|
30545
|
+
traverse.arrayKeywords = {
|
|
30546
|
+
items: true,
|
|
30547
|
+
allOf: true,
|
|
30548
|
+
anyOf: true,
|
|
30549
|
+
oneOf: true
|
|
30550
|
+
};
|
|
30551
|
+
|
|
30552
|
+
traverse.propsKeywords = {
|
|
30553
|
+
$defs: true,
|
|
30554
|
+
definitions: true,
|
|
30555
|
+
properties: true,
|
|
30556
|
+
patternProperties: true,
|
|
30557
|
+
dependencies: true
|
|
30558
|
+
};
|
|
30559
|
+
|
|
30560
|
+
traverse.skipKeywords = {
|
|
30561
|
+
default: true,
|
|
30562
|
+
enum: true,
|
|
30563
|
+
const: true,
|
|
30564
|
+
required: true,
|
|
30565
|
+
maximum: true,
|
|
30566
|
+
minimum: true,
|
|
30567
|
+
exclusiveMaximum: true,
|
|
30568
|
+
exclusiveMinimum: true,
|
|
30569
|
+
multipleOf: true,
|
|
30570
|
+
maxLength: true,
|
|
30571
|
+
minLength: true,
|
|
30572
|
+
pattern: true,
|
|
30573
|
+
format: true,
|
|
30574
|
+
maxItems: true,
|
|
30575
|
+
minItems: true,
|
|
30576
|
+
uniqueItems: true,
|
|
30577
|
+
maxProperties: true,
|
|
30578
|
+
minProperties: true
|
|
30579
|
+
};
|
|
30580
|
+
|
|
30581
|
+
|
|
30582
|
+
function _traverse(opts, pre, post, schema, jsonPtr, rootSchema, parentJsonPtr, parentKeyword, parentSchema, keyIndex) {
|
|
30583
|
+
if (schema && typeof schema == 'object' && !Array.isArray(schema)) {
|
|
30584
|
+
pre(schema, jsonPtr, rootSchema, parentJsonPtr, parentKeyword, parentSchema, keyIndex);
|
|
30585
|
+
for (var key in schema) {
|
|
30586
|
+
var sch = schema[key];
|
|
30587
|
+
if (Array.isArray(sch)) {
|
|
30588
|
+
if (key in traverse.arrayKeywords) {
|
|
30589
|
+
for (var i=0; i<sch.length; i++)
|
|
30590
|
+
_traverse(opts, pre, post, sch[i], jsonPtr + '/' + key + '/' + i, rootSchema, jsonPtr, key, schema, i);
|
|
30591
|
+
}
|
|
30592
|
+
} else if (key in traverse.propsKeywords) {
|
|
30593
|
+
if (sch && typeof sch == 'object') {
|
|
30594
|
+
for (var prop in sch)
|
|
30595
|
+
_traverse(opts, pre, post, sch[prop], jsonPtr + '/' + key + '/' + escapeJsonPtr(prop), rootSchema, jsonPtr, key, schema, prop);
|
|
30596
|
+
}
|
|
30597
|
+
} else if (key in traverse.keywords || (opts.allKeys && !(key in traverse.skipKeywords))) {
|
|
30598
|
+
_traverse(opts, pre, post, sch, jsonPtr + '/' + key, rootSchema, jsonPtr, key, schema);
|
|
30599
|
+
}
|
|
30600
|
+
}
|
|
30601
|
+
post(schema, jsonPtr, rootSchema, parentJsonPtr, parentKeyword, parentSchema, keyIndex);
|
|
30602
|
+
}
|
|
30603
|
+
}
|
|
30604
|
+
|
|
30605
|
+
|
|
30606
|
+
function escapeJsonPtr(str) {
|
|
30607
|
+
return str.replace(/~/g, '~0').replace(/\//g, '~1');
|
|
30608
|
+
}
|
|
30609
|
+
|
|
30610
|
+
},{}],176:[function(require,module,exports){
|
|
30481
30611
|
(function (global){(function (){
|
|
30482
30612
|
/**
|
|
30483
30613
|
* @license
|
|
@@ -47690,7 +47820,7 @@ if (typeof Object.create === 'function') {
|
|
|
47690
47820
|
}.call(this));
|
|
47691
47821
|
|
|
47692
47822
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
47693
|
-
},{}],
|
|
47823
|
+
},{}],177:[function(require,module,exports){
|
|
47694
47824
|
module.exports = assert;
|
|
47695
47825
|
|
|
47696
47826
|
function assert(val, msg) {
|
|
@@ -47703,7 +47833,7 @@ assert.equal = function assertEqual(l, r, msg) {
|
|
|
47703
47833
|
throw new Error(msg || ('Assertion failed: ' + l + ' != ' + r));
|
|
47704
47834
|
};
|
|
47705
47835
|
|
|
47706
|
-
},{}],
|
|
47836
|
+
},{}],178:[function(require,module,exports){
|
|
47707
47837
|
'use strict';
|
|
47708
47838
|
|
|
47709
47839
|
var utils = exports;
|
|
@@ -47763,7 +47893,7 @@ utils.encode = function encode(arr, enc) {
|
|
|
47763
47893
|
return arr;
|
|
47764
47894
|
};
|
|
47765
47895
|
|
|
47766
|
-
},{}],
|
|
47896
|
+
},{}],179:[function(require,module,exports){
|
|
47767
47897
|
// shim for using process in browser
|
|
47768
47898
|
var process = module.exports = {};
|
|
47769
47899
|
|
|
@@ -47949,7 +48079,7 @@ process.chdir = function (dir) {
|
|
|
47949
48079
|
};
|
|
47950
48080
|
process.umask = function() { return 0; };
|
|
47951
48081
|
|
|
47952
|
-
},{}],
|
|
48082
|
+
},{}],180:[function(require,module,exports){
|
|
47953
48083
|
(function (setImmediate){(function (){
|
|
47954
48084
|
"use strict";
|
|
47955
48085
|
|
|
@@ -48441,7 +48571,7 @@ process.umask = function() { return 0; };
|
|
|
48441
48571
|
})(this);
|
|
48442
48572
|
|
|
48443
48573
|
}).call(this)}).call(this,require("timers").setImmediate)
|
|
48444
|
-
},{"timers":
|
|
48574
|
+
},{"timers":181}],181:[function(require,module,exports){
|
|
48445
48575
|
(function (setImmediate,clearImmediate){(function (){
|
|
48446
48576
|
var nextTick = require('process/browser.js').nextTick;
|
|
48447
48577
|
var apply = Function.prototype.apply;
|
|
@@ -48520,7 +48650,7 @@ exports.clearImmediate = typeof clearImmediate === "function" ? clearImmediate :
|
|
|
48520
48650
|
delete immediateIds[id];
|
|
48521
48651
|
};
|
|
48522
48652
|
}).call(this)}).call(this,require("timers").setImmediate,require("timers").clearImmediate)
|
|
48523
|
-
},{"process/browser.js":
|
|
48653
|
+
},{"process/browser.js":179,"timers":181}],182:[function(require,module,exports){
|
|
48524
48654
|
/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
|
|
48525
48655
|
(function (global, factory) {
|
|
48526
48656
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
@@ -49965,15 +50095,74 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
49965
50095
|
})));
|
|
49966
50096
|
|
|
49967
50097
|
|
|
49968
|
-
},{}],
|
|
50098
|
+
},{}],183:[function(require,module,exports){
|
|
50099
|
+
"use strict";
|
|
50100
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50101
|
+
exports.version = void 0;
|
|
50102
|
+
exports.version = "random/5.5.1";
|
|
50103
|
+
|
|
50104
|
+
},{}],184:[function(require,module,exports){
|
|
50105
|
+
(function (global){(function (){
|
|
50106
|
+
"use strict";
|
|
50107
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50108
|
+
exports.randomBytes = void 0;
|
|
50109
|
+
var bytes_1 = require("@ethersproject/bytes");
|
|
50110
|
+
var logger_1 = require("@ethersproject/logger");
|
|
50111
|
+
var _version_1 = require("./_version");
|
|
50112
|
+
var logger = new logger_1.Logger(_version_1.version);
|
|
50113
|
+
// Debugging line for testing browser lib in node
|
|
50114
|
+
//const window = { crypto: { getRandomValues: () => { } } };
|
|
50115
|
+
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis
|
|
50116
|
+
function getGlobal() {
|
|
50117
|
+
if (typeof self !== 'undefined') {
|
|
50118
|
+
return self;
|
|
50119
|
+
}
|
|
50120
|
+
if (typeof window !== 'undefined') {
|
|
50121
|
+
return window;
|
|
50122
|
+
}
|
|
50123
|
+
if (typeof global !== 'undefined') {
|
|
50124
|
+
return global;
|
|
50125
|
+
}
|
|
50126
|
+
throw new Error('unable to locate global object');
|
|
50127
|
+
}
|
|
50128
|
+
;
|
|
50129
|
+
var anyGlobal = getGlobal();
|
|
50130
|
+
var crypto = anyGlobal.crypto || anyGlobal.msCrypto;
|
|
50131
|
+
if (!crypto || !crypto.getRandomValues) {
|
|
50132
|
+
logger.warn("WARNING: Missing strong random number source");
|
|
50133
|
+
crypto = {
|
|
50134
|
+
getRandomValues: function (buffer) {
|
|
50135
|
+
return logger.throwError("no secure random source avaialble", logger_1.Logger.errors.UNSUPPORTED_OPERATION, {
|
|
50136
|
+
operation: "crypto.getRandomValues"
|
|
50137
|
+
});
|
|
50138
|
+
}
|
|
50139
|
+
};
|
|
50140
|
+
}
|
|
50141
|
+
function randomBytes(length) {
|
|
50142
|
+
if (length <= 0 || length > 1024 || (length % 1) || length != length) {
|
|
50143
|
+
logger.throwArgumentError("invalid length", "length", length);
|
|
50144
|
+
}
|
|
50145
|
+
var result = new Uint8Array(length);
|
|
50146
|
+
crypto.getRandomValues(result);
|
|
50147
|
+
return (0, bytes_1.arrayify)(result);
|
|
50148
|
+
}
|
|
50149
|
+
exports.randomBytes = randomBytes;
|
|
50150
|
+
;
|
|
50151
|
+
|
|
50152
|
+
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
50153
|
+
},{"./_version":183,"@ethersproject/bytes":31,"@ethersproject/logger":55}],185:[function(require,module,exports){
|
|
50154
|
+
arguments[4][82][0].apply(exports,arguments)
|
|
50155
|
+
},{"./random":184,"./shuffle":186,"dup":82}],186:[function(require,module,exports){
|
|
50156
|
+
arguments[4][83][0].apply(exports,arguments)
|
|
50157
|
+
},{"dup":83}],187:[function(require,module,exports){
|
|
49969
50158
|
"use strict";
|
|
49970
50159
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49971
50160
|
exports.version = void 0;
|
|
49972
50161
|
exports.version = "web/5.5.1";
|
|
49973
50162
|
|
|
49974
|
-
},{}],
|
|
50163
|
+
},{}],188:[function(require,module,exports){
|
|
49975
50164
|
arguments[4][107][0].apply(exports,arguments)
|
|
49976
|
-
},{"@ethersproject/bytes":31,"dup":107}],
|
|
50165
|
+
},{"@ethersproject/bytes":31,"dup":107}],189:[function(require,module,exports){
|
|
49977
50166
|
"use strict";
|
|
49978
50167
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
49979
50168
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -50425,7 +50614,7 @@ function poll(func, options) {
|
|
|
50425
50614
|
}
|
|
50426
50615
|
exports.poll = poll;
|
|
50427
50616
|
|
|
50428
|
-
},{"./_version":
|
|
50617
|
+
},{"./_version":187,"./geturl":188,"@ethersproject/base64":24,"@ethersproject/bytes":31,"@ethersproject/logger":55,"@ethersproject/properties":61,"@ethersproject/strings":98}],190:[function(require,module,exports){
|
|
50429
50618
|
"use strict";
|
|
50430
50619
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50431
50620
|
exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = void 0;
|
|
@@ -50470,10 +50659,10 @@ Object.defineProperty(exports, "nil", { enumerable: true, get: function () { ret
|
|
|
50470
50659
|
Object.defineProperty(exports, "Name", { enumerable: true, get: function () { return codegen_1.Name; } });
|
|
50471
50660
|
Object.defineProperty(exports, "CodeGen", { enumerable: true, get: function () { return codegen_1.CodeGen; } });
|
|
50472
50661
|
|
|
50473
|
-
},{"./compile/codegen":
|
|
50662
|
+
},{"./compile/codegen":192,"./compile/validate":205,"./core":208,"./refs/json-schema-draft-07.json":210,"./vocabularies/discriminator":235,"./vocabularies/draft7":237}],191:[function(require,module,exports){
|
|
50474
50663
|
"use strict";
|
|
50475
50664
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50476
|
-
exports.regexpCode = exports.getProperty = exports.safeStringify = exports.stringify = exports.strConcat = exports.addCodeArg = exports.str = exports._ = exports.nil = exports._Code = exports.Name = exports.IDENTIFIER = exports._CodeOrName = void 0;
|
|
50665
|
+
exports.regexpCode = exports.getEsmExportName = exports.getProperty = exports.safeStringify = exports.stringify = exports.strConcat = exports.addCodeArg = exports.str = exports._ = exports.nil = exports._Code = exports.Name = exports.IDENTIFIER = exports._CodeOrName = void 0;
|
|
50477
50666
|
class _CodeOrName {
|
|
50478
50667
|
}
|
|
50479
50668
|
exports._CodeOrName = _CodeOrName;
|
|
@@ -50613,12 +50802,20 @@ function getProperty(key) {
|
|
|
50613
50802
|
return typeof key == "string" && exports.IDENTIFIER.test(key) ? new _Code(`.${key}`) : _ `[${key}]`;
|
|
50614
50803
|
}
|
|
50615
50804
|
exports.getProperty = getProperty;
|
|
50805
|
+
//Does best effort to format the name properly
|
|
50806
|
+
function getEsmExportName(key) {
|
|
50807
|
+
if (typeof key == "string" && exports.IDENTIFIER.test(key)) {
|
|
50808
|
+
return new _Code(`${key}`);
|
|
50809
|
+
}
|
|
50810
|
+
throw new Error(`CodeGen: invalid export name: ${key}, use explicit $id name mapping`);
|
|
50811
|
+
}
|
|
50812
|
+
exports.getEsmExportName = getEsmExportName;
|
|
50616
50813
|
function regexpCode(rx) {
|
|
50617
50814
|
return new _Code(rx.toString());
|
|
50618
50815
|
}
|
|
50619
50816
|
exports.regexpCode = regexpCode;
|
|
50620
50817
|
|
|
50621
|
-
},{}],
|
|
50818
|
+
},{}],192:[function(require,module,exports){
|
|
50622
50819
|
"use strict";
|
|
50623
50820
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50624
50821
|
exports.or = exports.and = exports.not = exports.CodeGen = exports.operators = exports.varKinds = exports.ValueScopeName = exports.ValueScope = exports.Scope = exports.Name = exports.regexpCode = exports.stringify = exports.getProperty = exports.nil = exports.strConcat = exports.str = exports._ = void 0;
|
|
@@ -51316,7 +51513,7 @@ function par(x) {
|
|
|
51316
51513
|
return x instanceof code_1.Name ? x : (0, code_1._) `(${x})`;
|
|
51317
51514
|
}
|
|
51318
51515
|
|
|
51319
|
-
},{"./code":
|
|
51516
|
+
},{"./code":191,"./scope":193}],193:[function(require,module,exports){
|
|
51320
51517
|
"use strict";
|
|
51321
51518
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51322
51519
|
exports.ValueScope = exports.ValueScopeName = exports.Scope = exports.varKinds = exports.UsedValueState = void 0;
|
|
@@ -51460,7 +51657,7 @@ class ValueScope extends Scope {
|
|
|
51460
51657
|
}
|
|
51461
51658
|
exports.ValueScope = ValueScope;
|
|
51462
51659
|
|
|
51463
|
-
},{"./code":
|
|
51660
|
+
},{"./code":191}],194:[function(require,module,exports){
|
|
51464
51661
|
"use strict";
|
|
51465
51662
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51466
51663
|
exports.extendErrors = exports.resetErrorsCount = exports.reportExtraError = exports.reportError = exports.keyword$DataError = exports.keywordError = void 0;
|
|
@@ -51584,7 +51781,7 @@ function extraErrorProps(cxt, { params, message }, keyValues) {
|
|
|
51584
51781
|
keyValues.push([E.propertyName, propertyName]);
|
|
51585
51782
|
}
|
|
51586
51783
|
|
|
51587
|
-
},{"./codegen":
|
|
51784
|
+
},{"./codegen":192,"./names":196,"./util":200}],195:[function(require,module,exports){
|
|
51588
51785
|
"use strict";
|
|
51589
51786
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51590
51787
|
exports.resolveSchema = exports.getCompilingSchema = exports.resolveRef = exports.compileSchema = exports.SchemaEnv = void 0;
|
|
@@ -51828,7 +52025,7 @@ function getJsonPointer(parsedRef, { baseId, schema, root }) {
|
|
|
51828
52025
|
return undefined;
|
|
51829
52026
|
}
|
|
51830
52027
|
|
|
51831
|
-
},{"../runtime/validation_error":
|
|
52028
|
+
},{"../runtime/validation_error":213,"./codegen":192,"./names":196,"./resolve":198,"./util":200,"./validate":205,"uri-js":182}],196:[function(require,module,exports){
|
|
51832
52029
|
"use strict";
|
|
51833
52030
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51834
52031
|
const codegen_1 = require("./codegen");
|
|
@@ -51857,7 +52054,7 @@ const names = {
|
|
|
51857
52054
|
};
|
|
51858
52055
|
exports.default = names;
|
|
51859
52056
|
|
|
51860
|
-
},{"./codegen":
|
|
52057
|
+
},{"./codegen":192}],197:[function(require,module,exports){
|
|
51861
52058
|
"use strict";
|
|
51862
52059
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51863
52060
|
const resolve_1 = require("./resolve");
|
|
@@ -51870,7 +52067,7 @@ class MissingRefError extends Error {
|
|
|
51870
52067
|
}
|
|
51871
52068
|
exports.default = MissingRefError;
|
|
51872
52069
|
|
|
51873
|
-
},{"./resolve":
|
|
52070
|
+
},{"./resolve":198}],198:[function(require,module,exports){
|
|
51874
52071
|
"use strict";
|
|
51875
52072
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51876
52073
|
exports.getSchemaRefs = exports.resolveUrl = exports.normalizeId = exports._getFullPath = exports.getFullPath = exports.inlineRef = void 0;
|
|
@@ -52024,7 +52221,7 @@ function getSchemaRefs(schema, baseId) {
|
|
|
52024
52221
|
}
|
|
52025
52222
|
exports.getSchemaRefs = getSchemaRefs;
|
|
52026
52223
|
|
|
52027
|
-
},{"./util":
|
|
52224
|
+
},{"./util":200,"fast-deep-equal":146,"json-schema-traverse":175,"uri-js":182}],199:[function(require,module,exports){
|
|
52028
52225
|
"use strict";
|
|
52029
52226
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52030
52227
|
exports.getRules = exports.isJSONType = void 0;
|
|
@@ -52051,7 +52248,7 @@ function getRules() {
|
|
|
52051
52248
|
}
|
|
52052
52249
|
exports.getRules = getRules;
|
|
52053
52250
|
|
|
52054
|
-
},{}],
|
|
52251
|
+
},{}],200:[function(require,module,exports){
|
|
52055
52252
|
"use strict";
|
|
52056
52253
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52057
52254
|
exports.checkStrictMode = exports.getErrorPath = exports.Type = exports.useFunc = exports.setEvaluated = exports.evaluatedPropsToName = exports.mergeEvaluated = exports.eachItem = exports.unescapeJsonPointer = exports.escapeJsonPointer = exports.escapeFragment = exports.unescapeFragment = exports.schemaRefOrVal = exports.schemaHasRulesButRef = exports.schemaHasRules = exports.checkUnknownRules = exports.alwaysValidSchema = exports.toHash = void 0;
|
|
@@ -52230,7 +52427,7 @@ function checkStrictMode(it, msg, mode = it.opts.strictSchema) {
|
|
|
52230
52427
|
}
|
|
52231
52428
|
exports.checkStrictMode = checkStrictMode;
|
|
52232
52429
|
|
|
52233
|
-
},{"./codegen":
|
|
52430
|
+
},{"./codegen":192,"./codegen/code":191}],201:[function(require,module,exports){
|
|
52234
52431
|
"use strict";
|
|
52235
52432
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52236
52433
|
exports.shouldUseRule = exports.shouldUseGroup = exports.schemaHasRulesForType = void 0;
|
|
@@ -52250,7 +52447,7 @@ function shouldUseRule(schema, rule) {
|
|
|
52250
52447
|
}
|
|
52251
52448
|
exports.shouldUseRule = shouldUseRule;
|
|
52252
52449
|
|
|
52253
|
-
},{}],
|
|
52450
|
+
},{}],202:[function(require,module,exports){
|
|
52254
52451
|
"use strict";
|
|
52255
52452
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52256
52453
|
exports.boolOrEmptySchema = exports.topBoolOrEmptySchema = void 0;
|
|
@@ -52301,7 +52498,7 @@ function falseSchemaError(it, overrideAllErrors) {
|
|
|
52301
52498
|
(0, errors_1.reportError)(cxt, boolError, undefined, overrideAllErrors);
|
|
52302
52499
|
}
|
|
52303
52500
|
|
|
52304
|
-
},{"../codegen":
|
|
52501
|
+
},{"../codegen":192,"../errors":194,"../names":196}],203:[function(require,module,exports){
|
|
52305
52502
|
"use strict";
|
|
52306
52503
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52307
52504
|
exports.reportTypeError = exports.checkDataTypes = exports.checkDataType = exports.coerceAndCheckDataType = exports.getJSONTypes = exports.getSchemaTypes = exports.DataType = void 0;
|
|
@@ -52504,7 +52701,7 @@ function getTypeErrorContext(it) {
|
|
|
52504
52701
|
};
|
|
52505
52702
|
}
|
|
52506
52703
|
|
|
52507
|
-
},{"../codegen":
|
|
52704
|
+
},{"../codegen":192,"../errors":194,"../rules":199,"../util":200,"./applicability":201}],204:[function(require,module,exports){
|
|
52508
52705
|
"use strict";
|
|
52509
52706
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52510
52707
|
exports.assignDefaults = void 0;
|
|
@@ -52540,7 +52737,7 @@ function assignDefault(it, prop, defaultValue) {
|
|
|
52540
52737
|
gen.if(condition, (0, codegen_1._) `${childData} = ${(0, codegen_1.stringify)(defaultValue)}`);
|
|
52541
52738
|
}
|
|
52542
52739
|
|
|
52543
|
-
},{"../codegen":
|
|
52740
|
+
},{"../codegen":192,"../util":200}],205:[function(require,module,exports){
|
|
52544
52741
|
"use strict";
|
|
52545
52742
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52546
52743
|
exports.getData = exports.KeywordCxt = exports.validateFunctionCode = void 0;
|
|
@@ -53051,7 +53248,7 @@ function getData($data, { dataLevel, dataNames, dataPathArr }) {
|
|
|
53051
53248
|
}
|
|
53052
53249
|
exports.getData = getData;
|
|
53053
53250
|
|
|
53054
|
-
},{"../codegen":
|
|
53251
|
+
},{"../codegen":192,"../errors":194,"../names":196,"../resolve":198,"../util":200,"./applicability":201,"./boolSchema":202,"./dataType":203,"./defaults":204,"./keyword":206,"./subschema":207}],206:[function(require,module,exports){
|
|
53055
53252
|
"use strict";
|
|
53056
53253
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53057
53254
|
exports.validateKeywordUsage = exports.validSchemaType = exports.funcKeywordCode = exports.macroKeywordCode = void 0;
|
|
@@ -53176,7 +53373,7 @@ function validateKeywordUsage({ schema, opts, self, errSchemaPath }, def, keywor
|
|
|
53176
53373
|
}
|
|
53177
53374
|
exports.validateKeywordUsage = validateKeywordUsage;
|
|
53178
53375
|
|
|
53179
|
-
},{"../../vocabularies/code":
|
|
53376
|
+
},{"../../vocabularies/code":231,"../codegen":192,"../errors":194,"../names":196}],207:[function(require,module,exports){
|
|
53180
53377
|
"use strict";
|
|
53181
53378
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53182
53379
|
exports.extendSubschemaMode = exports.extendSubschemaData = exports.getSubschema = void 0;
|
|
@@ -53258,7 +53455,7 @@ function extendSubschemaMode(subschema, { jtdDiscriminator, jtdMetadata, composi
|
|
|
53258
53455
|
}
|
|
53259
53456
|
exports.extendSubschemaMode = extendSubschemaMode;
|
|
53260
53457
|
|
|
53261
|
-
},{"../codegen":
|
|
53458
|
+
},{"../codegen":192,"../util":200}],208:[function(require,module,exports){
|
|
53262
53459
|
"use strict";
|
|
53263
53460
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53264
53461
|
exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = void 0;
|
|
@@ -53873,7 +54070,7 @@ function schemaOrData(schema) {
|
|
|
53873
54070
|
return { anyOf: [schema, $dataRef] };
|
|
53874
54071
|
}
|
|
53875
54072
|
|
|
53876
|
-
},{"./compile":
|
|
54073
|
+
},{"./compile":195,"./compile/codegen":192,"./compile/ref_error":197,"./compile/resolve":198,"./compile/rules":199,"./compile/util":200,"./compile/validate":205,"./compile/validate/dataType":203,"./refs/data.json":209,"./runtime/validation_error":213}],209:[function(require,module,exports){
|
|
53877
54074
|
module.exports={
|
|
53878
54075
|
"$id": "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",
|
|
53879
54076
|
"description": "Meta-schema for $data reference (JSON AnySchema extension proposal)",
|
|
@@ -53888,7 +54085,7 @@ module.exports={
|
|
|
53888
54085
|
"additionalProperties": false
|
|
53889
54086
|
}
|
|
53890
54087
|
|
|
53891
|
-
},{}],
|
|
54088
|
+
},{}],210:[function(require,module,exports){
|
|
53892
54089
|
module.exports={
|
|
53893
54090
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
53894
54091
|
"$id": "http://json-schema.org/draft-07/schema#",
|
|
@@ -54041,7 +54238,7 @@ module.exports={
|
|
|
54041
54238
|
"default": true
|
|
54042
54239
|
}
|
|
54043
54240
|
|
|
54044
|
-
},{}],
|
|
54241
|
+
},{}],211:[function(require,module,exports){
|
|
54045
54242
|
"use strict";
|
|
54046
54243
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54047
54244
|
// https://github.com/ajv-validator/ajv/issues/889
|
|
@@ -54049,7 +54246,7 @@ const equal = require("fast-deep-equal");
|
|
|
54049
54246
|
equal.code = 'require("ajv/dist/runtime/equal").default';
|
|
54050
54247
|
exports.default = equal;
|
|
54051
54248
|
|
|
54052
|
-
},{"fast-deep-equal":146}],
|
|
54249
|
+
},{"fast-deep-equal":146}],212:[function(require,module,exports){
|
|
54053
54250
|
"use strict";
|
|
54054
54251
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54055
54252
|
// https://mathiasbynens.be/notes/javascript-encoding
|
|
@@ -54074,7 +54271,7 @@ function ucs2length(str) {
|
|
|
54074
54271
|
exports.default = ucs2length;
|
|
54075
54272
|
ucs2length.code = 'require("ajv/dist/runtime/ucs2length").default';
|
|
54076
54273
|
|
|
54077
|
-
},{}],
|
|
54274
|
+
},{}],213:[function(require,module,exports){
|
|
54078
54275
|
"use strict";
|
|
54079
54276
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54080
54277
|
class ValidationError extends Error {
|
|
@@ -54086,7 +54283,7 @@ class ValidationError extends Error {
|
|
|
54086
54283
|
}
|
|
54087
54284
|
exports.default = ValidationError;
|
|
54088
54285
|
|
|
54089
|
-
},{}],
|
|
54286
|
+
},{}],214:[function(require,module,exports){
|
|
54090
54287
|
"use strict";
|
|
54091
54288
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54092
54289
|
exports.validateAdditionalItems = void 0;
|
|
@@ -54136,7 +54333,7 @@ function validateAdditionalItems(cxt, items) {
|
|
|
54136
54333
|
exports.validateAdditionalItems = validateAdditionalItems;
|
|
54137
54334
|
exports.default = def;
|
|
54138
54335
|
|
|
54139
|
-
},{"../../compile/codegen":
|
|
54336
|
+
},{"../../compile/codegen":192,"../../compile/util":200}],215:[function(require,module,exports){
|
|
54140
54337
|
"use strict";
|
|
54141
54338
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54142
54339
|
const code_1 = require("../code");
|
|
@@ -54243,7 +54440,7 @@ const def = {
|
|
|
54243
54440
|
};
|
|
54244
54441
|
exports.default = def;
|
|
54245
54442
|
|
|
54246
|
-
},{"../../compile/codegen":
|
|
54443
|
+
},{"../../compile/codegen":192,"../../compile/names":196,"../../compile/util":200,"../code":231}],216:[function(require,module,exports){
|
|
54247
54444
|
"use strict";
|
|
54248
54445
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54249
54446
|
const util_1 = require("../../compile/util");
|
|
@@ -54267,7 +54464,7 @@ const def = {
|
|
|
54267
54464
|
};
|
|
54268
54465
|
exports.default = def;
|
|
54269
54466
|
|
|
54270
|
-
},{"../../compile/util":
|
|
54467
|
+
},{"../../compile/util":200}],217:[function(require,module,exports){
|
|
54271
54468
|
"use strict";
|
|
54272
54469
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54273
54470
|
const code_1 = require("../code");
|
|
@@ -54280,7 +54477,7 @@ const def = {
|
|
|
54280
54477
|
};
|
|
54281
54478
|
exports.default = def;
|
|
54282
54479
|
|
|
54283
|
-
},{"../code":
|
|
54480
|
+
},{"../code":231}],218:[function(require,module,exports){
|
|
54284
54481
|
"use strict";
|
|
54285
54482
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54286
54483
|
const codegen_1 = require("../../compile/codegen");
|
|
@@ -54376,7 +54573,7 @@ const def = {
|
|
|
54376
54573
|
};
|
|
54377
54574
|
exports.default = def;
|
|
54378
54575
|
|
|
54379
|
-
},{"../../compile/codegen":
|
|
54576
|
+
},{"../../compile/codegen":192,"../../compile/util":200}],219:[function(require,module,exports){
|
|
54380
54577
|
"use strict";
|
|
54381
54578
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54382
54579
|
exports.validateSchemaDeps = exports.validatePropertyDeps = exports.error = void 0;
|
|
@@ -54462,7 +54659,7 @@ function validateSchemaDeps(cxt, schemaDeps = cxt.schema) {
|
|
|
54462
54659
|
exports.validateSchemaDeps = validateSchemaDeps;
|
|
54463
54660
|
exports.default = def;
|
|
54464
54661
|
|
|
54465
|
-
},{"../../compile/codegen":
|
|
54662
|
+
},{"../../compile/codegen":192,"../../compile/util":200,"../code":231}],220:[function(require,module,exports){
|
|
54466
54663
|
"use strict";
|
|
54467
54664
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54468
54665
|
const codegen_1 = require("../../compile/codegen");
|
|
@@ -54529,7 +54726,7 @@ function hasSchema(it, keyword) {
|
|
|
54529
54726
|
}
|
|
54530
54727
|
exports.default = def;
|
|
54531
54728
|
|
|
54532
|
-
},{"../../compile/codegen":
|
|
54729
|
+
},{"../../compile/codegen":192,"../../compile/util":200}],221:[function(require,module,exports){
|
|
54533
54730
|
"use strict";
|
|
54534
54731
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54535
54732
|
const additionalItems_1 = require("./additionalItems");
|
|
@@ -54574,7 +54771,7 @@ function getApplicator(draft2020 = false) {
|
|
|
54574
54771
|
}
|
|
54575
54772
|
exports.default = getApplicator;
|
|
54576
54773
|
|
|
54577
|
-
},{"./additionalItems":
|
|
54774
|
+
},{"./additionalItems":214,"./additionalProperties":215,"./allOf":216,"./anyOf":217,"./contains":218,"./dependencies":219,"./if":220,"./items":222,"./items2020":223,"./not":224,"./oneOf":225,"./patternProperties":226,"./prefixItems":227,"./properties":228,"./propertyNames":229,"./thenElse":230}],222:[function(require,module,exports){
|
|
54578
54775
|
"use strict";
|
|
54579
54776
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54580
54777
|
exports.validateTuple = void 0;
|
|
@@ -54627,7 +54824,7 @@ function validateTuple(cxt, extraItems, schArr = cxt.schema) {
|
|
|
54627
54824
|
exports.validateTuple = validateTuple;
|
|
54628
54825
|
exports.default = def;
|
|
54629
54826
|
|
|
54630
|
-
},{"../../compile/codegen":
|
|
54827
|
+
},{"../../compile/codegen":192,"../../compile/util":200,"../code":231}],223:[function(require,module,exports){
|
|
54631
54828
|
"use strict";
|
|
54632
54829
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54633
54830
|
const codegen_1 = require("../../compile/codegen");
|
|
@@ -54658,7 +54855,7 @@ const def = {
|
|
|
54658
54855
|
};
|
|
54659
54856
|
exports.default = def;
|
|
54660
54857
|
|
|
54661
|
-
},{"../../compile/codegen":
|
|
54858
|
+
},{"../../compile/codegen":192,"../../compile/util":200,"../code":231,"./additionalItems":214}],224:[function(require,module,exports){
|
|
54662
54859
|
"use strict";
|
|
54663
54860
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54664
54861
|
const util_1 = require("../../compile/util");
|
|
@@ -54685,7 +54882,7 @@ const def = {
|
|
|
54685
54882
|
};
|
|
54686
54883
|
exports.default = def;
|
|
54687
54884
|
|
|
54688
|
-
},{"../../compile/util":
|
|
54885
|
+
},{"../../compile/util":200}],225:[function(require,module,exports){
|
|
54689
54886
|
"use strict";
|
|
54690
54887
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54691
54888
|
const codegen_1 = require("../../compile/codegen");
|
|
@@ -54746,7 +54943,7 @@ const def = {
|
|
|
54746
54943
|
};
|
|
54747
54944
|
exports.default = def;
|
|
54748
54945
|
|
|
54749
|
-
},{"../../compile/codegen":
|
|
54946
|
+
},{"../../compile/codegen":192,"../../compile/util":200}],226:[function(require,module,exports){
|
|
54750
54947
|
"use strict";
|
|
54751
54948
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54752
54949
|
const code_1 = require("../code");
|
|
@@ -54822,7 +55019,7 @@ const def = {
|
|
|
54822
55019
|
};
|
|
54823
55020
|
exports.default = def;
|
|
54824
55021
|
|
|
54825
|
-
},{"../../compile/codegen":
|
|
55022
|
+
},{"../../compile/codegen":192,"../../compile/util":200,"../code":231}],227:[function(require,module,exports){
|
|
54826
55023
|
"use strict";
|
|
54827
55024
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54828
55025
|
const items_1 = require("./items");
|
|
@@ -54835,7 +55032,7 @@ const def = {
|
|
|
54835
55032
|
};
|
|
54836
55033
|
exports.default = def;
|
|
54837
55034
|
|
|
54838
|
-
},{"./items":
|
|
55035
|
+
},{"./items":222}],228:[function(require,module,exports){
|
|
54839
55036
|
"use strict";
|
|
54840
55037
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54841
55038
|
const validate_1 = require("../../compile/validate");
|
|
@@ -54890,7 +55087,7 @@ const def = {
|
|
|
54890
55087
|
};
|
|
54891
55088
|
exports.default = def;
|
|
54892
55089
|
|
|
54893
|
-
},{"../../compile/util":
|
|
55090
|
+
},{"../../compile/util":200,"../../compile/validate":205,"../code":231,"./additionalProperties":215}],229:[function(require,module,exports){
|
|
54894
55091
|
"use strict";
|
|
54895
55092
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54896
55093
|
const codegen_1 = require("../../compile/codegen");
|
|
@@ -54929,7 +55126,7 @@ const def = {
|
|
|
54929
55126
|
};
|
|
54930
55127
|
exports.default = def;
|
|
54931
55128
|
|
|
54932
|
-
},{"../../compile/codegen":
|
|
55129
|
+
},{"../../compile/codegen":192,"../../compile/util":200}],230:[function(require,module,exports){
|
|
54933
55130
|
"use strict";
|
|
54934
55131
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54935
55132
|
const util_1 = require("../../compile/util");
|
|
@@ -54943,7 +55140,7 @@ const def = {
|
|
|
54943
55140
|
};
|
|
54944
55141
|
exports.default = def;
|
|
54945
55142
|
|
|
54946
|
-
},{"../../compile/util":
|
|
55143
|
+
},{"../../compile/util":200}],231:[function(require,module,exports){
|
|
54947
55144
|
"use strict";
|
|
54948
55145
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54949
55146
|
exports.validateUnion = exports.validateArray = exports.usePattern = exports.callValidateCode = exports.schemaProperties = exports.allSchemaProperties = exports.noPropertyInData = exports.propertyInData = exports.isOwnProperty = exports.hasPropFunc = exports.reportMissingProp = exports.checkMissingProp = exports.checkReportMissingProp = void 0;
|
|
@@ -55075,7 +55272,7 @@ function validateUnion(cxt) {
|
|
|
55075
55272
|
}
|
|
55076
55273
|
exports.validateUnion = validateUnion;
|
|
55077
55274
|
|
|
55078
|
-
},{"../compile/codegen":
|
|
55275
|
+
},{"../compile/codegen":192,"../compile/names":196,"../compile/util":200}],232:[function(require,module,exports){
|
|
55079
55276
|
"use strict";
|
|
55080
55277
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55081
55278
|
const def = {
|
|
@@ -55086,7 +55283,7 @@ const def = {
|
|
|
55086
55283
|
};
|
|
55087
55284
|
exports.default = def;
|
|
55088
55285
|
|
|
55089
|
-
},{}],
|
|
55286
|
+
},{}],233:[function(require,module,exports){
|
|
55090
55287
|
"use strict";
|
|
55091
55288
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55092
55289
|
const id_1 = require("./id");
|
|
@@ -55103,7 +55300,7 @@ const core = [
|
|
|
55103
55300
|
];
|
|
55104
55301
|
exports.default = core;
|
|
55105
55302
|
|
|
55106
|
-
},{"./id":
|
|
55303
|
+
},{"./id":232,"./ref":234}],234:[function(require,module,exports){
|
|
55107
55304
|
"use strict";
|
|
55108
55305
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55109
55306
|
exports.callRef = exports.getValidate = void 0;
|
|
@@ -55226,11 +55423,13 @@ function callRef(cxt, v, sch, $async) {
|
|
|
55226
55423
|
exports.callRef = callRef;
|
|
55227
55424
|
exports.default = def;
|
|
55228
55425
|
|
|
55229
|
-
},{"../../compile":
|
|
55426
|
+
},{"../../compile":195,"../../compile/codegen":192,"../../compile/names":196,"../../compile/ref_error":197,"../../compile/util":200,"../code":231}],235:[function(require,module,exports){
|
|
55230
55427
|
"use strict";
|
|
55231
55428
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55232
55429
|
const codegen_1 = require("../../compile/codegen");
|
|
55233
55430
|
const types_1 = require("../discriminator/types");
|
|
55431
|
+
const compile_1 = require("../../compile");
|
|
55432
|
+
const util_1 = require("../../compile/util");
|
|
55234
55433
|
const error = {
|
|
55235
55434
|
message: ({ params: { discrError, tagName } }) => discrError === types_1.DiscrError.Tag
|
|
55236
55435
|
? `tag "${tagName}" must be string`
|
|
@@ -55282,10 +55481,15 @@ const def = {
|
|
|
55282
55481
|
const topRequired = hasRequired(parentSchema);
|
|
55283
55482
|
let tagRequired = true;
|
|
55284
55483
|
for (let i = 0; i < oneOf.length; i++) {
|
|
55285
|
-
|
|
55286
|
-
|
|
55484
|
+
let sch = oneOf[i];
|
|
55485
|
+
if ((sch === null || sch === void 0 ? void 0 : sch.$ref) && !(0, util_1.schemaHasRulesButRef)(sch, it.self.RULES)) {
|
|
55486
|
+
sch = compile_1.resolveRef.call(it.self, it.schemaEnv, it.baseId, sch === null || sch === void 0 ? void 0 : sch.$ref);
|
|
55487
|
+
if (sch instanceof compile_1.SchemaEnv)
|
|
55488
|
+
sch = sch.schema;
|
|
55489
|
+
}
|
|
55490
|
+
const propSch = (_a = sch === null || sch === void 0 ? void 0 : sch.properties) === null || _a === void 0 ? void 0 : _a[tagName];
|
|
55287
55491
|
if (typeof propSch != "object") {
|
|
55288
|
-
throw new Error(`discriminator: oneOf schemas must have "properties/${tagName}"`);
|
|
55492
|
+
throw new Error(`discriminator: oneOf subschemas (or referenced schemas) must have "properties/${tagName}"`);
|
|
55289
55493
|
}
|
|
55290
55494
|
tagRequired = tagRequired && (topRequired || hasRequired(sch));
|
|
55291
55495
|
addMappings(propSch, i);
|
|
@@ -55320,7 +55524,7 @@ const def = {
|
|
|
55320
55524
|
};
|
|
55321
55525
|
exports.default = def;
|
|
55322
55526
|
|
|
55323
|
-
},{"../../compile/codegen":
|
|
55527
|
+
},{"../../compile":195,"../../compile/codegen":192,"../../compile/util":200,"../discriminator/types":236}],236:[function(require,module,exports){
|
|
55324
55528
|
"use strict";
|
|
55325
55529
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55326
55530
|
exports.DiscrError = void 0;
|
|
@@ -55330,7 +55534,7 @@ var DiscrError;
|
|
|
55330
55534
|
DiscrError["Mapping"] = "mapping";
|
|
55331
55535
|
})(DiscrError = exports.DiscrError || (exports.DiscrError = {}));
|
|
55332
55536
|
|
|
55333
|
-
},{}],
|
|
55537
|
+
},{}],237:[function(require,module,exports){
|
|
55334
55538
|
"use strict";
|
|
55335
55539
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55336
55540
|
const core_1 = require("./core");
|
|
@@ -55348,7 +55552,7 @@ const draft7Vocabularies = [
|
|
|
55348
55552
|
];
|
|
55349
55553
|
exports.default = draft7Vocabularies;
|
|
55350
55554
|
|
|
55351
|
-
},{"./applicator":
|
|
55555
|
+
},{"./applicator":221,"./core":233,"./format":239,"./metadata":240,"./validation":243}],238:[function(require,module,exports){
|
|
55352
55556
|
"use strict";
|
|
55353
55557
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55354
55558
|
const codegen_1 = require("../../compile/codegen");
|
|
@@ -55441,14 +55645,14 @@ const def = {
|
|
|
55441
55645
|
};
|
|
55442
55646
|
exports.default = def;
|
|
55443
55647
|
|
|
55444
|
-
},{"../../compile/codegen":
|
|
55648
|
+
},{"../../compile/codegen":192}],239:[function(require,module,exports){
|
|
55445
55649
|
"use strict";
|
|
55446
55650
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55447
55651
|
const format_1 = require("./format");
|
|
55448
55652
|
const format = [format_1.default];
|
|
55449
55653
|
exports.default = format;
|
|
55450
55654
|
|
|
55451
|
-
},{"./format":
|
|
55655
|
+
},{"./format":238}],240:[function(require,module,exports){
|
|
55452
55656
|
"use strict";
|
|
55453
55657
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55454
55658
|
exports.contentVocabulary = exports.metadataVocabulary = void 0;
|
|
@@ -55467,7 +55671,7 @@ exports.contentVocabulary = [
|
|
|
55467
55671
|
"contentSchema",
|
|
55468
55672
|
];
|
|
55469
55673
|
|
|
55470
|
-
},{}],
|
|
55674
|
+
},{}],241:[function(require,module,exports){
|
|
55471
55675
|
"use strict";
|
|
55472
55676
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55473
55677
|
const codegen_1 = require("../../compile/codegen");
|
|
@@ -55493,7 +55697,7 @@ const def = {
|
|
|
55493
55697
|
};
|
|
55494
55698
|
exports.default = def;
|
|
55495
55699
|
|
|
55496
|
-
},{"../../compile/codegen":
|
|
55700
|
+
},{"../../compile/codegen":192,"../../compile/util":200,"../../runtime/equal":211}],242:[function(require,module,exports){
|
|
55497
55701
|
"use strict";
|
|
55498
55702
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55499
55703
|
const codegen_1 = require("../../compile/codegen");
|
|
@@ -55541,7 +55745,7 @@ const def = {
|
|
|
55541
55745
|
};
|
|
55542
55746
|
exports.default = def;
|
|
55543
55747
|
|
|
55544
|
-
},{"../../compile/codegen":
|
|
55748
|
+
},{"../../compile/codegen":192,"../../compile/util":200,"../../runtime/equal":211}],243:[function(require,module,exports){
|
|
55545
55749
|
"use strict";
|
|
55546
55750
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55547
55751
|
const limitNumber_1 = require("./limitNumber");
|
|
@@ -55575,7 +55779,7 @@ const validation = [
|
|
|
55575
55779
|
];
|
|
55576
55780
|
exports.default = validation;
|
|
55577
55781
|
|
|
55578
|
-
},{"./const":
|
|
55782
|
+
},{"./const":241,"./enum":242,"./limitItems":244,"./limitLength":245,"./limitNumber":246,"./limitProperties":247,"./multipleOf":248,"./pattern":249,"./required":250,"./uniqueItems":251}],244:[function(require,module,exports){
|
|
55579
55783
|
"use strict";
|
|
55580
55784
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55581
55785
|
const codegen_1 = require("../../compile/codegen");
|
|
@@ -55600,7 +55804,7 @@ const def = {
|
|
|
55600
55804
|
};
|
|
55601
55805
|
exports.default = def;
|
|
55602
55806
|
|
|
55603
|
-
},{"../../compile/codegen":
|
|
55807
|
+
},{"../../compile/codegen":192}],245:[function(require,module,exports){
|
|
55604
55808
|
"use strict";
|
|
55605
55809
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55606
55810
|
const codegen_1 = require("../../compile/codegen");
|
|
@@ -55628,7 +55832,7 @@ const def = {
|
|
|
55628
55832
|
};
|
|
55629
55833
|
exports.default = def;
|
|
55630
55834
|
|
|
55631
|
-
},{"../../compile/codegen":
|
|
55835
|
+
},{"../../compile/codegen":192,"../../compile/util":200,"../../runtime/ucs2length":212}],246:[function(require,module,exports){
|
|
55632
55836
|
"use strict";
|
|
55633
55837
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55634
55838
|
const codegen_1 = require("../../compile/codegen");
|
|
@@ -55656,7 +55860,7 @@ const def = {
|
|
|
55656
55860
|
};
|
|
55657
55861
|
exports.default = def;
|
|
55658
55862
|
|
|
55659
|
-
},{"../../compile/codegen":
|
|
55863
|
+
},{"../../compile/codegen":192}],247:[function(require,module,exports){
|
|
55660
55864
|
"use strict";
|
|
55661
55865
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55662
55866
|
const codegen_1 = require("../../compile/codegen");
|
|
@@ -55681,7 +55885,7 @@ const def = {
|
|
|
55681
55885
|
};
|
|
55682
55886
|
exports.default = def;
|
|
55683
55887
|
|
|
55684
|
-
},{"../../compile/codegen":
|
|
55888
|
+
},{"../../compile/codegen":192}],248:[function(require,module,exports){
|
|
55685
55889
|
"use strict";
|
|
55686
55890
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55687
55891
|
const codegen_1 = require("../../compile/codegen");
|
|
@@ -55708,7 +55912,7 @@ const def = {
|
|
|
55708
55912
|
};
|
|
55709
55913
|
exports.default = def;
|
|
55710
55914
|
|
|
55711
|
-
},{"../../compile/codegen":
|
|
55915
|
+
},{"../../compile/codegen":192}],249:[function(require,module,exports){
|
|
55712
55916
|
"use strict";
|
|
55713
55917
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55714
55918
|
const code_1 = require("../code");
|
|
@@ -55733,7 +55937,7 @@ const def = {
|
|
|
55733
55937
|
};
|
|
55734
55938
|
exports.default = def;
|
|
55735
55939
|
|
|
55736
|
-
},{"../../compile/codegen":
|
|
55940
|
+
},{"../../compile/codegen":192,"../code":231}],250:[function(require,module,exports){
|
|
55737
55941
|
"use strict";
|
|
55738
55942
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55739
55943
|
const code_1 = require("../code");
|
|
@@ -55813,7 +56017,7 @@ const def = {
|
|
|
55813
56017
|
};
|
|
55814
56018
|
exports.default = def;
|
|
55815
56019
|
|
|
55816
|
-
},{"../../compile/codegen":
|
|
56020
|
+
},{"../../compile/codegen":192,"../../compile/util":200,"../code":231}],251:[function(require,module,exports){
|
|
55817
56021
|
"use strict";
|
|
55818
56022
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55819
56023
|
const dataType_1 = require("../../compile/validate/dataType");
|
|
@@ -55878,13 +56082,13 @@ const def = {
|
|
|
55878
56082
|
};
|
|
55879
56083
|
exports.default = def;
|
|
55880
56084
|
|
|
55881
|
-
},{"../../compile/codegen":
|
|
56085
|
+
},{"../../compile/codegen":192,"../../compile/util":200,"../../compile/validate/dataType":203,"../../runtime/equal":211}],252:[function(require,module,exports){
|
|
55882
56086
|
"use strict";
|
|
55883
56087
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
55884
56088
|
exports.version = void 0;
|
|
55885
|
-
exports.version = "ethers/5.5.
|
|
56089
|
+
exports.version = "ethers/5.5.4";
|
|
55886
56090
|
|
|
55887
|
-
},{}],
|
|
56091
|
+
},{}],253:[function(require,module,exports){
|
|
55888
56092
|
"use strict";
|
|
55889
56093
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
55890
56094
|
if (k2 === undefined) k2 = k;
|
|
@@ -55940,7 +56144,7 @@ Object.defineProperty(exports, "version", { enumerable: true, get: function () {
|
|
|
55940
56144
|
var logger = new logger_1.Logger(_version_1.version);
|
|
55941
56145
|
exports.logger = logger;
|
|
55942
56146
|
|
|
55943
|
-
},{"./_version":
|
|
56147
|
+
},{"./_version":252,"./utils":255,"@ethersproject/abstract-signer":20,"@ethersproject/bignumber":29,"@ethersproject/constants":35,"@ethersproject/contracts":38,"@ethersproject/logger":55,"@ethersproject/providers":71,"@ethersproject/wallet":105,"@ethersproject/wordlists":110}],254:[function(require,module,exports){
|
|
55944
56148
|
"use strict";
|
|
55945
56149
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
55946
56150
|
if (k2 === undefined) k2 = k;
|
|
@@ -55994,7 +56198,7 @@ Object.defineProperty(exports, "wordlists", { enumerable: true, get: function ()
|
|
|
55994
56198
|
Object.defineProperty(exports, "version", { enumerable: true, get: function () { return ethers_1.version; } });
|
|
55995
56199
|
Object.defineProperty(exports, "Wordlist", { enumerable: true, get: function () { return ethers_1.Wordlist; } });
|
|
55996
56200
|
|
|
55997
|
-
},{"./ethers":
|
|
56201
|
+
},{"./ethers":253}],255:[function(require,module,exports){
|
|
55998
56202
|
"use strict";
|
|
55999
56203
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
56000
56204
|
if (k2 === undefined) k2 = k;
|
|
@@ -56142,102 +56346,7 @@ var strings_2 = require("@ethersproject/strings");
|
|
|
56142
56346
|
Object.defineProperty(exports, "UnicodeNormalizationForm", { enumerable: true, get: function () { return strings_2.UnicodeNormalizationForm; } });
|
|
56143
56347
|
Object.defineProperty(exports, "Utf8ErrorReason", { enumerable: true, get: function () { return strings_2.Utf8ErrorReason; } });
|
|
56144
56348
|
|
|
56145
|
-
},{"@ethersproject/abi":15,"@ethersproject/address":22,"@ethersproject/base64":24,"@ethersproject/basex":25,"@ethersproject/bytes":31,"@ethersproject/hash":41,"@ethersproject/hdnode":46,"@ethersproject/json-wallets":49,"@ethersproject/keccak256":53,"@ethersproject/logger":55,"@ethersproject/properties":61,"@ethersproject/random":
|
|
56146
|
-
'use strict';
|
|
56147
|
-
|
|
56148
|
-
var traverse = module.exports = function (schema, opts, cb) {
|
|
56149
|
-
// Legacy support for v0.3.1 and earlier.
|
|
56150
|
-
if (typeof opts == 'function') {
|
|
56151
|
-
cb = opts;
|
|
56152
|
-
opts = {};
|
|
56153
|
-
}
|
|
56154
|
-
|
|
56155
|
-
cb = opts.cb || cb;
|
|
56156
|
-
var pre = (typeof cb == 'function') ? cb : cb.pre || function() {};
|
|
56157
|
-
var post = cb.post || function() {};
|
|
56158
|
-
|
|
56159
|
-
_traverse(opts, pre, post, schema, '', schema);
|
|
56160
|
-
};
|
|
56161
|
-
|
|
56162
|
-
|
|
56163
|
-
traverse.keywords = {
|
|
56164
|
-
additionalItems: true,
|
|
56165
|
-
items: true,
|
|
56166
|
-
contains: true,
|
|
56167
|
-
additionalProperties: true,
|
|
56168
|
-
propertyNames: true,
|
|
56169
|
-
not: true,
|
|
56170
|
-
if: true,
|
|
56171
|
-
then: true,
|
|
56172
|
-
else: true
|
|
56173
|
-
};
|
|
56174
|
-
|
|
56175
|
-
traverse.arrayKeywords = {
|
|
56176
|
-
items: true,
|
|
56177
|
-
allOf: true,
|
|
56178
|
-
anyOf: true,
|
|
56179
|
-
oneOf: true
|
|
56180
|
-
};
|
|
56181
|
-
|
|
56182
|
-
traverse.propsKeywords = {
|
|
56183
|
-
$defs: true,
|
|
56184
|
-
definitions: true,
|
|
56185
|
-
properties: true,
|
|
56186
|
-
patternProperties: true,
|
|
56187
|
-
dependencies: true
|
|
56188
|
-
};
|
|
56189
|
-
|
|
56190
|
-
traverse.skipKeywords = {
|
|
56191
|
-
default: true,
|
|
56192
|
-
enum: true,
|
|
56193
|
-
const: true,
|
|
56194
|
-
required: true,
|
|
56195
|
-
maximum: true,
|
|
56196
|
-
minimum: true,
|
|
56197
|
-
exclusiveMaximum: true,
|
|
56198
|
-
exclusiveMinimum: true,
|
|
56199
|
-
multipleOf: true,
|
|
56200
|
-
maxLength: true,
|
|
56201
|
-
minLength: true,
|
|
56202
|
-
pattern: true,
|
|
56203
|
-
format: true,
|
|
56204
|
-
maxItems: true,
|
|
56205
|
-
minItems: true,
|
|
56206
|
-
uniqueItems: true,
|
|
56207
|
-
maxProperties: true,
|
|
56208
|
-
minProperties: true
|
|
56209
|
-
};
|
|
56210
|
-
|
|
56211
|
-
|
|
56212
|
-
function _traverse(opts, pre, post, schema, jsonPtr, rootSchema, parentJsonPtr, parentKeyword, parentSchema, keyIndex) {
|
|
56213
|
-
if (schema && typeof schema == 'object' && !Array.isArray(schema)) {
|
|
56214
|
-
pre(schema, jsonPtr, rootSchema, parentJsonPtr, parentKeyword, parentSchema, keyIndex);
|
|
56215
|
-
for (var key in schema) {
|
|
56216
|
-
var sch = schema[key];
|
|
56217
|
-
if (Array.isArray(sch)) {
|
|
56218
|
-
if (key in traverse.arrayKeywords) {
|
|
56219
|
-
for (var i=0; i<sch.length; i++)
|
|
56220
|
-
_traverse(opts, pre, post, sch[i], jsonPtr + '/' + key + '/' + i, rootSchema, jsonPtr, key, schema, i);
|
|
56221
|
-
}
|
|
56222
|
-
} else if (key in traverse.propsKeywords) {
|
|
56223
|
-
if (sch && typeof sch == 'object') {
|
|
56224
|
-
for (var prop in sch)
|
|
56225
|
-
_traverse(opts, pre, post, sch[prop], jsonPtr + '/' + key + '/' + escapeJsonPtr(prop), rootSchema, jsonPtr, key, schema, prop);
|
|
56226
|
-
}
|
|
56227
|
-
} else if (key in traverse.keywords || (opts.allKeys && !(key in traverse.skipKeywords))) {
|
|
56228
|
-
_traverse(opts, pre, post, sch, jsonPtr + '/' + key, rootSchema, jsonPtr, key, schema);
|
|
56229
|
-
}
|
|
56230
|
-
}
|
|
56231
|
-
post(schema, jsonPtr, rootSchema, parentJsonPtr, parentKeyword, parentSchema, keyIndex);
|
|
56232
|
-
}
|
|
56233
|
-
}
|
|
56234
|
-
|
|
56235
|
-
|
|
56236
|
-
function escapeJsonPtr(str) {
|
|
56237
|
-
return str.replace(/~/g, '~0').replace(/\//g, '~1');
|
|
56238
|
-
}
|
|
56239
|
-
|
|
56240
|
-
},{}],252:[function(require,module,exports){
|
|
56349
|
+
},{"@ethersproject/abi":15,"@ethersproject/address":22,"@ethersproject/base64":24,"@ethersproject/basex":25,"@ethersproject/bytes":31,"@ethersproject/hash":41,"@ethersproject/hdnode":46,"@ethersproject/json-wallets":49,"@ethersproject/keccak256":53,"@ethersproject/logger":55,"@ethersproject/properties":61,"@ethersproject/random":185,"@ethersproject/rlp":85,"@ethersproject/sha2":88,"@ethersproject/signing-key":92,"@ethersproject/solidity":94,"@ethersproject/strings":98,"@ethersproject/transactions":101,"@ethersproject/units":103,"@ethersproject/wallet":105,"@ethersproject/web":189}],256:[function(require,module,exports){
|
|
56241
56350
|
"use strict";
|
|
56242
56351
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
56243
56352
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -56366,7 +56475,7 @@ class BatchCall {
|
|
|
56366
56475
|
}
|
|
56367
56476
|
exports.default = BatchCall;
|
|
56368
56477
|
|
|
56369
|
-
},{"./Host":
|
|
56478
|
+
},{"./Host":259,"./SFError":263,"./abi/Superfluid.json":271,"./utils":314,"ethers":254}],257:[function(require,module,exports){
|
|
56370
56479
|
"use strict";
|
|
56371
56480
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
56372
56481
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -56545,7 +56654,7 @@ class ConstantFlowAgreementV1 {
|
|
|
56545
56654
|
}
|
|
56546
56655
|
exports.default = ConstantFlowAgreementV1;
|
|
56547
56656
|
|
|
56548
|
-
},{"./Host":
|
|
56657
|
+
},{"./Host":259,"./SFError":263,"./abi/IConstantFlowAgreementV1.json":267,"./utils":314,"ethers":254}],258:[function(require,module,exports){
|
|
56549
56658
|
"use strict";
|
|
56550
56659
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
56551
56660
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -56756,7 +56865,7 @@ Framework.create = async (options) => {
|
|
|
56756
56865
|
}
|
|
56757
56866
|
};
|
|
56758
56867
|
|
|
56759
|
-
},{"./BatchCall":
|
|
56868
|
+
},{"./BatchCall":256,"./ConstantFlowAgreementV1":257,"./Host":259,"./InstantDistributionAgreementV1":260,"./Query":262,"./SFError":263,"./SuperToken":264,"./abi/IResolver.json":269,"./abi/SuperfluidLoader.json":272,"./constants":273,"./frameworkHelpers":275,"./utils":314,"ethers":254}],259:[function(require,module,exports){
|
|
56760
56869
|
"use strict";
|
|
56761
56870
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
56762
56871
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -56788,7 +56897,7 @@ class Host {
|
|
|
56788
56897
|
}
|
|
56789
56898
|
exports.default = Host;
|
|
56790
56899
|
|
|
56791
|
-
},{"./Operation":
|
|
56900
|
+
},{"./Operation":261,"./abi/Superfluid.json":271,"ethers":254}],260:[function(require,module,exports){
|
|
56792
56901
|
"use strict";
|
|
56793
56902
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
56794
56903
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -57038,7 +57147,7 @@ class InstantDistributionAgreementV1 {
|
|
|
57038
57147
|
}
|
|
57039
57148
|
exports.default = InstantDistributionAgreementV1;
|
|
57040
57149
|
|
|
57041
|
-
},{"./Host":
|
|
57150
|
+
},{"./Host":259,"./SFError":263,"./abi/IInstantDistributionAgreementV1.json":268,"./utils":314,"ethers":254}],261:[function(require,module,exports){
|
|
57042
57151
|
"use strict";
|
|
57043
57152
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57044
57153
|
const ethers_1 = require("ethers");
|
|
@@ -57122,7 +57231,7 @@ class Operation {
|
|
|
57122
57231
|
}
|
|
57123
57232
|
exports.default = Operation;
|
|
57124
57233
|
|
|
57125
|
-
},{"./SFError":
|
|
57234
|
+
},{"./SFError":263,"ethers":254}],262:[function(require,module,exports){
|
|
57126
57235
|
"use strict";
|
|
57127
57236
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
57128
57237
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -57433,7 +57542,7 @@ class Query {
|
|
|
57433
57542
|
}
|
|
57434
57543
|
exports.default = Query;
|
|
57435
57544
|
|
|
57436
|
-
},{"./SFError":
|
|
57545
|
+
},{"./SFError":263,"./mapGetAllEventsQueryEvents":278,"./pagination":280,"./subgraph/SubgraphClient":281,"./subgraph/queries/getAccountTokenSnapshots.generated":305,"./subgraph/queries/getAllEvents.generated":306,"./subgraph/queries/getIndexSubscriptions.generated":307,"./subgraph/queries/getIndexes.generated":308,"./subgraph/queries/getStreams.generated":309,"./subgraph/queries/getTokens.generated":310,"./utils":314,"./validation":315,"lodash":176}],263:[function(require,module,exports){
|
|
57437
57546
|
"use strict";
|
|
57438
57547
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57439
57548
|
exports.SFError = void 0;
|
|
@@ -57471,7 +57580,7 @@ class SFError {
|
|
|
57471
57580
|
}
|
|
57472
57581
|
exports.SFError = SFError;
|
|
57473
57582
|
|
|
57474
|
-
},{}],
|
|
57583
|
+
},{}],264:[function(require,module,exports){
|
|
57475
57584
|
"use strict";
|
|
57476
57585
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
57477
57586
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -57870,7 +57979,7 @@ SuperToken.create = async (options) => {
|
|
|
57870
57979
|
}
|
|
57871
57980
|
};
|
|
57872
57981
|
|
|
57873
|
-
},{"./ConstantFlowAgreementV1":
|
|
57982
|
+
},{"./ConstantFlowAgreementV1":257,"./InstantDistributionAgreementV1":260,"./Operation":261,"./SFError":263,"./Token":265,"./abi/SuperToken.json":270,"./constants":273,"./frameworkHelpers":275,"./utils":314,"ethers":254}],265:[function(require,module,exports){
|
|
57874
57983
|
"use strict";
|
|
57875
57984
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
57876
57985
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -58037,7 +58146,7 @@ class Token {
|
|
|
58037
58146
|
}
|
|
58038
58147
|
exports.default = Token;
|
|
58039
58148
|
|
|
58040
|
-
},{"./Operation":
|
|
58149
|
+
},{"./Operation":261,"./SFError":263,"./abi/ERC20WithTokenInfo.json":266,"./utils":314,"ethers":254}],266:[function(require,module,exports){
|
|
58041
58150
|
module.exports={ "abi": [
|
|
58042
58151
|
{
|
|
58043
58152
|
"anonymous": false,
|
|
@@ -58263,7 +58372,7 @@ module.exports={ "abi": [
|
|
|
58263
58372
|
}
|
|
58264
58373
|
] }
|
|
58265
58374
|
|
|
58266
|
-
},{}],
|
|
58375
|
+
},{}],267:[function(require,module,exports){
|
|
58267
58376
|
module.exports={ "abi": [
|
|
58268
58377
|
{
|
|
58269
58378
|
"anonymous": false,
|
|
@@ -58671,7 +58780,7 @@ module.exports={ "abi": [
|
|
|
58671
58780
|
}
|
|
58672
58781
|
] }
|
|
58673
58782
|
|
|
58674
|
-
},{}],
|
|
58783
|
+
},{}],268:[function(require,module,exports){
|
|
58675
58784
|
module.exports={ "abi": [
|
|
58676
58785
|
{
|
|
58677
58786
|
"anonymous": false,
|
|
@@ -59620,7 +59729,7 @@ module.exports={ "abi": [
|
|
|
59620
59729
|
}
|
|
59621
59730
|
] }
|
|
59622
59731
|
|
|
59623
|
-
},{}],
|
|
59732
|
+
},{}],269:[function(require,module,exports){
|
|
59624
59733
|
module.exports={ "abi": [
|
|
59625
59734
|
{
|
|
59626
59735
|
"anonymous": false,
|
|
@@ -59680,7 +59789,7 @@ module.exports={ "abi": [
|
|
|
59680
59789
|
}
|
|
59681
59790
|
] }
|
|
59682
59791
|
|
|
59683
|
-
},{}],
|
|
59792
|
+
},{}],270:[function(require,module,exports){
|
|
59684
59793
|
module.exports={ "abi": [
|
|
59685
59794
|
{
|
|
59686
59795
|
"inputs": [
|
|
@@ -61304,7 +61413,7 @@ module.exports={ "abi": [
|
|
|
61304
61413
|
}
|
|
61305
61414
|
] }
|
|
61306
61415
|
|
|
61307
|
-
},{}],
|
|
61416
|
+
},{}],271:[function(require,module,exports){
|
|
61308
61417
|
module.exports={ "abi": [
|
|
61309
61418
|
{
|
|
61310
61419
|
"inputs": [
|
|
@@ -62465,7 +62574,7 @@ module.exports={ "abi": [
|
|
|
62465
62574
|
}
|
|
62466
62575
|
] }
|
|
62467
62576
|
|
|
62468
|
-
},{}],
|
|
62577
|
+
},{}],272:[function(require,module,exports){
|
|
62469
62578
|
module.exports={ "abi": [
|
|
62470
62579
|
{
|
|
62471
62580
|
"inputs": [
|
|
@@ -62521,7 +62630,7 @@ module.exports={ "abi": [
|
|
|
62521
62630
|
}
|
|
62522
62631
|
] }
|
|
62523
62632
|
|
|
62524
|
-
},{}],
|
|
62633
|
+
},{}],273:[function(require,module,exports){
|
|
62525
62634
|
"use strict";
|
|
62526
62635
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62527
62636
|
exports.networkNameToChainIdMap = exports.chainIdToResolverDataMap = exports.networkNames = exports.chainIds = exports.BASE_18 = exports.YEAR_IN_SECONDS = exports.MONTH_IN_SECONDS = exports.WEEK_IN_SECONDS = exports.DAY_IN_SECONDS = exports.HOUR_IN_SECONDS = exports.MINUTE_IN_SECONDS = exports.MINUTES_PER_HOUR = exports.HOURS_PER_DAY = exports.DAYS_PER_WEEK = exports.DAYS_PER_MONTH = exports.MONTHS_PER_YEAR = void 0;
|
|
@@ -62656,11 +62765,11 @@ exports.networkNameToChainIdMap = new Map([
|
|
|
62656
62765
|
["arbitrum-rinkeby", 421611],
|
|
62657
62766
|
]);
|
|
62658
62767
|
|
|
62659
|
-
},{}],
|
|
62768
|
+
},{}],274:[function(require,module,exports){
|
|
62660
62769
|
"use strict";
|
|
62661
62770
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62662
62771
|
|
|
62663
|
-
},{}],
|
|
62772
|
+
},{}],275:[function(require,module,exports){
|
|
62664
62773
|
"use strict";
|
|
62665
62774
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62666
62775
|
exports.getNetworkName = exports.getSubgraphQueriesEndpoint = exports.validateFrameworkConstructorOptions = void 0;
|
|
@@ -62748,7 +62857,7 @@ const getNetworkName = (options) => {
|
|
|
62748
62857
|
};
|
|
62749
62858
|
exports.getNetworkName = getNetworkName;
|
|
62750
62859
|
|
|
62751
|
-
},{"./SFError":
|
|
62860
|
+
},{"./SFError":263,"./constants":273,"./utils":314}],276:[function(require,module,exports){
|
|
62752
62861
|
"use strict";
|
|
62753
62862
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
62754
62863
|
if (k2 === undefined) k2 = k;
|
|
@@ -62802,9 +62911,9 @@ __exportStar(require("./subgraph/mappedSubgraphTypes"), exports);
|
|
|
62802
62911
|
__exportStar(require("./SFError"), exports);
|
|
62803
62912
|
__exportStar(require("./subgraph/subgraphQueryHandler"), exports);
|
|
62804
62913
|
|
|
62805
|
-
},{"./BatchCall":
|
|
62806
|
-
arguments[4][
|
|
62807
|
-
},{"dup":
|
|
62914
|
+
},{"./BatchCall":256,"./ConstantFlowAgreementV1":257,"./Framework":258,"./Host":259,"./InstantDistributionAgreementV1":260,"./Query":262,"./SFError":263,"./SuperToken":264,"./events":274,"./interfaces":277,"./ordering":279,"./pagination":280,"./subgraph/entities/account/account":282,"./subgraph/entities/accountTokenSnapshot/accountTokenSnapshot":284,"./subgraph/entities/index/index":286,"./subgraph/entities/indexSubscription/indexSubscription":288,"./subgraph/entities/stream/stream":290,"./subgraph/entities/streamPeriod/streamPeriod":292,"./subgraph/entities/token/token":294,"./subgraph/entities/tokenStatistic/tokenStatistic":296,"./subgraph/events/events":299,"./subgraph/events/flowUpdatedEvent":300,"./subgraph/events/indexUpdatedEvent":301,"./subgraph/events/subscriptionUnitsUpdatedEvents":302,"./subgraph/mappedSubgraphTypes":303,"./subgraph/schema.generated":311,"./subgraph/subgraphQueryHandler":312,"./types":313,"./utils":314}],277:[function(require,module,exports){
|
|
62915
|
+
arguments[4][274][0].apply(exports,arguments)
|
|
62916
|
+
},{"dup":274}],278:[function(require,module,exports){
|
|
62808
62917
|
"use strict";
|
|
62809
62918
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62810
62919
|
exports.mapGetAllEventsQueryEvents = void 0;
|
|
@@ -63236,9 +63345,9 @@ const mapGetAllEventsQueryEvents = (queryEvents) => {
|
|
|
63236
63345
|
};
|
|
63237
63346
|
exports.mapGetAllEventsQueryEvents = mapGetAllEventsQueryEvents;
|
|
63238
63347
|
|
|
63239
|
-
},{"./utils":
|
|
63240
|
-
arguments[4][
|
|
63241
|
-
},{"dup":
|
|
63348
|
+
},{"./utils":314}],279:[function(require,module,exports){
|
|
63349
|
+
arguments[4][274][0].apply(exports,arguments)
|
|
63350
|
+
},{"dup":274}],280:[function(require,module,exports){
|
|
63242
63351
|
"use strict";
|
|
63243
63352
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63244
63353
|
exports.takePlusOne = exports.nextLastIdPaging = exports.nextSkipPaging = exports.createLastIdPaging = exports.createSkipPaging = exports.createPagedResult = void 0;
|
|
@@ -63299,7 +63408,7 @@ const takePlusOne = (paging) => {
|
|
|
63299
63408
|
};
|
|
63300
63409
|
exports.takePlusOne = takePlusOne;
|
|
63301
63410
|
|
|
63302
|
-
},{}],
|
|
63411
|
+
},{}],281:[function(require,module,exports){
|
|
63303
63412
|
"use strict";
|
|
63304
63413
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63305
63414
|
exports.SubgraphClient = void 0;
|
|
@@ -63348,7 +63457,7 @@ function cleanVariables(variables) {
|
|
|
63348
63457
|
]));
|
|
63349
63458
|
}
|
|
63350
63459
|
|
|
63351
|
-
},{"../SFError":
|
|
63460
|
+
},{"../SFError":263,"graphql-request":149}],282:[function(require,module,exports){
|
|
63352
63461
|
"use strict";
|
|
63353
63462
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63354
63463
|
exports.AccountQueryHandler = void 0;
|
|
@@ -63377,13 +63486,13 @@ class AccountQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHandler {
|
|
|
63377
63486
|
}
|
|
63378
63487
|
exports.AccountQueryHandler = AccountQueryHandler;
|
|
63379
63488
|
|
|
63380
|
-
},{"../../subgraphQueryHandler":
|
|
63489
|
+
},{"../../subgraphQueryHandler":312,"./accounts.generated":283}],283:[function(require,module,exports){
|
|
63381
63490
|
"use strict";
|
|
63382
63491
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63383
63492
|
exports.AccountsDocument = void 0;
|
|
63384
63493
|
exports.AccountsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "accounts" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Account_orderBy" } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Account_filter" } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "accounts" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "createdAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSuperApp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtTimestamp" } }] } }] } }] };
|
|
63385
63494
|
|
|
63386
|
-
},{}],
|
|
63495
|
+
},{}],284:[function(require,module,exports){
|
|
63387
63496
|
"use strict";
|
|
63388
63497
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63389
63498
|
exports.AccountTokenSnapshotQueryHandler = void 0;
|
|
@@ -63412,13 +63521,13 @@ class AccountTokenSnapshotQueryHandler extends subgraphQueryHandler_1.SubgraphQu
|
|
|
63412
63521
|
}
|
|
63413
63522
|
exports.AccountTokenSnapshotQueryHandler = AccountTokenSnapshotQueryHandler;
|
|
63414
63523
|
|
|
63415
|
-
},{"../../subgraphQueryHandler":
|
|
63524
|
+
},{"../../subgraphQueryHandler":312,"./accountTokenSnapshots.generated":285}],285:[function(require,module,exports){
|
|
63416
63525
|
"use strict";
|
|
63417
63526
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63418
63527
|
exports.AccountTokenSnapshotsDocument = void 0;
|
|
63419
63528
|
exports.AccountTokenSnapshotsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "accountTokenSnapshots" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "AccountTokenSnapshot_orderBy" } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "AccountTokenSnapshot_filter" } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "accountTokenSnapshots" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "account" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "balanceUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountStreamedUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountTransferredUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalInflowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalApprovedSubscriptions" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNetFlowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfActiveStreams" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalOutflowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfClosedStreams" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalSubscriptionsWithUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtTimestamp" } }] } }] } }] };
|
|
63420
63529
|
|
|
63421
|
-
},{}],
|
|
63530
|
+
},{}],286:[function(require,module,exports){
|
|
63422
63531
|
"use strict";
|
|
63423
63532
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63424
63533
|
exports.IndexQueryHandler = void 0;
|
|
@@ -63450,13 +63559,13 @@ class IndexQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHandler {
|
|
|
63450
63559
|
}
|
|
63451
63560
|
exports.IndexQueryHandler = IndexQueryHandler;
|
|
63452
63561
|
|
|
63453
|
-
},{"../../subgraphQueryHandler":
|
|
63562
|
+
},{"../../subgraphQueryHandler":312,"./indexes.generated":287}],287:[function(require,module,exports){
|
|
63454
63563
|
"use strict";
|
|
63455
63564
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63456
63565
|
exports.IndexesDocument = void 0;
|
|
63457
63566
|
exports.IndexesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "indexes" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Index_orderBy" } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Index_filter" } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "indexes" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "createdAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexCreatedEvent" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexValue" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountDistributedUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalSubscriptionsWithUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalUnitsApproved" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalUnitsPending" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtTimestamp" } }] } }] } }] };
|
|
63458
63567
|
|
|
63459
|
-
},{}],
|
|
63568
|
+
},{}],288:[function(require,module,exports){
|
|
63460
63569
|
"use strict";
|
|
63461
63570
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63462
63571
|
exports.IndexSubscriptionQueryHandler = void 0;
|
|
@@ -63489,13 +63598,13 @@ class IndexSubscriptionQueryHandler extends subgraphQueryHandler_1.SubgraphQuery
|
|
|
63489
63598
|
}
|
|
63490
63599
|
exports.IndexSubscriptionQueryHandler = IndexSubscriptionQueryHandler;
|
|
63491
63600
|
|
|
63492
|
-
},{"../../subgraphQueryHandler":
|
|
63601
|
+
},{"../../subgraphQueryHandler":312,"./indexSubscriptions.generated":289}],289:[function(require,module,exports){
|
|
63493
63602
|
"use strict";
|
|
63494
63603
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63495
63604
|
exports.IndexSubscriptionsDocument = void 0;
|
|
63496
63605
|
exports.IndexSubscriptionsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "indexSubscriptions" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexSubscription_orderBy" } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexSubscription_filter" } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "indexSubscriptions" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "approved" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexValueUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountReceivedUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "units" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtTimestamp" } }] } }] } }] };
|
|
63497
63606
|
|
|
63498
|
-
},{}],
|
|
63607
|
+
},{}],290:[function(require,module,exports){
|
|
63499
63608
|
"use strict";
|
|
63500
63609
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63501
63610
|
exports.StreamQueryHandler = void 0;
|
|
@@ -63527,13 +63636,13 @@ class StreamQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHandler {
|
|
|
63527
63636
|
}
|
|
63528
63637
|
exports.StreamQueryHandler = StreamQueryHandler;
|
|
63529
63638
|
|
|
63530
|
-
},{"../../subgraphQueryHandler":
|
|
63639
|
+
},{"../../subgraphQueryHandler":312,"./streams.generated":291}],291:[function(require,module,exports){
|
|
63531
63640
|
"use strict";
|
|
63532
63641
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63533
63642
|
exports.StreamsDocument = void 0;
|
|
63534
63643
|
exports.StreamsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "streams" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Stream_orderBy" } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Stream_filter" } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "streams" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "createdAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "currentFlowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "receiver" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "sender" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "streamedUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtTimestamp" } }] } }] } }] };
|
|
63535
63644
|
|
|
63536
|
-
},{}],
|
|
63645
|
+
},{}],292:[function(require,module,exports){
|
|
63537
63646
|
"use strict";
|
|
63538
63647
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63539
63648
|
exports.StreamPeriodQueryHandler = void 0;
|
|
@@ -63571,13 +63680,13 @@ class StreamPeriodQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHandl
|
|
|
63571
63680
|
}
|
|
63572
63681
|
exports.StreamPeriodQueryHandler = StreamPeriodQueryHandler;
|
|
63573
63682
|
|
|
63574
|
-
},{"../../subgraphQueryHandler":
|
|
63683
|
+
},{"../../subgraphQueryHandler":312,"./streamPeriods.generated":293}],293:[function(require,module,exports){
|
|
63575
63684
|
"use strict";
|
|
63576
63685
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63577
63686
|
exports.StreamPeriodsDocument = void 0;
|
|
63578
63687
|
exports.StreamPeriodsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "streamPeriods" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "StreamPeriod_filter" } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "StreamPeriod_orderBy" } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "streamPeriods" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "flowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "startedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "startedAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "stoppedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "stoppedAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountStreamed" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "stream" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "sender" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "receiver" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "stoppedAtEvent" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "startedAtEvent" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }] } }] } }] };
|
|
63579
63688
|
|
|
63580
|
-
},{}],
|
|
63689
|
+
},{}],294:[function(require,module,exports){
|
|
63581
63690
|
"use strict";
|
|
63582
63691
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63583
63692
|
exports.TokenQueryHandler = void 0;
|
|
@@ -63604,13 +63713,13 @@ class TokenQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHandler {
|
|
|
63604
63713
|
}
|
|
63605
63714
|
exports.TokenQueryHandler = TokenQueryHandler;
|
|
63606
63715
|
|
|
63607
|
-
},{"../../subgraphQueryHandler":
|
|
63716
|
+
},{"../../subgraphQueryHandler":312,"./tokens.generated":295}],295:[function(require,module,exports){
|
|
63608
63717
|
"use strict";
|
|
63609
63718
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63610
63719
|
exports.TokensDocument = void 0;
|
|
63611
63720
|
exports.TokensDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "tokens" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Token_orderBy" } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Token_filter" } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "tokens" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "createdAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "decimals" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isListed" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isSuperToken" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "symbol" } }, { "kind": "Field", "name": { "kind": "Name", "value": "underlyingAddress" } }] } }] } }] };
|
|
63612
63721
|
|
|
63613
|
-
},{}],
|
|
63722
|
+
},{}],296:[function(require,module,exports){
|
|
63614
63723
|
"use strict";
|
|
63615
63724
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63616
63725
|
exports.TokenStatisticQueryHandler = void 0;
|
|
@@ -63637,13 +63746,13 @@ class TokenStatisticQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHan
|
|
|
63637
63746
|
}
|
|
63638
63747
|
exports.TokenStatisticQueryHandler = TokenStatisticQueryHandler;
|
|
63639
63748
|
|
|
63640
|
-
},{"../../subgraphQueryHandler":
|
|
63749
|
+
},{"../../subgraphQueryHandler":312,"./tokenStatistics.generated":297}],297:[function(require,module,exports){
|
|
63641
63750
|
"use strict";
|
|
63642
63751
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63643
63752
|
exports.TokenStatisticsDocument = void 0;
|
|
63644
63753
|
exports.TokenStatisticsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "tokenStatistics" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "TokenStatistic_orderBy" } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "TokenStatistic_filter" } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "tokenStatistics" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountDistributedUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountStreamedUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountTransferredUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalApprovedSubscriptions" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfActiveIndexes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfActiveStreams" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfIndexes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfClosedStreams" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalOutflowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalSubscriptionsWithUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalSupply" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtBlockNumber" } }] } }] } }] };
|
|
63645
63754
|
|
|
63646
|
-
},{}],
|
|
63755
|
+
},{}],298:[function(require,module,exports){
|
|
63647
63756
|
"use strict";
|
|
63648
63757
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63649
63758
|
exports.EventsDocument = exports.SuperTokenLogicCreatedEventsDocument = exports.SuperTokenCreatedEventsDocument = exports.CustomSuperTokenCreatedEventsDocument = exports.SentEventsDocument = exports.MintedEventsDocument = exports.BurnedEventsDocument = exports.AgreementLiquidatedByEventsDocument = exports.TrustedForwarderChangedEventsDocument = exports.RewardAddressChangedEventsDocument = exports.ConfigChangedEventsDocument = exports.CfaV1LiquidationPeriodChangedEventsDocument = exports.RoleRevokedEventsDocument = exports.RoleGrantedEventsDocument = exports.RoleAdminChangedEventsDocument = exports.SuperTokenLogicUpdatedEventsDocument = exports.SuperTokenFactoryUpdatedEventsDocument = exports.JailEventsDocument = exports.GovernanceReplacedEventsDocument = exports.AppRegisteredEventsDocument = exports.AgreementClassUpdatedEventsDocument = exports.AgreementClassRegisteredEventsDocument = exports.TokenDowngradedEventsDocument = exports.TokenUpgradedEventsDocument = exports.TransferEventsDocument = exports.SubscriptionUnitsUpdatedEventsDocument = exports.SubscriptionRevokedEventsDocument = exports.SubscriptionDistributionClaimedEventsDocument = exports.SubscriptionApprovedEventsDocument = exports.IndexUnsubscribedEventsDocument = exports.IndexUnitsUpdatedEventsDocument = exports.IndexSubscribedEventsDocument = exports.IndexUpdatedEventsDocument = exports.IndexDistributionClaimedEventsDocument = exports.IndexCreatedEventsDocument = exports.FlowUpdatedEventsDocument = void 0;
|
|
@@ -63684,7 +63793,7 @@ exports.SuperTokenCreatedEventsDocument = { "kind": "Document", "definitions": [
|
|
|
63684
63793
|
exports.SuperTokenLogicCreatedEventsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "superTokenLogicCreatedEvents" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "SuperTokenLogicCreatedEvent_filter" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "SuperTokenLogicCreatedEvent_orderBy" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "superTokenLogicCreatedEvents" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "tokenLogic" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }] } }] };
|
|
63685
63794
|
exports.EventsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "events" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event_filter" } } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event_orderBy" } } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "events" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "FlowUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "type" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sender" } }, { "kind": "Field", "name": { "kind": "Name", "value": "receiver" } }, { "kind": "Field", "name": { "kind": "Name", "value": "flowRate" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexCreatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexDistributionClaimedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalUnitsPending" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalUnitsApproved" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "oldIndexValue" } }, { "kind": "Field", "name": { "kind": "Name", "value": "newIndexValue" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexSubscribedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexUnitsUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "units" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "oldUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexUnsubscribedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SubscriptionApprovedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscription" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SubscriptionDistributionClaimedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscription" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SubscriptionRevokedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscription" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SubscriptionUnitsUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "units" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscription" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "oldUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "TransferEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "value" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "to" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "from" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "TokenUpgradedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "account" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "TokenDowngradedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "account" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "AgreementClassRegisteredEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "code" } }, { "kind": "Field", "name": { "kind": "Name", "value": "agreementType" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "AgreementClassUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "code" } }, { "kind": "Field", "name": { "kind": "Name", "value": "agreementType" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "AppRegisteredEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "app" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "GovernanceReplacedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "oldGovernance" } }, { "kind": "Field", "name": { "kind": "Name", "value": "newGovernance" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "JailEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "reason" } }, { "kind": "Field", "name": { "kind": "Name", "value": "app" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SuperTokenFactoryUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "newFactory" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SuperTokenLogicUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "code" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleAdminChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "previousAdminRole" } }, { "kind": "Field", "name": { "kind": "Name", "value": "newAdminRole" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleGrantedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "sender" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "account" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleRevokedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "sender" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "account" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "CFAv1LiquidationPeriodChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "superToken" } }, { "kind": "Field", "name": { "kind": "Name", "value": "host" } }, { "kind": "Field", "name": { "kind": "Name", "value": "liquidationPeriod" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isKeySet" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "value" } }, { "kind": "Field", "name": { "kind": "Name", "value": "superToken" } }, { "kind": "Field", "name": { "kind": "Name", "value": "key" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isKeySet" } }, { "kind": "Field", "name": { "kind": "Name", "value": "host" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "RewardAddressChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "superToken" } }, { "kind": "Field", "name": { "kind": "Name", "value": "rewardAddress" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isKeySet" } }, { "kind": "Field", "name": { "kind": "Name", "value": "host" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "TrustedForwarderChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "isKeySet" } }, { "kind": "Field", "name": { "kind": "Name", "value": "host" } }, { "kind": "Field", "name": { "kind": "Name", "value": "forwarder" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enabled" } }, { "kind": "Field", "name": { "kind": "Name", "value": "superToken" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "AgreementLiquidatedByEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "rewardAmount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "penaltyAccount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "liquidatorAccount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "bondAccount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "bailoutAmount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "agreementId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "agreementClass" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "BurnedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "operatorData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "operator" } }, { "kind": "Field", "name": { "kind": "Name", "value": "from" } }, { "kind": "Field", "name": { "kind": "Name", "value": "data" } }, { "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "MintedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "operatorData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "operator" } }, { "kind": "Field", "name": { "kind": "Name", "value": "data" } }, { "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "to" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SentEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "to" } }, { "kind": "Field", "name": { "kind": "Name", "value": "operatorData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "operator" } }, { "kind": "Field", "name": { "kind": "Name", "value": "data" } }, { "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "CustomSuperTokenCreatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SuperTokenCreatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SuperTokenLogicCreatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "tokenLogic" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }] } }] } }] };
|
|
63686
63795
|
|
|
63687
|
-
},{}],
|
|
63796
|
+
},{}],299:[function(require,module,exports){
|
|
63688
63797
|
"use strict";
|
|
63689
63798
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63690
63799
|
exports.EventQueryHandler = void 0;
|
|
@@ -63712,7 +63821,7 @@ class EventQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHandler {
|
|
|
63712
63821
|
}
|
|
63713
63822
|
exports.EventQueryHandler = EventQueryHandler;
|
|
63714
63823
|
|
|
63715
|
-
},{"../../mapGetAllEventsQueryEvents":
|
|
63824
|
+
},{"../../mapGetAllEventsQueryEvents":278,"../subgraphQueryHandler":312,"./events.generated":298}],300:[function(require,module,exports){
|
|
63716
63825
|
"use strict";
|
|
63717
63826
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63718
63827
|
exports.FlowUpdatedEventQueryHandler = void 0;
|
|
@@ -63740,7 +63849,7 @@ class FlowUpdatedEventQueryHandler extends subgraphQueryHandler_1.SubgraphQueryH
|
|
|
63740
63849
|
}
|
|
63741
63850
|
exports.FlowUpdatedEventQueryHandler = FlowUpdatedEventQueryHandler;
|
|
63742
63851
|
|
|
63743
|
-
},{"../../mapGetAllEventsQueryEvents":
|
|
63852
|
+
},{"../../mapGetAllEventsQueryEvents":278,"../subgraphQueryHandler":312,"./events.generated":298}],301:[function(require,module,exports){
|
|
63744
63853
|
"use strict";
|
|
63745
63854
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63746
63855
|
exports.IndexUpdatedEventQueryHandler = void 0;
|
|
@@ -63768,7 +63877,7 @@ class IndexUpdatedEventQueryHandler extends subgraphQueryHandler_1.SubgraphQuery
|
|
|
63768
63877
|
}
|
|
63769
63878
|
exports.IndexUpdatedEventQueryHandler = IndexUpdatedEventQueryHandler;
|
|
63770
63879
|
|
|
63771
|
-
},{"../../mapGetAllEventsQueryEvents":
|
|
63880
|
+
},{"../../mapGetAllEventsQueryEvents":278,"../subgraphQueryHandler":312,"./events.generated":298}],302:[function(require,module,exports){
|
|
63772
63881
|
"use strict";
|
|
63773
63882
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63774
63883
|
exports.SubscriptionUnitsUpdatedEventQueryHandler = void 0;
|
|
@@ -63796,12 +63905,12 @@ class SubscriptionUnitsUpdatedEventQueryHandler extends subgraphQueryHandler_1.S
|
|
|
63796
63905
|
}
|
|
63797
63906
|
exports.SubscriptionUnitsUpdatedEventQueryHandler = SubscriptionUnitsUpdatedEventQueryHandler;
|
|
63798
63907
|
|
|
63799
|
-
},{"../../mapGetAllEventsQueryEvents":
|
|
63908
|
+
},{"../../mapGetAllEventsQueryEvents":278,"../subgraphQueryHandler":312,"./events.generated":298}],303:[function(require,module,exports){
|
|
63800
63909
|
"use strict";
|
|
63801
63910
|
// TODO(KK): Add comments
|
|
63802
63911
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63803
63912
|
|
|
63804
|
-
},{}],
|
|
63913
|
+
},{}],304:[function(require,module,exports){
|
|
63805
63914
|
"use strict";
|
|
63806
63915
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63807
63916
|
exports.normalizeSubgraphFilterValue = exports.normalizeSubgraphFilter = void 0;
|
|
@@ -63841,45 +63950,45 @@ const lowerCaseIfAddress = (value) => {
|
|
|
63841
63950
|
return value;
|
|
63842
63951
|
};
|
|
63843
63952
|
|
|
63844
|
-
},{}],
|
|
63953
|
+
},{}],305:[function(require,module,exports){
|
|
63845
63954
|
"use strict";
|
|
63846
63955
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63847
63956
|
exports.GetAccountTokenSnapshotsDocument = void 0;
|
|
63848
63957
|
exports.GetAccountTokenSnapshotsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getAccountTokenSnapshots" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "AccountTokenSnapshot_filter" } } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "AccountTokenSnapshot_orderBy" } } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "alias": { "kind": "Name", "value": "result" }, "name": { "kind": "Name", "value": "accountTokenSnapshots" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfActiveStreams" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfClosedStreams" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalSubscriptionsWithUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalApprovedSubscriptions" } }, { "kind": "Field", "name": { "kind": "Name", "value": "balanceUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNetFlowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalInflowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalOutflowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountStreamedUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountTransferredUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "account" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "symbol" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isListed" } }, { "kind": "Field", "name": { "kind": "Name", "value": "underlyingAddress" } }] } }] } }] } }] };
|
|
63849
63958
|
|
|
63850
|
-
},{}],
|
|
63959
|
+
},{}],306:[function(require,module,exports){
|
|
63851
63960
|
"use strict";
|
|
63852
63961
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63853
63962
|
exports.GetAllEventsDocument = void 0;
|
|
63854
63963
|
exports.GetAllEventsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getAllEvents" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event_filter" } } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event_orderBy" } } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "events" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "FlowUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "type" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sender" } }, { "kind": "Field", "name": { "kind": "Name", "value": "receiver" } }, { "kind": "Field", "name": { "kind": "Name", "value": "flowRate" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexCreatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexDistributionClaimedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalUnitsPending" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalUnitsApproved" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "oldIndexValue" } }, { "kind": "Field", "name": { "kind": "Name", "value": "newIndexValue" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexSubscribedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexUnitsUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "units" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "oldUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexUnsubscribedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SubscriptionApprovedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscription" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SubscriptionDistributionClaimedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscription" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SubscriptionRevokedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscription" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SubscriptionUnitsUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "units" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscription" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" } }, { "kind": "Field", "name": { "kind": "Name", "value": "oldUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "TransferEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "value" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "to" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "from" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "TokenUpgradedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "account" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "TokenDowngradedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "account" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "AgreementClassRegisteredEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "code" } }, { "kind": "Field", "name": { "kind": "Name", "value": "agreementType" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "AgreementClassUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "code" } }, { "kind": "Field", "name": { "kind": "Name", "value": "agreementType" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "AppRegisteredEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "app" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "GovernanceReplacedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "oldGovernance" } }, { "kind": "Field", "name": { "kind": "Name", "value": "newGovernance" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "JailEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "reason" } }, { "kind": "Field", "name": { "kind": "Name", "value": "app" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SuperTokenFactoryUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "newFactory" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SuperTokenLogicUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "code" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleAdminChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "previousAdminRole" } }, { "kind": "Field", "name": { "kind": "Name", "value": "newAdminRole" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleGrantedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "sender" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "account" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "RoleRevokedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "sender" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "account" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "CFAv1LiquidationPeriodChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "superToken" } }, { "kind": "Field", "name": { "kind": "Name", "value": "host" } }, { "kind": "Field", "name": { "kind": "Name", "value": "liquidationPeriod" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isKeySet" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ConfigChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "value" } }, { "kind": "Field", "name": { "kind": "Name", "value": "superToken" } }, { "kind": "Field", "name": { "kind": "Name", "value": "key" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isKeySet" } }, { "kind": "Field", "name": { "kind": "Name", "value": "host" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "RewardAddressChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "superToken" } }, { "kind": "Field", "name": { "kind": "Name", "value": "rewardAddress" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isKeySet" } }, { "kind": "Field", "name": { "kind": "Name", "value": "host" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "TrustedForwarderChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "isKeySet" } }, { "kind": "Field", "name": { "kind": "Name", "value": "host" } }, { "kind": "Field", "name": { "kind": "Name", "value": "forwarder" } }, { "kind": "Field", "name": { "kind": "Name", "value": "enabled" } }, { "kind": "Field", "name": { "kind": "Name", "value": "superToken" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "AgreementLiquidatedByEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "rewardAmount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "penaltyAccount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "liquidatorAccount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "bondAccount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "bailoutAmount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "agreementId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "agreementClass" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "BurnedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "operatorData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "operator" } }, { "kind": "Field", "name": { "kind": "Name", "value": "from" } }, { "kind": "Field", "name": { "kind": "Name", "value": "data" } }, { "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "MintedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "operatorData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "operator" } }, { "kind": "Field", "name": { "kind": "Name", "value": "data" } }, { "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "to" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SentEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "to" } }, { "kind": "Field", "name": { "kind": "Name", "value": "operatorData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "operator" } }, { "kind": "Field", "name": { "kind": "Name", "value": "data" } }, { "kind": "Field", "name": { "kind": "Name", "value": "amount" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "CustomSuperTokenCreatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SuperTokenCreatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SuperTokenLogicCreatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "tokenLogic" } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "__typename" } }, { "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }] } }] } }] } }] } }] };
|
|
63855
63964
|
|
|
63856
|
-
},{}],
|
|
63965
|
+
},{}],307:[function(require,module,exports){
|
|
63857
63966
|
"use strict";
|
|
63858
63967
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63859
63968
|
exports.GetIndexSubscriptionsDocument = void 0;
|
|
63860
63969
|
exports.GetIndexSubscriptionsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getIndexSubscriptions" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexSubscription_filter" } } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexSubscription_orderBy" } } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "alias": { "kind": "Name", "value": "result" }, "name": { "kind": "Name", "value": "indexSubscriptions" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "subscriber" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "approved" } }, { "kind": "Field", "name": { "kind": "Name", "value": "units" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountReceivedUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexValueUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "index" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexValue" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "symbol" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isListed" } }, { "kind": "Field", "name": { "kind": "Name", "value": "underlyingAddress" } }] } }] } }] } }] } }] };
|
|
63861
63970
|
|
|
63862
|
-
},{}],
|
|
63971
|
+
},{}],308:[function(require,module,exports){
|
|
63863
63972
|
"use strict";
|
|
63864
63973
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63865
63974
|
exports.GetIndexesDocument = void 0;
|
|
63866
63975
|
exports.GetIndexesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getIndexes" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Index_filter" } } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Index_orderBy" } } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "alias": { "kind": "Name", "value": "result" }, "name": { "kind": "Name", "value": "indexes" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexValue" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalSubscriptionsWithUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalUnitsPending" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalUnitsApproved" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountDistributedUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "symbol" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isListed" } }, { "kind": "Field", "name": { "kind": "Name", "value": "underlyingAddress" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "publisher" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }] } }] } }] };
|
|
63867
63976
|
|
|
63868
|
-
},{}],
|
|
63977
|
+
},{}],309:[function(require,module,exports){
|
|
63869
63978
|
"use strict";
|
|
63870
63979
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63871
63980
|
exports.GetStreamsDocument = void 0;
|
|
63872
63981
|
exports.GetStreamsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getStreams" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Stream_filter" } } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Stream_orderBy" } } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "alias": { "kind": "Name", "value": "result" }, "name": { "kind": "Name", "value": "streams" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "currentFlowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "streamedUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "symbol" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isListed" } }, { "kind": "Field", "name": { "kind": "Name", "value": "underlyingAddress" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "sender" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "receiver" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "flowUpdatedEvents" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "EnumValue", "value": "timestamp" } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "EnumValue", "value": "asc" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sender" } }, { "kind": "Field", "name": { "kind": "Name", "value": "receiver" } }, { "kind": "Field", "name": { "kind": "Name", "value": "flowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalSenderFlowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalReceiverFlowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "userData" } }, { "kind": "Field", "name": { "kind": "Name", "value": "oldFlowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "type" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountStreamedUntilTimestamp" } }] } }] } }] } }] };
|
|
63873
63982
|
|
|
63874
|
-
},{}],
|
|
63983
|
+
},{}],310:[function(require,module,exports){
|
|
63875
63984
|
"use strict";
|
|
63876
63985
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63877
63986
|
exports.GetTokensDocument = void 0;
|
|
63878
63987
|
exports.GetTokensDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "getTokens" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Token_filter" } } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "0" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } } }, "defaultValue": { "kind": "IntValue", "value": "10" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Token_orderBy" } } }, "defaultValue": { "kind": "EnumValue", "value": "id" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } } }, "defaultValue": { "kind": "EnumValue", "value": "asc" } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "alias": { "kind": "Name", "value": "result" }, "name": { "kind": "Name", "value": "tokens" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "where" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "where" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "skip" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "skip" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "first" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "first" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderBy" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "orderDirection" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "createdAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "symbol" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isListed" } }, { "kind": "Field", "name": { "kind": "Name", "value": "underlyingAddress" } }] } }] } }] };
|
|
63879
63988
|
|
|
63880
|
-
},{}],
|
|
63881
|
-
arguments[4][
|
|
63882
|
-
},{"dup":
|
|
63989
|
+
},{}],311:[function(require,module,exports){
|
|
63990
|
+
arguments[4][274][0].apply(exports,arguments)
|
|
63991
|
+
},{"dup":274}],312:[function(require,module,exports){
|
|
63883
63992
|
"use strict";
|
|
63884
63993
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
63885
63994
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -63977,9 +64086,9 @@ class SubgraphQueryHandler {
|
|
|
63977
64086
|
}
|
|
63978
64087
|
exports.SubgraphQueryHandler = SubgraphQueryHandler;
|
|
63979
64088
|
|
|
63980
|
-
},{"../pagination":
|
|
63981
|
-
arguments[4][
|
|
63982
|
-
},{"dup":
|
|
64089
|
+
},{"../pagination":280,"../utils":314,"./normalizeSubgraphFilter":304,"lodash":176}],313:[function(require,module,exports){
|
|
64090
|
+
arguments[4][274][0].apply(exports,arguments)
|
|
64091
|
+
},{"dup":274}],314:[function(require,module,exports){
|
|
63983
64092
|
"use strict";
|
|
63984
64093
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63985
64094
|
exports.typeGuard = exports.isInjectedEthers = exports.isInjectedWeb3 = exports.isEthersProvider = exports.getBalance = exports.getSanitizedTimestamp = exports.getStringCurrentTimeInSeconds = exports.subscriptionTotalAmountClaimableSinceUpdatedAt = exports.subscriptionTotalAmountReceivedSinceUpdated = exports.subscriptionTotalAmountDistributedSinceUpdated = exports.flowedAmountSinceUpdatedAt = exports.getFlowAmountByPerSecondFlowRate = exports.getPerSecondFlowRateByDay = exports.getPerSecondFlowRateByWeek = exports.getPerSecondFlowRateByMonth = exports.getPerSecondFlowRateByYear = exports.getTransactionDescription = exports.removeSigHashFromCallData = exports.isNullOrEmpty = exports.normalizeAddress = void 0;
|
|
@@ -64162,7 +64271,7 @@ exports.isInjectedEthers = isInjectedEthers;
|
|
|
64162
64271
|
const typeGuard = (obj) => obj;
|
|
64163
64272
|
exports.typeGuard = typeGuard;
|
|
64164
64273
|
|
|
64165
|
-
},{"./SFError":
|
|
64274
|
+
},{"./SFError":263,"./constants":273,"ethers":254}],315:[function(require,module,exports){
|
|
64166
64275
|
"use strict";
|
|
64167
64276
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
64168
64277
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -64261,5 +64370,5 @@ exports.validateIndexSubscriptionRequest = wrapValidationWithCustomError(ajv.com
|
|
|
64261
64370
|
exports.validateStreamRequest = wrapValidationWithCustomError(ajv.compile(streamRequestSchema));
|
|
64262
64371
|
exports.validateAccountTokenSnapshotRequest = wrapValidationWithCustomError(ajv.compile(accountTokenSnapshotRequestSchema));
|
|
64263
64372
|
|
|
64264
|
-
},{"./SFError":
|
|
64373
|
+
},{"./SFError":263,"ajv":190,"ethers":254}]},{},[276])(276)
|
|
64265
64374
|
});
|