@superfluid-finance/sdk-core 0.6.7-dev.9e05045.0 → 0.6.7-dev.b9f1e47.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 +291 -225
- package/package.json +2 -2
package/dist/index.umd.js
CHANGED
|
@@ -63280,7 +63280,69 @@ SuperAppBase__factory.abi = _abi;
|
|
|
63280
63280
|
},{"ethers":153}],243:[function(require,module,exports){
|
|
63281
63281
|
"use strict";
|
|
63282
63282
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63283
|
-
exports.
|
|
63283
|
+
exports.SuperfluidLoaderLibrary__factory = void 0;
|
|
63284
|
+
/* Autogenerated file. Do not edit manually. */
|
|
63285
|
+
/* tslint:disable */
|
|
63286
|
+
/* eslint-disable */
|
|
63287
|
+
const ethers_1 = require("ethers");
|
|
63288
|
+
const _abi = [
|
|
63289
|
+
{
|
|
63290
|
+
inputs: [],
|
|
63291
|
+
name: "UnsupportedNetwork",
|
|
63292
|
+
type: "error",
|
|
63293
|
+
},
|
|
63294
|
+
{
|
|
63295
|
+
inputs: [],
|
|
63296
|
+
name: "getHost",
|
|
63297
|
+
outputs: [
|
|
63298
|
+
{
|
|
63299
|
+
internalType: "address",
|
|
63300
|
+
name: "",
|
|
63301
|
+
type: "address",
|
|
63302
|
+
},
|
|
63303
|
+
],
|
|
63304
|
+
stateMutability: "view",
|
|
63305
|
+
type: "function",
|
|
63306
|
+
},
|
|
63307
|
+
];
|
|
63308
|
+
const _bytecode = "0x6102ab61003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106100355760003560e01c806320bc44251461003a575b600080fd5b61004261005e565b6040516001600160a01b03909116815260200160405180910390f35b6000600146036100815750734e583d9390082b65bef884b629dfa426114ced6d90565b600a46036100a2575073567c4b141ed61923967ca25ef4906c8781069a1090565b603846036100c3575073d1e2cfb6441680002eb7a44223160ab9b67d7e6e90565b606446036100e45750732dfe937cd98ab92e59cf3139138f18c823a4efe790565b608946036101055750733e14dc1b13c488a8d5d310918780c983bd5982e790565b61a4b14603610127575073cf8acb4ef033eff16e8080aed4c7d5b9285d219290565b61a4ec4603610149575073a4ff07cf81c02cfd356184879d953970ca95758590565b61a86a460361016b57507360377c7016e4cdb03c87ef474896c11cb560752c90565b6005460361018c57507322ff293e14f1ec3a09b137e9e06084afd63addf990565b62066eed46036101af575073e40983c2476032a0915600b9472b3141aa5b5ba990565b6101a446036101d1575073e40983c2476032a0915600b9472b3141aa5b5ba990565b61a86946036101f357507385fe79b998509b77bf10a8bd4001d58475d2938690565b620138814603610216575073eb796bdb90ffa0f28255275e16936d25d341860390565b62aa36a74603610239575073109412e3c84f0539b43d39db691b08c90f58dc7c90565b62014a33460361025c575073507c3a7c6ccc253884a2e3a3ee2a211cc7e796a690565b604051633732a25760e11b815260040160405180910390fdfea2646970667358221220656bbbb9cffc4bfd6b4ffe202374d80059b000618c95582a52867fd0d2ce35d064736f6c63430008130033";
|
|
63309
|
+
const isSuperArgs = (xs) => xs.length > 1;
|
|
63310
|
+
class SuperfluidLoaderLibrary__factory extends ethers_1.ContractFactory {
|
|
63311
|
+
constructor(...args) {
|
|
63312
|
+
if (isSuperArgs(args)) {
|
|
63313
|
+
super(...args);
|
|
63314
|
+
}
|
|
63315
|
+
else {
|
|
63316
|
+
super(_abi, _bytecode, args[0]);
|
|
63317
|
+
}
|
|
63318
|
+
}
|
|
63319
|
+
deploy(overrides) {
|
|
63320
|
+
return super.deploy(overrides || {});
|
|
63321
|
+
}
|
|
63322
|
+
getDeployTransaction(overrides) {
|
|
63323
|
+
return super.getDeployTransaction(overrides || {});
|
|
63324
|
+
}
|
|
63325
|
+
attach(address) {
|
|
63326
|
+
return super.attach(address);
|
|
63327
|
+
}
|
|
63328
|
+
connect(signer) {
|
|
63329
|
+
return super.connect(signer);
|
|
63330
|
+
}
|
|
63331
|
+
static createInterface() {
|
|
63332
|
+
return new ethers_1.utils.Interface(_abi);
|
|
63333
|
+
}
|
|
63334
|
+
static connect(address, signerOrProvider) {
|
|
63335
|
+
return new ethers_1.Contract(address, _abi, signerOrProvider);
|
|
63336
|
+
}
|
|
63337
|
+
}
|
|
63338
|
+
exports.SuperfluidLoaderLibrary__factory = SuperfluidLoaderLibrary__factory;
|
|
63339
|
+
SuperfluidLoaderLibrary__factory.bytecode = _bytecode;
|
|
63340
|
+
SuperfluidLoaderLibrary__factory.abi = _abi;
|
|
63341
|
+
|
|
63342
|
+
},{"ethers":153}],244:[function(require,module,exports){
|
|
63343
|
+
"use strict";
|
|
63344
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63345
|
+
exports.SuperfluidLoaderLibrary__factory = exports.SuperAppBaseFlow__factory = exports.SuperAppBase__factory = void 0;
|
|
63284
63346
|
/* Autogenerated file. Do not edit manually. */
|
|
63285
63347
|
/* tslint:disable */
|
|
63286
63348
|
/* eslint-disable */
|
|
@@ -63288,8 +63350,10 @@ var SuperAppBase__factory_1 = require("./SuperAppBase__factory");
|
|
|
63288
63350
|
Object.defineProperty(exports, "SuperAppBase__factory", { enumerable: true, get: function () { return SuperAppBase__factory_1.SuperAppBase__factory; } });
|
|
63289
63351
|
var SuperAppBaseFlow__factory_1 = require("./SuperAppBaseFlow__factory");
|
|
63290
63352
|
Object.defineProperty(exports, "SuperAppBaseFlow__factory", { enumerable: true, get: function () { return SuperAppBaseFlow__factory_1.SuperAppBaseFlow__factory; } });
|
|
63353
|
+
var SuperfluidLoaderLibrary__factory_1 = require("./SuperfluidLoaderLibrary__factory");
|
|
63354
|
+
Object.defineProperty(exports, "SuperfluidLoaderLibrary__factory", { enumerable: true, get: function () { return SuperfluidLoaderLibrary__factory_1.SuperfluidLoaderLibrary__factory; } });
|
|
63291
63355
|
|
|
63292
|
-
},{"./SuperAppBaseFlow__factory":241,"./SuperAppBase__factory":242}],
|
|
63356
|
+
},{"./SuperAppBaseFlow__factory":241,"./SuperAppBase__factory":242,"./SuperfluidLoaderLibrary__factory":243}],245:[function(require,module,exports){
|
|
63293
63357
|
"use strict";
|
|
63294
63358
|
/* Autogenerated file. Do not edit manually. */
|
|
63295
63359
|
/* tslint:disable */
|
|
@@ -64252,7 +64316,7 @@ class SuperfluidGovernanceBase__factory {
|
|
|
64252
64316
|
exports.SuperfluidGovernanceBase__factory = SuperfluidGovernanceBase__factory;
|
|
64253
64317
|
SuperfluidGovernanceBase__factory.abi = _abi;
|
|
64254
64318
|
|
|
64255
|
-
},{"ethers":153}],
|
|
64319
|
+
},{"ethers":153}],246:[function(require,module,exports){
|
|
64256
64320
|
"use strict";
|
|
64257
64321
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
64258
64322
|
exports.SuperfluidGovernanceIIProxy__factory = void 0;
|
|
@@ -64369,7 +64433,7 @@ exports.SuperfluidGovernanceIIProxy__factory = SuperfluidGovernanceIIProxy__fact
|
|
|
64369
64433
|
SuperfluidGovernanceIIProxy__factory.bytecode = _bytecode;
|
|
64370
64434
|
SuperfluidGovernanceIIProxy__factory.abi = _abi;
|
|
64371
64435
|
|
|
64372
|
-
},{"ethers":153}],
|
|
64436
|
+
},{"ethers":153}],247:[function(require,module,exports){
|
|
64373
64437
|
"use strict";
|
|
64374
64438
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
64375
64439
|
exports.SuperfluidGovernanceII__factory = void 0;
|
|
@@ -65490,7 +65554,7 @@ exports.SuperfluidGovernanceII__factory = SuperfluidGovernanceII__factory;
|
|
|
65490
65554
|
SuperfluidGovernanceII__factory.bytecode = _bytecode;
|
|
65491
65555
|
SuperfluidGovernanceII__factory.abi = _abi;
|
|
65492
65556
|
|
|
65493
|
-
},{"ethers":153}],
|
|
65557
|
+
},{"ethers":153}],248:[function(require,module,exports){
|
|
65494
65558
|
"use strict";
|
|
65495
65559
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
65496
65560
|
exports.SuperfluidGovernanceIIProxy__factory = exports.SuperfluidGovernanceII__factory = void 0;
|
|
@@ -65502,7 +65566,7 @@ Object.defineProperty(exports, "SuperfluidGovernanceII__factory", { enumerable:
|
|
|
65502
65566
|
var SuperfluidGovernanceIIProxy__factory_1 = require("./SuperfluidGovernanceIIProxy__factory");
|
|
65503
65567
|
Object.defineProperty(exports, "SuperfluidGovernanceIIProxy__factory", { enumerable: true, get: function () { return SuperfluidGovernanceIIProxy__factory_1.SuperfluidGovernanceIIProxy__factory; } });
|
|
65504
65568
|
|
|
65505
|
-
},{"./SuperfluidGovernanceIIProxy__factory":
|
|
65569
|
+
},{"./SuperfluidGovernanceIIProxy__factory":246,"./SuperfluidGovernanceII__factory":247}],249:[function(require,module,exports){
|
|
65506
65570
|
"use strict";
|
|
65507
65571
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
65508
65572
|
if (k2 === undefined) k2 = k;
|
|
@@ -65536,7 +65600,7 @@ exports.superfluidGovernanceIiSol = __importStar(require("./SuperfluidGovernance
|
|
|
65536
65600
|
var SuperfluidGovernanceBase__factory_1 = require("./SuperfluidGovernanceBase__factory");
|
|
65537
65601
|
Object.defineProperty(exports, "SuperfluidGovernanceBase__factory", { enumerable: true, get: function () { return SuperfluidGovernanceBase__factory_1.SuperfluidGovernanceBase__factory; } });
|
|
65538
65602
|
|
|
65539
|
-
},{"./SuperfluidGovernanceBase__factory":
|
|
65603
|
+
},{"./SuperfluidGovernanceBase__factory":245,"./SuperfluidGovernanceII.sol":248}],250:[function(require,module,exports){
|
|
65540
65604
|
"use strict";
|
|
65541
65605
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
65542
65606
|
if (k2 === undefined) k2 = k;
|
|
@@ -65577,7 +65641,7 @@ exports.tokens = __importStar(require("./tokens"));
|
|
|
65577
65641
|
exports.upgradability = __importStar(require("./upgradability"));
|
|
65578
65642
|
exports.utils = __importStar(require("./utils"));
|
|
65579
65643
|
|
|
65580
|
-
},{"./agreements":240,"./apps":
|
|
65644
|
+
},{"./agreements":240,"./apps":244,"./gov":249,"./interfaces":255,"./libs":284,"./mocks":353,"./superfluid":364,"./tokens":368,"./upgradability":371,"./utils":387}],251:[function(require,module,exports){
|
|
65581
65645
|
"use strict";
|
|
65582
65646
|
/* Autogenerated file. Do not edit manually. */
|
|
65583
65647
|
/* tslint:disable */
|
|
@@ -65746,7 +65810,7 @@ class IConstantFlowAgreementHook__factory {
|
|
|
65746
65810
|
exports.IConstantFlowAgreementHook__factory = IConstantFlowAgreementHook__factory;
|
|
65747
65811
|
IConstantFlowAgreementHook__factory.abi = _abi;
|
|
65748
65812
|
|
|
65749
|
-
},{"ethers":153}],
|
|
65813
|
+
},{"ethers":153}],252:[function(require,module,exports){
|
|
65750
65814
|
"use strict";
|
|
65751
65815
|
/* Autogenerated file. Do not edit manually. */
|
|
65752
65816
|
/* tslint:disable */
|
|
@@ -66723,7 +66787,7 @@ class IConstantFlowAgreementV1__factory {
|
|
|
66723
66787
|
exports.IConstantFlowAgreementV1__factory = IConstantFlowAgreementV1__factory;
|
|
66724
66788
|
IConstantFlowAgreementV1__factory.abi = _abi;
|
|
66725
66789
|
|
|
66726
|
-
},{"ethers":153}],
|
|
66790
|
+
},{"ethers":153}],253:[function(require,module,exports){
|
|
66727
66791
|
"use strict";
|
|
66728
66792
|
/* Autogenerated file. Do not edit manually. */
|
|
66729
66793
|
/* tslint:disable */
|
|
@@ -67727,7 +67791,7 @@ class IInstantDistributionAgreementV1__factory {
|
|
|
67727
67791
|
exports.IInstantDistributionAgreementV1__factory = IInstantDistributionAgreementV1__factory;
|
|
67728
67792
|
IInstantDistributionAgreementV1__factory.abi = _abi;
|
|
67729
67793
|
|
|
67730
|
-
},{"ethers":153}],
|
|
67794
|
+
},{"ethers":153}],254:[function(require,module,exports){
|
|
67731
67795
|
"use strict";
|
|
67732
67796
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67733
67797
|
exports.IInstantDistributionAgreementV1__factory = exports.IConstantFlowAgreementV1__factory = exports.IConstantFlowAgreementHook__factory = void 0;
|
|
@@ -67741,7 +67805,7 @@ Object.defineProperty(exports, "IConstantFlowAgreementV1__factory", { enumerable
|
|
|
67741
67805
|
var IInstantDistributionAgreementV1__factory_1 = require("./IInstantDistributionAgreementV1__factory");
|
|
67742
67806
|
Object.defineProperty(exports, "IInstantDistributionAgreementV1__factory", { enumerable: true, get: function () { return IInstantDistributionAgreementV1__factory_1.IInstantDistributionAgreementV1__factory; } });
|
|
67743
67807
|
|
|
67744
|
-
},{"./IConstantFlowAgreementHook__factory":
|
|
67808
|
+
},{"./IConstantFlowAgreementHook__factory":251,"./IConstantFlowAgreementV1__factory":252,"./IInstantDistributionAgreementV1__factory":253}],255:[function(require,module,exports){
|
|
67745
67809
|
"use strict";
|
|
67746
67810
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
67747
67811
|
if (k2 === undefined) k2 = k;
|
|
@@ -67776,7 +67840,7 @@ exports.superfluid = __importStar(require("./superfluid"));
|
|
|
67776
67840
|
exports.tokens = __importStar(require("./tokens"));
|
|
67777
67841
|
exports.utils = __importStar(require("./utils"));
|
|
67778
67842
|
|
|
67779
|
-
},{"./agreements":
|
|
67843
|
+
},{"./agreements":254,"./superfluid":266,"./tokens":275,"./utils":279}],256:[function(require,module,exports){
|
|
67780
67844
|
"use strict";
|
|
67781
67845
|
/* Autogenerated file. Do not edit manually. */
|
|
67782
67846
|
/* tslint:disable */
|
|
@@ -68322,7 +68386,7 @@ class IConstantInflowNFT__factory {
|
|
|
68322
68386
|
exports.IConstantInflowNFT__factory = IConstantInflowNFT__factory;
|
|
68323
68387
|
IConstantInflowNFT__factory.abi = _abi;
|
|
68324
68388
|
|
|
68325
|
-
},{"ethers":153}],
|
|
68389
|
+
},{"ethers":153}],257:[function(require,module,exports){
|
|
68326
68390
|
"use strict";
|
|
68327
68391
|
/* Autogenerated file. Do not edit manually. */
|
|
68328
68392
|
/* tslint:disable */
|
|
@@ -68931,7 +68995,7 @@ class IConstantOutflowNFT__factory {
|
|
|
68931
68995
|
exports.IConstantOutflowNFT__factory = IConstantOutflowNFT__factory;
|
|
68932
68996
|
IConstantOutflowNFT__factory.abi = _abi;
|
|
68933
68997
|
|
|
68934
|
-
},{"ethers":153}],
|
|
68998
|
+
},{"ethers":153}],258:[function(require,module,exports){
|
|
68935
68999
|
"use strict";
|
|
68936
69000
|
/* Autogenerated file. Do not edit manually. */
|
|
68937
69001
|
/* tslint:disable */
|
|
@@ -69441,7 +69505,7 @@ class IFlowNFTBase__factory {
|
|
|
69441
69505
|
exports.IFlowNFTBase__factory = IFlowNFTBase__factory;
|
|
69442
69506
|
IFlowNFTBase__factory.abi = _abi;
|
|
69443
69507
|
|
|
69444
|
-
},{"ethers":153}],
|
|
69508
|
+
},{"ethers":153}],259:[function(require,module,exports){
|
|
69445
69509
|
"use strict";
|
|
69446
69510
|
/* Autogenerated file. Do not edit manually. */
|
|
69447
69511
|
/* tslint:disable */
|
|
@@ -69514,7 +69578,7 @@ class ISuperAgreement__factory {
|
|
|
69514
69578
|
exports.ISuperAgreement__factory = ISuperAgreement__factory;
|
|
69515
69579
|
ISuperAgreement__factory.abi = _abi;
|
|
69516
69580
|
|
|
69517
|
-
},{"ethers":153}],
|
|
69581
|
+
},{"ethers":153}],260:[function(require,module,exports){
|
|
69518
69582
|
"use strict";
|
|
69519
69583
|
/* Autogenerated file. Do not edit manually. */
|
|
69520
69584
|
/* tslint:disable */
|
|
@@ -69784,7 +69848,7 @@ class ISuperApp__factory {
|
|
|
69784
69848
|
exports.ISuperApp__factory = ISuperApp__factory;
|
|
69785
69849
|
ISuperApp__factory.abi = _abi;
|
|
69786
69850
|
|
|
69787
|
-
},{"ethers":153}],
|
|
69851
|
+
},{"ethers":153}],261:[function(require,module,exports){
|
|
69788
69852
|
"use strict";
|
|
69789
69853
|
/* Autogenerated file. Do not edit manually. */
|
|
69790
69854
|
/* tslint:disable */
|
|
@@ -70055,7 +70119,7 @@ class ISuperTokenFactory__factory {
|
|
|
70055
70119
|
exports.ISuperTokenFactory__factory = ISuperTokenFactory__factory;
|
|
70056
70120
|
ISuperTokenFactory__factory.abi = _abi;
|
|
70057
70121
|
|
|
70058
|
-
},{"ethers":153}],
|
|
70122
|
+
},{"ethers":153}],262:[function(require,module,exports){
|
|
70059
70123
|
"use strict";
|
|
70060
70124
|
/* Autogenerated file. Do not edit manually. */
|
|
70061
70125
|
/* tslint:disable */
|
|
@@ -71889,7 +71953,7 @@ class ISuperToken__factory {
|
|
|
71889
71953
|
exports.ISuperToken__factory = ISuperToken__factory;
|
|
71890
71954
|
ISuperToken__factory.abi = _abi;
|
|
71891
71955
|
|
|
71892
|
-
},{"ethers":153}],
|
|
71956
|
+
},{"ethers":153}],263:[function(require,module,exports){
|
|
71893
71957
|
"use strict";
|
|
71894
71958
|
/* Autogenerated file. Do not edit manually. */
|
|
71895
71959
|
/* tslint:disable */
|
|
@@ -72144,7 +72208,7 @@ class ISuperfluidGovernance__factory {
|
|
|
72144
72208
|
exports.ISuperfluidGovernance__factory = ISuperfluidGovernance__factory;
|
|
72145
72209
|
ISuperfluidGovernance__factory.abi = _abi;
|
|
72146
72210
|
|
|
72147
|
-
},{"ethers":153}],
|
|
72211
|
+
},{"ethers":153}],264:[function(require,module,exports){
|
|
72148
72212
|
"use strict";
|
|
72149
72213
|
/* Autogenerated file. Do not edit manually. */
|
|
72150
72214
|
/* tslint:disable */
|
|
@@ -72836,7 +72900,7 @@ class ISuperfluidToken__factory {
|
|
|
72836
72900
|
exports.ISuperfluidToken__factory = ISuperfluidToken__factory;
|
|
72837
72901
|
ISuperfluidToken__factory.abi = _abi;
|
|
72838
72902
|
|
|
72839
|
-
},{"ethers":153}],
|
|
72903
|
+
},{"ethers":153}],265:[function(require,module,exports){
|
|
72840
72904
|
"use strict";
|
|
72841
72905
|
/* Autogenerated file. Do not edit manually. */
|
|
72842
72906
|
/* tslint:disable */
|
|
@@ -73982,7 +74046,7 @@ class ISuperfluid__factory {
|
|
|
73982
74046
|
exports.ISuperfluid__factory = ISuperfluid__factory;
|
|
73983
74047
|
ISuperfluid__factory.abi = _abi;
|
|
73984
74048
|
|
|
73985
|
-
},{"ethers":153}],
|
|
74049
|
+
},{"ethers":153}],266:[function(require,module,exports){
|
|
73986
74050
|
"use strict";
|
|
73987
74051
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73988
74052
|
exports.ISuperfluidToken__factory = exports.ISuperfluidGovernance__factory = exports.ISuperfluid__factory = exports.ISuperTokenFactory__factory = exports.ISuperToken__factory = exports.ISuperApp__factory = exports.ISuperAgreement__factory = exports.IFlowNFTBase__factory = exports.IConstantOutflowNFT__factory = exports.IConstantInflowNFT__factory = void 0;
|
|
@@ -74010,7 +74074,7 @@ Object.defineProperty(exports, "ISuperfluidGovernance__factory", { enumerable: t
|
|
|
74010
74074
|
var ISuperfluidToken__factory_1 = require("./ISuperfluidToken__factory");
|
|
74011
74075
|
Object.defineProperty(exports, "ISuperfluidToken__factory", { enumerable: true, get: function () { return ISuperfluidToken__factory_1.ISuperfluidToken__factory; } });
|
|
74012
74076
|
|
|
74013
|
-
},{"./IConstantInflowNFT__factory":
|
|
74077
|
+
},{"./IConstantInflowNFT__factory":256,"./IConstantOutflowNFT__factory":257,"./IFlowNFTBase__factory":258,"./ISuperAgreement__factory":259,"./ISuperApp__factory":260,"./ISuperTokenFactory__factory":261,"./ISuperToken__factory":262,"./ISuperfluidGovernance__factory":263,"./ISuperfluidToken__factory":264,"./ISuperfluid__factory":265}],267:[function(require,module,exports){
|
|
74014
74078
|
"use strict";
|
|
74015
74079
|
/* Autogenerated file. Do not edit manually. */
|
|
74016
74080
|
/* tslint:disable */
|
|
@@ -74253,7 +74317,7 @@ class ERC20WithTokenInfo__factory {
|
|
|
74253
74317
|
exports.ERC20WithTokenInfo__factory = ERC20WithTokenInfo__factory;
|
|
74254
74318
|
ERC20WithTokenInfo__factory.abi = _abi;
|
|
74255
74319
|
|
|
74256
|
-
},{"ethers":153}],
|
|
74320
|
+
},{"ethers":153}],268:[function(require,module,exports){
|
|
74257
74321
|
"use strict";
|
|
74258
74322
|
/* Autogenerated file. Do not edit manually. */
|
|
74259
74323
|
/* tslint:disable */
|
|
@@ -74297,7 +74361,7 @@ class IPureSuperTokenCustom__factory {
|
|
|
74297
74361
|
exports.IPureSuperTokenCustom__factory = IPureSuperTokenCustom__factory;
|
|
74298
74362
|
IPureSuperTokenCustom__factory.abi = _abi;
|
|
74299
74363
|
|
|
74300
|
-
},{"ethers":153}],
|
|
74364
|
+
},{"ethers":153}],269:[function(require,module,exports){
|
|
74301
74365
|
"use strict";
|
|
74302
74366
|
/* Autogenerated file. Do not edit manually. */
|
|
74303
74367
|
/* tslint:disable */
|
|
@@ -76154,7 +76218,7 @@ class IPureSuperToken__factory {
|
|
|
76154
76218
|
exports.IPureSuperToken__factory = IPureSuperToken__factory;
|
|
76155
76219
|
IPureSuperToken__factory.abi = _abi;
|
|
76156
76220
|
|
|
76157
|
-
},{"ethers":153}],
|
|
76221
|
+
},{"ethers":153}],270:[function(require,module,exports){
|
|
76158
76222
|
"use strict";
|
|
76159
76223
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76160
76224
|
exports.IPureSuperTokenCustom__factory = exports.IPureSuperToken__factory = void 0;
|
|
@@ -76166,7 +76230,7 @@ Object.defineProperty(exports, "IPureSuperToken__factory", { enumerable: true, g
|
|
|
76166
76230
|
var IPureSuperTokenCustom__factory_1 = require("./IPureSuperTokenCustom__factory");
|
|
76167
76231
|
Object.defineProperty(exports, "IPureSuperTokenCustom__factory", { enumerable: true, get: function () { return IPureSuperTokenCustom__factory_1.IPureSuperTokenCustom__factory; } });
|
|
76168
76232
|
|
|
76169
|
-
},{"./IPureSuperTokenCustom__factory":
|
|
76233
|
+
},{"./IPureSuperTokenCustom__factory":268,"./IPureSuperToken__factory":269}],271:[function(require,module,exports){
|
|
76170
76234
|
"use strict";
|
|
76171
76235
|
/* Autogenerated file. Do not edit manually. */
|
|
76172
76236
|
/* tslint:disable */
|
|
@@ -76220,7 +76284,7 @@ class ISETHCustom__factory {
|
|
|
76220
76284
|
exports.ISETHCustom__factory = ISETHCustom__factory;
|
|
76221
76285
|
ISETHCustom__factory.abi = _abi;
|
|
76222
76286
|
|
|
76223
|
-
},{"ethers":153}],
|
|
76287
|
+
},{"ethers":153}],272:[function(require,module,exports){
|
|
76224
76288
|
"use strict";
|
|
76225
76289
|
/* Autogenerated file. Do not edit manually. */
|
|
76226
76290
|
/* tslint:disable */
|
|
@@ -78087,7 +78151,7 @@ class ISETH__factory {
|
|
|
78087
78151
|
exports.ISETH__factory = ISETH__factory;
|
|
78088
78152
|
ISETH__factory.abi = _abi;
|
|
78089
78153
|
|
|
78090
|
-
},{"ethers":153}],
|
|
78154
|
+
},{"ethers":153}],273:[function(require,module,exports){
|
|
78091
78155
|
"use strict";
|
|
78092
78156
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
78093
78157
|
exports.ISETHCustom__factory = exports.ISETH__factory = void 0;
|
|
@@ -78099,7 +78163,7 @@ Object.defineProperty(exports, "ISETH__factory", { enumerable: true, get: functi
|
|
|
78099
78163
|
var ISETHCustom__factory_1 = require("./ISETHCustom__factory");
|
|
78100
78164
|
Object.defineProperty(exports, "ISETHCustom__factory", { enumerable: true, get: function () { return ISETHCustom__factory_1.ISETHCustom__factory; } });
|
|
78101
78165
|
|
|
78102
|
-
},{"./ISETHCustom__factory":
|
|
78166
|
+
},{"./ISETHCustom__factory":271,"./ISETH__factory":272}],274:[function(require,module,exports){
|
|
78103
78167
|
"use strict";
|
|
78104
78168
|
/* Autogenerated file. Do not edit manually. */
|
|
78105
78169
|
/* tslint:disable */
|
|
@@ -78159,7 +78223,7 @@ class TokenInfo__factory {
|
|
|
78159
78223
|
exports.TokenInfo__factory = TokenInfo__factory;
|
|
78160
78224
|
TokenInfo__factory.abi = _abi;
|
|
78161
78225
|
|
|
78162
|
-
},{"ethers":153}],
|
|
78226
|
+
},{"ethers":153}],275:[function(require,module,exports){
|
|
78163
78227
|
"use strict";
|
|
78164
78228
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
78165
78229
|
if (k2 === undefined) k2 = k;
|
|
@@ -78196,7 +78260,7 @@ Object.defineProperty(exports, "ERC20WithTokenInfo__factory", { enumerable: true
|
|
|
78196
78260
|
var TokenInfo__factory_1 = require("./TokenInfo__factory");
|
|
78197
78261
|
Object.defineProperty(exports, "TokenInfo__factory", { enumerable: true, get: function () { return TokenInfo__factory_1.TokenInfo__factory; } });
|
|
78198
78262
|
|
|
78199
|
-
},{"./ERC20WithTokenInfo__factory":
|
|
78263
|
+
},{"./ERC20WithTokenInfo__factory":267,"./IPureSuperToken.sol":270,"./ISETH.sol":273,"./TokenInfo__factory":274}],276:[function(require,module,exports){
|
|
78200
78264
|
"use strict";
|
|
78201
78265
|
/* Autogenerated file. Do not edit manually. */
|
|
78202
78266
|
/* tslint:disable */
|
|
@@ -78259,7 +78323,7 @@ class IMultiSigWallet__factory {
|
|
|
78259
78323
|
exports.IMultiSigWallet__factory = IMultiSigWallet__factory;
|
|
78260
78324
|
IMultiSigWallet__factory.abi = _abi;
|
|
78261
78325
|
|
|
78262
|
-
},{"ethers":153}],
|
|
78326
|
+
},{"ethers":153}],277:[function(require,module,exports){
|
|
78263
78327
|
"use strict";
|
|
78264
78328
|
/* Autogenerated file. Do not edit manually. */
|
|
78265
78329
|
/* tslint:disable */
|
|
@@ -78312,7 +78376,7 @@ class IRelayRecipient__factory {
|
|
|
78312
78376
|
exports.IRelayRecipient__factory = IRelayRecipient__factory;
|
|
78313
78377
|
IRelayRecipient__factory.abi = _abi;
|
|
78314
78378
|
|
|
78315
|
-
},{"ethers":153}],
|
|
78379
|
+
},{"ethers":153}],278:[function(require,module,exports){
|
|
78316
78380
|
"use strict";
|
|
78317
78381
|
/* Autogenerated file. Do not edit manually. */
|
|
78318
78382
|
/* tslint:disable */
|
|
@@ -78389,7 +78453,7 @@ class IResolver__factory {
|
|
|
78389
78453
|
exports.IResolver__factory = IResolver__factory;
|
|
78390
78454
|
IResolver__factory.abi = _abi;
|
|
78391
78455
|
|
|
78392
|
-
},{"ethers":153}],
|
|
78456
|
+
},{"ethers":153}],279:[function(require,module,exports){
|
|
78393
78457
|
"use strict";
|
|
78394
78458
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
78395
78459
|
exports.IResolver__factory = exports.IRelayRecipient__factory = exports.IMultiSigWallet__factory = void 0;
|
|
@@ -78403,7 +78467,7 @@ Object.defineProperty(exports, "IRelayRecipient__factory", { enumerable: true, g
|
|
|
78403
78467
|
var IResolver__factory_1 = require("./IResolver__factory");
|
|
78404
78468
|
Object.defineProperty(exports, "IResolver__factory", { enumerable: true, get: function () { return IResolver__factory_1.IResolver__factory; } });
|
|
78405
78469
|
|
|
78406
|
-
},{"./IMultiSigWallet__factory":
|
|
78470
|
+
},{"./IMultiSigWallet__factory":276,"./IRelayRecipient__factory":277,"./IResolver__factory":278}],280:[function(require,module,exports){
|
|
78407
78471
|
"use strict";
|
|
78408
78472
|
/* Autogenerated file. Do not edit manually. */
|
|
78409
78473
|
/* tslint:disable */
|
|
@@ -78456,7 +78520,7 @@ class BaseRelayRecipient__factory {
|
|
|
78456
78520
|
exports.BaseRelayRecipient__factory = BaseRelayRecipient__factory;
|
|
78457
78521
|
BaseRelayRecipient__factory.abi = _abi;
|
|
78458
78522
|
|
|
78459
|
-
},{"ethers":153}],
|
|
78523
|
+
},{"ethers":153}],281:[function(require,module,exports){
|
|
78460
78524
|
"use strict";
|
|
78461
78525
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
78462
78526
|
exports.EventsEmitter__factory = void 0;
|
|
@@ -78525,7 +78589,7 @@ exports.EventsEmitter__factory = EventsEmitter__factory;
|
|
|
78525
78589
|
EventsEmitter__factory.bytecode = _bytecode;
|
|
78526
78590
|
EventsEmitter__factory.abi = _abi;
|
|
78527
78591
|
|
|
78528
|
-
},{"ethers":153}],
|
|
78592
|
+
},{"ethers":153}],282:[function(require,module,exports){
|
|
78529
78593
|
"use strict";
|
|
78530
78594
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
78531
78595
|
exports.SafeGasLibrary__factory = void 0;
|
|
@@ -78574,7 +78638,7 @@ exports.SafeGasLibrary__factory = SafeGasLibrary__factory;
|
|
|
78574
78638
|
SafeGasLibrary__factory.bytecode = _bytecode;
|
|
78575
78639
|
SafeGasLibrary__factory.abi = _abi;
|
|
78576
78640
|
|
|
78577
|
-
},{"ethers":153}],
|
|
78641
|
+
},{"ethers":153}],283:[function(require,module,exports){
|
|
78578
78642
|
"use strict";
|
|
78579
78643
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
78580
78644
|
exports.SlotsBitmapLibrary__factory = void 0;
|
|
@@ -78657,7 +78721,7 @@ exports.SlotsBitmapLibrary__factory = SlotsBitmapLibrary__factory;
|
|
|
78657
78721
|
SlotsBitmapLibrary__factory.bytecode = _bytecode;
|
|
78658
78722
|
SlotsBitmapLibrary__factory.abi = _abi;
|
|
78659
78723
|
|
|
78660
|
-
},{"ethers":153}],
|
|
78724
|
+
},{"ethers":153}],284:[function(require,module,exports){
|
|
78661
78725
|
"use strict";
|
|
78662
78726
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
78663
78727
|
exports.SlotsBitmapLibrary__factory = exports.SafeGasLibrary__factory = exports.EventsEmitter__factory = exports.BaseRelayRecipient__factory = void 0;
|
|
@@ -78673,7 +78737,7 @@ Object.defineProperty(exports, "SafeGasLibrary__factory", { enumerable: true, ge
|
|
|
78673
78737
|
var SlotsBitmapLibrary__factory_1 = require("./SlotsBitmapLibrary__factory");
|
|
78674
78738
|
Object.defineProperty(exports, "SlotsBitmapLibrary__factory", { enumerable: true, get: function () { return SlotsBitmapLibrary__factory_1.SlotsBitmapLibrary__factory; } });
|
|
78675
78739
|
|
|
78676
|
-
},{"./BaseRelayRecipient__factory":
|
|
78740
|
+
},{"./BaseRelayRecipient__factory":280,"./EventsEmitter__factory":281,"./SafeGasLibrary__factory":282,"./SlotsBitmapLibrary__factory":283}],285:[function(require,module,exports){
|
|
78677
78741
|
"use strict";
|
|
78678
78742
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
78679
78743
|
exports.AgreementMock__factory = void 0;
|
|
@@ -79531,7 +79595,7 @@ exports.AgreementMock__factory = AgreementMock__factory;
|
|
|
79531
79595
|
AgreementMock__factory.bytecode = _bytecode;
|
|
79532
79596
|
AgreementMock__factory.abi = _abi;
|
|
79533
79597
|
|
|
79534
|
-
},{"ethers":153}],
|
|
79598
|
+
},{"ethers":153}],286:[function(require,module,exports){
|
|
79535
79599
|
"use strict";
|
|
79536
79600
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
79537
79601
|
exports.ClosingOnUpdateFlowTestApp__factory = void 0;
|
|
@@ -79840,7 +79904,7 @@ exports.ClosingOnUpdateFlowTestApp__factory = ClosingOnUpdateFlowTestApp__factor
|
|
|
79840
79904
|
ClosingOnUpdateFlowTestApp__factory.bytecode = _bytecode;
|
|
79841
79905
|
ClosingOnUpdateFlowTestApp__factory.abi = _abi;
|
|
79842
79906
|
|
|
79843
|
-
},{"ethers":153}],
|
|
79907
|
+
},{"ethers":153}],287:[function(require,module,exports){
|
|
79844
79908
|
"use strict";
|
|
79845
79909
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
79846
79910
|
exports.ExclusiveInflowTestApp__factory = void 0;
|
|
@@ -80149,7 +80213,7 @@ exports.ExclusiveInflowTestApp__factory = ExclusiveInflowTestApp__factory;
|
|
|
80149
80213
|
ExclusiveInflowTestApp__factory.bytecode = _bytecode;
|
|
80150
80214
|
ExclusiveInflowTestApp__factory.abi = _abi;
|
|
80151
80215
|
|
|
80152
|
-
},{"ethers":153}],
|
|
80216
|
+
},{"ethers":153}],288:[function(require,module,exports){
|
|
80153
80217
|
"use strict";
|
|
80154
80218
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
80155
80219
|
exports.FlowExchangeTestApp__factory = void 0;
|
|
@@ -80463,7 +80527,7 @@ exports.FlowExchangeTestApp__factory = FlowExchangeTestApp__factory;
|
|
|
80463
80527
|
FlowExchangeTestApp__factory.bytecode = _bytecode;
|
|
80464
80528
|
FlowExchangeTestApp__factory.abi = _abi;
|
|
80465
80529
|
|
|
80466
|
-
},{"ethers":153}],
|
|
80530
|
+
},{"ethers":153}],289:[function(require,module,exports){
|
|
80467
80531
|
"use strict";
|
|
80468
80532
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
80469
80533
|
exports.NonClosableOutflowTestApp__factory = void 0;
|
|
@@ -80795,7 +80859,7 @@ exports.NonClosableOutflowTestApp__factory = NonClosableOutflowTestApp__factory;
|
|
|
80795
80859
|
NonClosableOutflowTestApp__factory.bytecode = _bytecode;
|
|
80796
80860
|
NonClosableOutflowTestApp__factory.abi = _abi;
|
|
80797
80861
|
|
|
80798
|
-
},{"ethers":153}],
|
|
80862
|
+
},{"ethers":153}],290:[function(require,module,exports){
|
|
80799
80863
|
"use strict";
|
|
80800
80864
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
80801
80865
|
exports.SelfDeletingFlowTestApp__factory = void 0;
|
|
@@ -81104,7 +81168,7 @@ exports.SelfDeletingFlowTestApp__factory = SelfDeletingFlowTestApp__factory;
|
|
|
81104
81168
|
SelfDeletingFlowTestApp__factory.bytecode = _bytecode;
|
|
81105
81169
|
SelfDeletingFlowTestApp__factory.abi = _abi;
|
|
81106
81170
|
|
|
81107
|
-
},{"ethers":153}],
|
|
81171
|
+
},{"ethers":153}],291:[function(require,module,exports){
|
|
81108
81172
|
"use strict";
|
|
81109
81173
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81110
81174
|
exports.SelfDeletingFlowTestApp__factory = exports.NonClosableOutflowTestApp__factory = exports.FlowExchangeTestApp__factory = exports.ExclusiveInflowTestApp__factory = exports.ClosingOnUpdateFlowTestApp__factory = void 0;
|
|
@@ -81122,7 +81186,7 @@ Object.defineProperty(exports, "NonClosableOutflowTestApp__factory", { enumerabl
|
|
|
81122
81186
|
var SelfDeletingFlowTestApp__factory_1 = require("./SelfDeletingFlowTestApp__factory");
|
|
81123
81187
|
Object.defineProperty(exports, "SelfDeletingFlowTestApp__factory", { enumerable: true, get: function () { return SelfDeletingFlowTestApp__factory_1.SelfDeletingFlowTestApp__factory; } });
|
|
81124
81188
|
|
|
81125
|
-
},{"./ClosingOnUpdateFlowTestApp__factory":
|
|
81189
|
+
},{"./ClosingOnUpdateFlowTestApp__factory":286,"./ExclusiveInflowTestApp__factory":287,"./FlowExchangeTestApp__factory":288,"./NonClosableOutflowTestApp__factory":289,"./SelfDeletingFlowTestApp__factory":290}],292:[function(require,module,exports){
|
|
81126
81190
|
"use strict";
|
|
81127
81191
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81128
81192
|
exports.CFALibraryMock__factory = void 0;
|
|
@@ -81402,7 +81466,7 @@ exports.CFALibraryMock__factory = CFALibraryMock__factory;
|
|
|
81402
81466
|
CFALibraryMock__factory.bytecode = _bytecode;
|
|
81403
81467
|
CFALibraryMock__factory.abi = _abi;
|
|
81404
81468
|
|
|
81405
|
-
},{"ethers":153}],
|
|
81469
|
+
},{"ethers":153}],293:[function(require,module,exports){
|
|
81406
81470
|
"use strict";
|
|
81407
81471
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81408
81472
|
exports.CFALibrarySuperAppMock__factory = void 0;
|
|
@@ -81747,7 +81811,7 @@ exports.CFALibrarySuperAppMock__factory = CFALibrarySuperAppMock__factory;
|
|
|
81747
81811
|
CFALibrarySuperAppMock__factory.bytecode = _bytecode;
|
|
81748
81812
|
CFALibrarySuperAppMock__factory.abi = _abi;
|
|
81749
81813
|
|
|
81750
|
-
},{"ethers":153}],
|
|
81814
|
+
},{"ethers":153}],294:[function(require,module,exports){
|
|
81751
81815
|
"use strict";
|
|
81752
81816
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81753
81817
|
exports.CFALibrarySuperAppMock__factory = exports.CFALibraryMock__factory = void 0;
|
|
@@ -81759,7 +81823,7 @@ Object.defineProperty(exports, "CFALibraryMock__factory", { enumerable: true, ge
|
|
|
81759
81823
|
var CFALibrarySuperAppMock__factory_1 = require("./CFALibrarySuperAppMock__factory");
|
|
81760
81824
|
Object.defineProperty(exports, "CFALibrarySuperAppMock__factory", { enumerable: true, get: function () { return CFALibrarySuperAppMock__factory_1.CFALibrarySuperAppMock__factory; } });
|
|
81761
81825
|
|
|
81762
|
-
},{"./CFALibraryMock__factory":
|
|
81826
|
+
},{"./CFALibraryMock__factory":292,"./CFALibrarySuperAppMock__factory":293}],295:[function(require,module,exports){
|
|
81763
81827
|
"use strict";
|
|
81764
81828
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81765
81829
|
exports.ConstantInflowNFTMock__factory = void 0;
|
|
@@ -82584,7 +82648,7 @@ exports.ConstantInflowNFTMock__factory = ConstantInflowNFTMock__factory;
|
|
|
82584
82648
|
ConstantInflowNFTMock__factory.bytecode = _bytecode;
|
|
82585
82649
|
ConstantInflowNFTMock__factory.abi = _abi;
|
|
82586
82650
|
|
|
82587
|
-
},{"ethers":153}],
|
|
82651
|
+
},{"ethers":153}],296:[function(require,module,exports){
|
|
82588
82652
|
"use strict";
|
|
82589
82653
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
82590
82654
|
exports.ConstantOutflowNFTMock__factory = void 0;
|
|
@@ -83441,7 +83505,7 @@ exports.ConstantOutflowNFTMock__factory = ConstantOutflowNFTMock__factory;
|
|
|
83441
83505
|
ConstantOutflowNFTMock__factory.bytecode = _bytecode;
|
|
83442
83506
|
ConstantOutflowNFTMock__factory.abi = _abi;
|
|
83443
83507
|
|
|
83444
|
-
},{"ethers":153}],
|
|
83508
|
+
},{"ethers":153}],297:[function(require,module,exports){
|
|
83445
83509
|
"use strict";
|
|
83446
83510
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
83447
83511
|
exports.NoNFTSuperTokenMock__factory = void 0;
|
|
@@ -84286,7 +84350,7 @@ exports.NoNFTSuperTokenMock__factory = NoNFTSuperTokenMock__factory;
|
|
|
84286
84350
|
NoNFTSuperTokenMock__factory.bytecode = _bytecode;
|
|
84287
84351
|
NoNFTSuperTokenMock__factory.abi = _abi;
|
|
84288
84352
|
|
|
84289
|
-
},{"ethers":153}],
|
|
84353
|
+
},{"ethers":153}],298:[function(require,module,exports){
|
|
84290
84354
|
"use strict";
|
|
84291
84355
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
84292
84356
|
exports.NoNFTSuperTokenMock__factory = exports.ConstantOutflowNFTMock__factory = exports.ConstantInflowNFTMock__factory = void 0;
|
|
@@ -84300,7 +84364,7 @@ Object.defineProperty(exports, "ConstantOutflowNFTMock__factory", { enumerable:
|
|
|
84300
84364
|
var NoNFTSuperTokenMock__factory_1 = require("./NoNFTSuperTokenMock__factory");
|
|
84301
84365
|
Object.defineProperty(exports, "NoNFTSuperTokenMock__factory", { enumerable: true, get: function () { return NoNFTSuperTokenMock__factory_1.NoNFTSuperTokenMock__factory; } });
|
|
84302
84366
|
|
|
84303
|
-
},{"./ConstantInflowNFTMock__factory":
|
|
84367
|
+
},{"./ConstantInflowNFTMock__factory":295,"./ConstantOutflowNFTMock__factory":296,"./NoNFTSuperTokenMock__factory":297}],299:[function(require,module,exports){
|
|
84304
84368
|
"use strict";
|
|
84305
84369
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
84306
84370
|
exports.ConstantInflowNFTStorageLayoutMock__factory = void 0;
|
|
@@ -85033,7 +85097,7 @@ exports.ConstantInflowNFTStorageLayoutMock__factory = ConstantInflowNFTStorageLa
|
|
|
85033
85097
|
ConstantInflowNFTStorageLayoutMock__factory.bytecode = _bytecode;
|
|
85034
85098
|
ConstantInflowNFTStorageLayoutMock__factory.abi = _abi;
|
|
85035
85099
|
|
|
85036
|
-
},{"ethers":153}],
|
|
85100
|
+
},{"ethers":153}],300:[function(require,module,exports){
|
|
85037
85101
|
"use strict";
|
|
85038
85102
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
85039
85103
|
exports.ConstantOutflowNFTStorageLayoutMock__factory = void 0;
|
|
@@ -85829,7 +85893,7 @@ exports.ConstantOutflowNFTStorageLayoutMock__factory = ConstantOutflowNFTStorage
|
|
|
85829
85893
|
ConstantOutflowNFTStorageLayoutMock__factory.bytecode = _bytecode;
|
|
85830
85894
|
ConstantOutflowNFTStorageLayoutMock__factory.abi = _abi;
|
|
85831
85895
|
|
|
85832
|
-
},{"ethers":153}],
|
|
85896
|
+
},{"ethers":153}],301:[function(require,module,exports){
|
|
85833
85897
|
"use strict";
|
|
85834
85898
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
85835
85899
|
exports.FlowNFTBaseStorageLayoutMock__factory = void 0;
|
|
@@ -86508,7 +86572,7 @@ exports.FlowNFTBaseStorageLayoutMock__factory = FlowNFTBaseStorageLayoutMock__fa
|
|
|
86508
86572
|
FlowNFTBaseStorageLayoutMock__factory.bytecode = _bytecode;
|
|
86509
86573
|
FlowNFTBaseStorageLayoutMock__factory.abi = _abi;
|
|
86510
86574
|
|
|
86511
|
-
},{"ethers":153}],
|
|
86575
|
+
},{"ethers":153}],302:[function(require,module,exports){
|
|
86512
86576
|
"use strict";
|
|
86513
86577
|
/* Autogenerated file. Do not edit manually. */
|
|
86514
86578
|
/* tslint:disable */
|
|
@@ -86540,7 +86604,7 @@ class IFlowNFTBaseMockErrors__factory {
|
|
|
86540
86604
|
exports.IFlowNFTBaseMockErrors__factory = IFlowNFTBaseMockErrors__factory;
|
|
86541
86605
|
IFlowNFTBaseMockErrors__factory.abi = _abi;
|
|
86542
86606
|
|
|
86543
|
-
},{"ethers":153}],
|
|
86607
|
+
},{"ethers":153}],303:[function(require,module,exports){
|
|
86544
86608
|
"use strict";
|
|
86545
86609
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
86546
86610
|
exports.IFlowNFTBaseMockErrors__factory = exports.FlowNFTBaseStorageLayoutMock__factory = exports.ConstantOutflowNFTStorageLayoutMock__factory = exports.ConstantInflowNFTStorageLayoutMock__factory = void 0;
|
|
@@ -86556,7 +86620,7 @@ Object.defineProperty(exports, "FlowNFTBaseStorageLayoutMock__factory", { enumer
|
|
|
86556
86620
|
var IFlowNFTBaseMockErrors__factory_1 = require("./IFlowNFTBaseMockErrors__factory");
|
|
86557
86621
|
Object.defineProperty(exports, "IFlowNFTBaseMockErrors__factory", { enumerable: true, get: function () { return IFlowNFTBaseMockErrors__factory_1.IFlowNFTBaseMockErrors__factory; } });
|
|
86558
86622
|
|
|
86559
|
-
},{"./ConstantInflowNFTStorageLayoutMock__factory":
|
|
86623
|
+
},{"./ConstantInflowNFTStorageLayoutMock__factory":299,"./ConstantOutflowNFTStorageLayoutMock__factory":300,"./FlowNFTBaseStorageLayoutMock__factory":301,"./IFlowNFTBaseMockErrors__factory":302}],304:[function(require,module,exports){
|
|
86560
86624
|
"use strict";
|
|
86561
86625
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
86562
86626
|
exports.CallUtilsMock__factory = void 0;
|
|
@@ -86750,7 +86814,7 @@ exports.CallUtilsMock__factory = CallUtilsMock__factory;
|
|
|
86750
86814
|
CallUtilsMock__factory.bytecode = _bytecode;
|
|
86751
86815
|
CallUtilsMock__factory.abi = _abi;
|
|
86752
86816
|
|
|
86753
|
-
},{"ethers":153}],
|
|
86817
|
+
},{"ethers":153}],305:[function(require,module,exports){
|
|
86754
86818
|
"use strict";
|
|
86755
86819
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
86756
86820
|
exports.CallUtilsTester__factory = void 0;
|
|
@@ -86801,7 +86865,7 @@ exports.CallUtilsTester__factory = CallUtilsTester__factory;
|
|
|
86801
86865
|
CallUtilsTester__factory.bytecode = _bytecode;
|
|
86802
86866
|
CallUtilsTester__factory.abi = _abi;
|
|
86803
86867
|
|
|
86804
|
-
},{"ethers":153}],
|
|
86868
|
+
},{"ethers":153}],306:[function(require,module,exports){
|
|
86805
86869
|
"use strict";
|
|
86806
86870
|
/* Autogenerated file. Do not edit manually. */
|
|
86807
86871
|
/* tslint:disable */
|
|
@@ -86930,7 +86994,7 @@ class CustomSuperTokenBaseMock__factory {
|
|
|
86930
86994
|
exports.CustomSuperTokenBaseMock__factory = CustomSuperTokenBaseMock__factory;
|
|
86931
86995
|
CustomSuperTokenBaseMock__factory.abi = _abi;
|
|
86932
86996
|
|
|
86933
|
-
},{"ethers":153}],
|
|
86997
|
+
},{"ethers":153}],307:[function(require,module,exports){
|
|
86934
86998
|
"use strict";
|
|
86935
86999
|
/* Autogenerated file. Do not edit manually. */
|
|
86936
87000
|
/* tslint:disable */
|
|
@@ -88872,7 +88936,7 @@ class CustomSuperTokenMock__factory {
|
|
|
88872
88936
|
exports.CustomSuperTokenMock__factory = CustomSuperTokenMock__factory;
|
|
88873
88937
|
CustomSuperTokenMock__factory.abi = _abi;
|
|
88874
88938
|
|
|
88875
|
-
},{"ethers":153}],
|
|
88939
|
+
},{"ethers":153}],308:[function(require,module,exports){
|
|
88876
88940
|
"use strict";
|
|
88877
88941
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
88878
88942
|
exports.CustomSuperTokenProxyMock__factory = void 0;
|
|
@@ -89070,7 +89134,7 @@ exports.CustomSuperTokenProxyMock__factory = CustomSuperTokenProxyMock__factory;
|
|
|
89070
89134
|
CustomSuperTokenProxyMock__factory.bytecode = _bytecode;
|
|
89071
89135
|
CustomSuperTokenProxyMock__factory.abi = _abi;
|
|
89072
89136
|
|
|
89073
|
-
},{"ethers":153}],
|
|
89137
|
+
},{"ethers":153}],309:[function(require,module,exports){
|
|
89074
89138
|
"use strict";
|
|
89075
89139
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
89076
89140
|
exports.CustomSuperTokenProxyMock__factory = exports.CustomSuperTokenMock__factory = exports.CustomSuperTokenBaseMock__factory = void 0;
|
|
@@ -89084,7 +89148,7 @@ Object.defineProperty(exports, "CustomSuperTokenMock__factory", { enumerable: tr
|
|
|
89084
89148
|
var CustomSuperTokenProxyMock__factory_1 = require("./CustomSuperTokenProxyMock__factory");
|
|
89085
89149
|
Object.defineProperty(exports, "CustomSuperTokenProxyMock__factory", { enumerable: true, get: function () { return CustomSuperTokenProxyMock__factory_1.CustomSuperTokenProxyMock__factory; } });
|
|
89086
89150
|
|
|
89087
|
-
},{"./CustomSuperTokenBaseMock__factory":
|
|
89151
|
+
},{"./CustomSuperTokenBaseMock__factory":306,"./CustomSuperTokenMock__factory":307,"./CustomSuperTokenProxyMock__factory":308}],310:[function(require,module,exports){
|
|
89088
89152
|
"use strict";
|
|
89089
89153
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
89090
89154
|
exports.ERC777RecipientDrainingGas__factory = void 0;
|
|
@@ -89209,7 +89273,7 @@ exports.ERC777RecipientDrainingGas__factory = ERC777RecipientDrainingGas__factor
|
|
|
89209
89273
|
ERC777RecipientDrainingGas__factory.bytecode = _bytecode;
|
|
89210
89274
|
ERC777RecipientDrainingGas__factory.abi = _abi;
|
|
89211
89275
|
|
|
89212
|
-
},{"ethers":153}],
|
|
89276
|
+
},{"ethers":153}],311:[function(require,module,exports){
|
|
89213
89277
|
"use strict";
|
|
89214
89278
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
89215
89279
|
exports.ERC777RecipientReverting__factory = void 0;
|
|
@@ -89320,7 +89384,7 @@ exports.ERC777RecipientReverting__factory = ERC777RecipientReverting__factory;
|
|
|
89320
89384
|
ERC777RecipientReverting__factory.bytecode = _bytecode;
|
|
89321
89385
|
ERC777RecipientReverting__factory.abi = _abi;
|
|
89322
89386
|
|
|
89323
|
-
},{"ethers":153}],
|
|
89387
|
+
},{"ethers":153}],312:[function(require,module,exports){
|
|
89324
89388
|
"use strict";
|
|
89325
89389
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
89326
89390
|
exports.ERC777SenderRecipientMock__factory = void 0;
|
|
@@ -89741,7 +89805,7 @@ exports.ERC777SenderRecipientMock__factory = ERC777SenderRecipientMock__factory;
|
|
|
89741
89805
|
ERC777SenderRecipientMock__factory.bytecode = _bytecode;
|
|
89742
89806
|
ERC777SenderRecipientMock__factory.abi = _abi;
|
|
89743
89807
|
|
|
89744
|
-
},{"ethers":153}],
|
|
89808
|
+
},{"ethers":153}],313:[function(require,module,exports){
|
|
89745
89809
|
"use strict";
|
|
89746
89810
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
89747
89811
|
exports.ERC777SenderRecipientMock__factory = exports.ERC777RecipientReverting__factory = exports.ERC777RecipientDrainingGas__factory = void 0;
|
|
@@ -89755,7 +89819,7 @@ Object.defineProperty(exports, "ERC777RecipientReverting__factory", { enumerable
|
|
|
89755
89819
|
var ERC777SenderRecipientMock__factory_1 = require("./ERC777SenderRecipientMock__factory");
|
|
89756
89820
|
Object.defineProperty(exports, "ERC777SenderRecipientMock__factory", { enumerable: true, get: function () { return ERC777SenderRecipientMock__factory_1.ERC777SenderRecipientMock__factory; } });
|
|
89757
89821
|
|
|
89758
|
-
},{"./ERC777RecipientDrainingGas__factory":
|
|
89822
|
+
},{"./ERC777RecipientDrainingGas__factory":310,"./ERC777RecipientReverting__factory":311,"./ERC777SenderRecipientMock__factory":312}],314:[function(require,module,exports){
|
|
89759
89823
|
"use strict";
|
|
89760
89824
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
89761
89825
|
exports.FakeSuperfluidMock__factory = void 0;
|
|
@@ -89817,7 +89881,7 @@ exports.FakeSuperfluidMock__factory = FakeSuperfluidMock__factory;
|
|
|
89817
89881
|
FakeSuperfluidMock__factory.bytecode = _bytecode;
|
|
89818
89882
|
FakeSuperfluidMock__factory.abi = _abi;
|
|
89819
89883
|
|
|
89820
|
-
},{"ethers":153}],
|
|
89884
|
+
},{"ethers":153}],315:[function(require,module,exports){
|
|
89821
89885
|
"use strict";
|
|
89822
89886
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
89823
89887
|
exports.ForwarderMock__factory = void 0;
|
|
@@ -89901,7 +89965,7 @@ exports.ForwarderMock__factory = ForwarderMock__factory;
|
|
|
89901
89965
|
ForwarderMock__factory.bytecode = _bytecode;
|
|
89902
89966
|
ForwarderMock__factory.abi = _abi;
|
|
89903
89967
|
|
|
89904
|
-
},{"ethers":153}],
|
|
89968
|
+
},{"ethers":153}],316:[function(require,module,exports){
|
|
89905
89969
|
"use strict";
|
|
89906
89970
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
89907
89971
|
exports.IDASuperAppTester__factory = void 0;
|
|
@@ -90337,7 +90401,7 @@ exports.IDASuperAppTester__factory = IDASuperAppTester__factory;
|
|
|
90337
90401
|
IDASuperAppTester__factory.bytecode = _bytecode;
|
|
90338
90402
|
IDASuperAppTester__factory.abi = _abi;
|
|
90339
90403
|
|
|
90340
|
-
},{"ethers":153}],
|
|
90404
|
+
},{"ethers":153}],317:[function(require,module,exports){
|
|
90341
90405
|
"use strict";
|
|
90342
90406
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
90343
90407
|
exports.IDAv1LibraryMock__factory = void 0;
|
|
@@ -91030,7 +91094,7 @@ exports.IDAv1LibraryMock__factory = IDAv1LibraryMock__factory;
|
|
|
91030
91094
|
IDAv1LibraryMock__factory.bytecode = _bytecode;
|
|
91031
91095
|
IDAv1LibraryMock__factory.abi = _abi;
|
|
91032
91096
|
|
|
91033
|
-
},{"ethers":153}],
|
|
91097
|
+
},{"ethers":153}],318:[function(require,module,exports){
|
|
91034
91098
|
"use strict";
|
|
91035
91099
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
91036
91100
|
exports.IDAv1LibrarySuperAppMock__factory = void 0;
|
|
@@ -91972,7 +92036,7 @@ exports.IDAv1LibrarySuperAppMock__factory = IDAv1LibrarySuperAppMock__factory;
|
|
|
91972
92036
|
IDAv1LibrarySuperAppMock__factory.bytecode = _bytecode;
|
|
91973
92037
|
IDAv1LibrarySuperAppMock__factory.abi = _abi;
|
|
91974
92038
|
|
|
91975
|
-
},{"ethers":153}],
|
|
92039
|
+
},{"ethers":153}],319:[function(require,module,exports){
|
|
91976
92040
|
"use strict";
|
|
91977
92041
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
91978
92042
|
exports.IDAv1LibrarySuperAppMock__factory = exports.IDAv1LibraryMock__factory = void 0;
|
|
@@ -91984,7 +92048,7 @@ Object.defineProperty(exports, "IDAv1LibraryMock__factory", { enumerable: true,
|
|
|
91984
92048
|
var IDAv1LibrarySuperAppMock__factory_1 = require("./IDAv1LibrarySuperAppMock__factory");
|
|
91985
92049
|
Object.defineProperty(exports, "IDAv1LibrarySuperAppMock__factory", { enumerable: true, get: function () { return IDAv1LibrarySuperAppMock__factory_1.IDAv1LibrarySuperAppMock__factory; } });
|
|
91986
92050
|
|
|
91987
|
-
},{"./IDAv1LibraryMock__factory":
|
|
92051
|
+
},{"./IDAv1LibraryMock__factory":317,"./IDAv1LibrarySuperAppMock__factory":318}],320:[function(require,module,exports){
|
|
91988
92052
|
"use strict";
|
|
91989
92053
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
91990
92054
|
exports.MockSmartWallet__factory = void 0;
|
|
@@ -92079,7 +92143,7 @@ exports.MockSmartWallet__factory = MockSmartWallet__factory;
|
|
|
92079
92143
|
MockSmartWallet__factory.bytecode = _bytecode;
|
|
92080
92144
|
MockSmartWallet__factory.abi = _abi;
|
|
92081
92145
|
|
|
92082
|
-
},{"ethers":153}],
|
|
92146
|
+
},{"ethers":153}],321:[function(require,module,exports){
|
|
92083
92147
|
"use strict";
|
|
92084
92148
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
92085
92149
|
exports.MultiFlowTesterApp__factory = void 0;
|
|
@@ -92422,7 +92486,7 @@ exports.MultiFlowTesterApp__factory = MultiFlowTesterApp__factory;
|
|
|
92422
92486
|
MultiFlowTesterApp__factory.bytecode = _bytecode;
|
|
92423
92487
|
MultiFlowTesterApp__factory.abi = _abi;
|
|
92424
92488
|
|
|
92425
|
-
},{"ethers":153}],
|
|
92489
|
+
},{"ethers":153}],322:[function(require,module,exports){
|
|
92426
92490
|
"use strict";
|
|
92427
92491
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
92428
92492
|
exports.StreamRedirector__factory = void 0;
|
|
@@ -92906,7 +92970,7 @@ exports.StreamRedirector__factory = StreamRedirector__factory;
|
|
|
92906
92970
|
StreamRedirector__factory.bytecode = _bytecode;
|
|
92907
92971
|
StreamRedirector__factory.abi = _abi;
|
|
92908
92972
|
|
|
92909
|
-
},{"ethers":153}],
|
|
92973
|
+
},{"ethers":153}],323:[function(require,module,exports){
|
|
92910
92974
|
"use strict";
|
|
92911
92975
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
92912
92976
|
exports.SuperAppBaseFlowTester__factory = void 0;
|
|
@@ -93378,7 +93442,7 @@ exports.SuperAppBaseFlowTester__factory = SuperAppBaseFlowTester__factory;
|
|
|
93378
93442
|
SuperAppBaseFlowTester__factory.bytecode = _bytecode;
|
|
93379
93443
|
SuperAppBaseFlowTester__factory.abi = _abi;
|
|
93380
93444
|
|
|
93381
|
-
},{"ethers":153}],
|
|
93445
|
+
},{"ethers":153}],324:[function(require,module,exports){
|
|
93382
93446
|
"use strict";
|
|
93383
93447
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
93384
93448
|
exports.SuperAppFactoryMock__factory = void 0;
|
|
@@ -93445,7 +93509,7 @@ exports.SuperAppFactoryMock__factory = SuperAppFactoryMock__factory;
|
|
|
93445
93509
|
SuperAppFactoryMock__factory.bytecode = _bytecode;
|
|
93446
93510
|
SuperAppFactoryMock__factory.abi = _abi;
|
|
93447
93511
|
|
|
93448
|
-
},{"ethers":153}],
|
|
93512
|
+
},{"ethers":153}],325:[function(require,module,exports){
|
|
93449
93513
|
"use strict";
|
|
93450
93514
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
93451
93515
|
exports.SuperAppMock2ndLevel__factory = void 0;
|
|
@@ -93561,7 +93625,7 @@ exports.SuperAppMock2ndLevel__factory = SuperAppMock2ndLevel__factory;
|
|
|
93561
93625
|
SuperAppMock2ndLevel__factory.bytecode = _bytecode;
|
|
93562
93626
|
SuperAppMock2ndLevel__factory.abi = _abi;
|
|
93563
93627
|
|
|
93564
|
-
},{"ethers":153}],
|
|
93628
|
+
},{"ethers":153}],326:[function(require,module,exports){
|
|
93565
93629
|
"use strict";
|
|
93566
93630
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
93567
93631
|
exports.SuperAppMockAux__factory = void 0;
|
|
@@ -93656,7 +93720,7 @@ exports.SuperAppMockAux__factory = SuperAppMockAux__factory;
|
|
|
93656
93720
|
SuperAppMockAux__factory.bytecode = _bytecode;
|
|
93657
93721
|
SuperAppMockAux__factory.abi = _abi;
|
|
93658
93722
|
|
|
93659
|
-
},{"ethers":153}],
|
|
93723
|
+
},{"ethers":153}],327:[function(require,module,exports){
|
|
93660
93724
|
"use strict";
|
|
93661
93725
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
93662
93726
|
exports.SuperAppMockReturningEmptyCtx__factory = void 0;
|
|
@@ -93853,7 +93917,7 @@ exports.SuperAppMockReturningEmptyCtx__factory = SuperAppMockReturningEmptyCtx__
|
|
|
93853
93917
|
SuperAppMockReturningEmptyCtx__factory.bytecode = _bytecode;
|
|
93854
93918
|
SuperAppMockReturningEmptyCtx__factory.abi = _abi;
|
|
93855
93919
|
|
|
93856
|
-
},{"ethers":153}],
|
|
93920
|
+
},{"ethers":153}],328:[function(require,module,exports){
|
|
93857
93921
|
"use strict";
|
|
93858
93922
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
93859
93923
|
exports.SuperAppMockReturningInvalidCtx__factory = void 0;
|
|
@@ -93996,7 +94060,7 @@ exports.SuperAppMockReturningInvalidCtx__factory = SuperAppMockReturningInvalidC
|
|
|
93996
94060
|
SuperAppMockReturningInvalidCtx__factory.bytecode = _bytecode;
|
|
93997
94061
|
SuperAppMockReturningInvalidCtx__factory.abi = _abi;
|
|
93998
94062
|
|
|
93999
|
-
},{"ethers":153}],
|
|
94063
|
+
},{"ethers":153}],329:[function(require,module,exports){
|
|
94000
94064
|
"use strict";
|
|
94001
94065
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
94002
94066
|
exports.SuperAppMockUsingDeprecatedRegisterApp__factory = void 0;
|
|
@@ -94056,7 +94120,7 @@ exports.SuperAppMockUsingDeprecatedRegisterApp__factory = SuperAppMockUsingDepre
|
|
|
94056
94120
|
SuperAppMockUsingDeprecatedRegisterApp__factory.bytecode = _bytecode;
|
|
94057
94121
|
SuperAppMockUsingDeprecatedRegisterApp__factory.abi = _abi;
|
|
94058
94122
|
|
|
94059
|
-
},{"ethers":153}],
|
|
94123
|
+
},{"ethers":153}],330:[function(require,module,exports){
|
|
94060
94124
|
"use strict";
|
|
94061
94125
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
94062
94126
|
exports.SuperAppMockWithRegistrationKey__factory = void 0;
|
|
@@ -94121,7 +94185,7 @@ exports.SuperAppMockWithRegistrationKey__factory = SuperAppMockWithRegistrationK
|
|
|
94121
94185
|
SuperAppMockWithRegistrationKey__factory.bytecode = _bytecode;
|
|
94122
94186
|
SuperAppMockWithRegistrationKey__factory.abi = _abi;
|
|
94123
94187
|
|
|
94124
|
-
},{"ethers":153}],
|
|
94188
|
+
},{"ethers":153}],331:[function(require,module,exports){
|
|
94125
94189
|
"use strict";
|
|
94126
94190
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
94127
94191
|
exports.SuperAppMock__factory = void 0;
|
|
@@ -94847,7 +94911,7 @@ exports.SuperAppMock__factory = SuperAppMock__factory;
|
|
|
94847
94911
|
SuperAppMock__factory.bytecode = _bytecode;
|
|
94848
94912
|
SuperAppMock__factory.abi = _abi;
|
|
94849
94913
|
|
|
94850
|
-
},{"ethers":153}],
|
|
94914
|
+
},{"ethers":153}],332:[function(require,module,exports){
|
|
94851
94915
|
"use strict";
|
|
94852
94916
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
94853
94917
|
exports.SuperAppMockWithRegistrationKey__factory = exports.SuperAppMockUsingDeprecatedRegisterApp__factory = exports.SuperAppMockReturningInvalidCtx__factory = exports.SuperAppMockReturningEmptyCtx__factory = exports.SuperAppMockAux__factory = exports.SuperAppMock2ndLevel__factory = exports.SuperAppMock__factory = exports.SuperAppFactoryMock__factory = void 0;
|
|
@@ -94871,7 +94935,7 @@ Object.defineProperty(exports, "SuperAppMockUsingDeprecatedRegisterApp__factory"
|
|
|
94871
94935
|
var SuperAppMockWithRegistrationKey__factory_1 = require("./SuperAppMockWithRegistrationKey__factory");
|
|
94872
94936
|
Object.defineProperty(exports, "SuperAppMockWithRegistrationKey__factory", { enumerable: true, get: function () { return SuperAppMockWithRegistrationKey__factory_1.SuperAppMockWithRegistrationKey__factory; } });
|
|
94873
94937
|
|
|
94874
|
-
},{"./SuperAppFactoryMock__factory":
|
|
94938
|
+
},{"./SuperAppFactoryMock__factory":324,"./SuperAppMock2ndLevel__factory":325,"./SuperAppMockAux__factory":326,"./SuperAppMockReturningEmptyCtx__factory":327,"./SuperAppMockReturningInvalidCtx__factory":328,"./SuperAppMockUsingDeprecatedRegisterApp__factory":329,"./SuperAppMockWithRegistrationKey__factory":330,"./SuperAppMock__factory":331}],333:[function(require,module,exports){
|
|
94875
94939
|
"use strict";
|
|
94876
94940
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
94877
94941
|
exports.SuperTokenFactoryMock42__factory = void 0;
|
|
@@ -95338,7 +95402,7 @@ exports.SuperTokenFactoryMock42__factory = SuperTokenFactoryMock42__factory;
|
|
|
95338
95402
|
SuperTokenFactoryMock42__factory.bytecode = _bytecode;
|
|
95339
95403
|
SuperTokenFactoryMock42__factory.abi = _abi;
|
|
95340
95404
|
|
|
95341
|
-
},{"ethers":153}],
|
|
95405
|
+
},{"ethers":153}],334:[function(require,module,exports){
|
|
95342
95406
|
"use strict";
|
|
95343
95407
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
95344
95408
|
exports.SuperTokenFactoryMock__factory = void 0;
|
|
@@ -95805,7 +95869,7 @@ exports.SuperTokenFactoryMock__factory = SuperTokenFactoryMock__factory;
|
|
|
95805
95869
|
SuperTokenFactoryMock__factory.bytecode = _bytecode;
|
|
95806
95870
|
SuperTokenFactoryMock__factory.abi = _abi;
|
|
95807
95871
|
|
|
95808
|
-
},{"ethers":153}],
|
|
95872
|
+
},{"ethers":153}],335:[function(require,module,exports){
|
|
95809
95873
|
"use strict";
|
|
95810
95874
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
95811
95875
|
exports.SuperTokenFactoryStorageLayoutTester__factory = void 0;
|
|
@@ -96279,7 +96343,7 @@ exports.SuperTokenFactoryStorageLayoutTester__factory = SuperTokenFactoryStorage
|
|
|
96279
96343
|
SuperTokenFactoryStorageLayoutTester__factory.bytecode = _bytecode;
|
|
96280
96344
|
SuperTokenFactoryStorageLayoutTester__factory.abi = _abi;
|
|
96281
96345
|
|
|
96282
|
-
},{"ethers":153}],
|
|
96346
|
+
},{"ethers":153}],336:[function(require,module,exports){
|
|
96283
96347
|
"use strict";
|
|
96284
96348
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
96285
96349
|
exports.SuperTokenFactoryUpdateLogicContractsTester__factory = void 0;
|
|
@@ -96759,7 +96823,7 @@ exports.SuperTokenFactoryUpdateLogicContractsTester__factory = SuperTokenFactory
|
|
|
96759
96823
|
SuperTokenFactoryUpdateLogicContractsTester__factory.bytecode = _bytecode;
|
|
96760
96824
|
SuperTokenFactoryUpdateLogicContractsTester__factory.abi = _abi;
|
|
96761
96825
|
|
|
96762
|
-
},{"ethers":153}],
|
|
96826
|
+
},{"ethers":153}],337:[function(require,module,exports){
|
|
96763
96827
|
"use strict";
|
|
96764
96828
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
96765
96829
|
exports.SuperTokenFactoryUpdateLogicContractsTester__factory = exports.SuperTokenFactoryStorageLayoutTester__factory = exports.SuperTokenFactoryMock42__factory = exports.SuperTokenFactoryMock__factory = void 0;
|
|
@@ -96775,7 +96839,7 @@ Object.defineProperty(exports, "SuperTokenFactoryStorageLayoutTester__factory",
|
|
|
96775
96839
|
var SuperTokenFactoryUpdateLogicContractsTester__factory_1 = require("./SuperTokenFactoryUpdateLogicContractsTester__factory");
|
|
96776
96840
|
Object.defineProperty(exports, "SuperTokenFactoryUpdateLogicContractsTester__factory", { enumerable: true, get: function () { return SuperTokenFactoryUpdateLogicContractsTester__factory_1.SuperTokenFactoryUpdateLogicContractsTester__factory; } });
|
|
96777
96841
|
|
|
96778
|
-
},{"./SuperTokenFactoryMock42__factory":
|
|
96842
|
+
},{"./SuperTokenFactoryMock42__factory":333,"./SuperTokenFactoryMock__factory":334,"./SuperTokenFactoryStorageLayoutTester__factory":335,"./SuperTokenFactoryUpdateLogicContractsTester__factory":336}],338:[function(require,module,exports){
|
|
96779
96843
|
"use strict";
|
|
96780
96844
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
96781
96845
|
exports.SuperTokenLibraryCFAMock__factory = void 0;
|
|
@@ -97525,7 +97589,7 @@ exports.SuperTokenLibraryCFAMock__factory = SuperTokenLibraryCFAMock__factory;
|
|
|
97525
97589
|
SuperTokenLibraryCFAMock__factory.bytecode = _bytecode;
|
|
97526
97590
|
SuperTokenLibraryCFAMock__factory.abi = _abi;
|
|
97527
97591
|
|
|
97528
|
-
},{"ethers":153}],
|
|
97592
|
+
},{"ethers":153}],339:[function(require,module,exports){
|
|
97529
97593
|
"use strict";
|
|
97530
97594
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
97531
97595
|
exports.SuperTokenLibraryCFASuperAppMock__factory = void 0;
|
|
@@ -97870,7 +97934,7 @@ exports.SuperTokenLibraryCFASuperAppMock__factory = SuperTokenLibraryCFASuperApp
|
|
|
97870
97934
|
SuperTokenLibraryCFASuperAppMock__factory.bytecode = _bytecode;
|
|
97871
97935
|
SuperTokenLibraryCFASuperAppMock__factory.abi = _abi;
|
|
97872
97936
|
|
|
97873
|
-
},{"ethers":153}],
|
|
97937
|
+
},{"ethers":153}],340:[function(require,module,exports){
|
|
97874
97938
|
"use strict";
|
|
97875
97939
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
97876
97940
|
exports.SuperTokenLibraryIDAMock__factory = void 0;
|
|
@@ -98552,7 +98616,7 @@ exports.SuperTokenLibraryIDAMock__factory = SuperTokenLibraryIDAMock__factory;
|
|
|
98552
98616
|
SuperTokenLibraryIDAMock__factory.bytecode = _bytecode;
|
|
98553
98617
|
SuperTokenLibraryIDAMock__factory.abi = _abi;
|
|
98554
98618
|
|
|
98555
|
-
},{"ethers":153}],
|
|
98619
|
+
},{"ethers":153}],341:[function(require,module,exports){
|
|
98556
98620
|
"use strict";
|
|
98557
98621
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
98558
98622
|
exports.SuperTokenLibraryIDASuperAppMock__factory = void 0;
|
|
@@ -99494,7 +99558,7 @@ exports.SuperTokenLibraryIDASuperAppMock__factory = SuperTokenLibraryIDASuperApp
|
|
|
99494
99558
|
SuperTokenLibraryIDASuperAppMock__factory.bytecode = _bytecode;
|
|
99495
99559
|
SuperTokenLibraryIDASuperAppMock__factory.abi = _abi;
|
|
99496
99560
|
|
|
99497
|
-
},{"ethers":153}],
|
|
99561
|
+
},{"ethers":153}],342:[function(require,module,exports){
|
|
99498
99562
|
"use strict";
|
|
99499
99563
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
99500
99564
|
exports.SuperTokenLibraryIDASuperAppMock__factory = exports.SuperTokenLibraryIDAMock__factory = exports.SuperTokenLibraryCFASuperAppMock__factory = exports.SuperTokenLibraryCFAMock__factory = void 0;
|
|
@@ -99510,7 +99574,7 @@ Object.defineProperty(exports, "SuperTokenLibraryIDAMock__factory", { enumerable
|
|
|
99510
99574
|
var SuperTokenLibraryIDASuperAppMock__factory_1 = require("./SuperTokenLibraryIDASuperAppMock__factory");
|
|
99511
99575
|
Object.defineProperty(exports, "SuperTokenLibraryIDASuperAppMock__factory", { enumerable: true, get: function () { return SuperTokenLibraryIDASuperAppMock__factory_1.SuperTokenLibraryIDASuperAppMock__factory; } });
|
|
99512
99576
|
|
|
99513
|
-
},{"./SuperTokenLibraryCFAMock__factory":
|
|
99577
|
+
},{"./SuperTokenLibraryCFAMock__factory":338,"./SuperTokenLibraryCFASuperAppMock__factory":339,"./SuperTokenLibraryIDAMock__factory":340,"./SuperTokenLibraryIDASuperAppMock__factory":341}],343:[function(require,module,exports){
|
|
99514
99578
|
"use strict";
|
|
99515
99579
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
99516
99580
|
exports.SuperTokenMock__factory = void 0;
|
|
@@ -101571,7 +101635,7 @@ exports.SuperTokenMock__factory = SuperTokenMock__factory;
|
|
|
101571
101635
|
SuperTokenMock__factory.bytecode = _bytecode;
|
|
101572
101636
|
SuperTokenMock__factory.abi = _abi;
|
|
101573
101637
|
|
|
101574
|
-
},{"ethers":153}],
|
|
101638
|
+
},{"ethers":153}],344:[function(require,module,exports){
|
|
101575
101639
|
"use strict";
|
|
101576
101640
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
101577
101641
|
exports.SuperTokenStorageLayoutTester__factory = void 0;
|
|
@@ -103547,7 +103611,7 @@ exports.SuperTokenStorageLayoutTester__factory = SuperTokenStorageLayoutTester__
|
|
|
103547
103611
|
SuperTokenStorageLayoutTester__factory.bytecode = _bytecode;
|
|
103548
103612
|
SuperTokenStorageLayoutTester__factory.abi = _abi;
|
|
103549
103613
|
|
|
103550
|
-
},{"ethers":153}],
|
|
103614
|
+
},{"ethers":153}],345:[function(require,module,exports){
|
|
103551
103615
|
"use strict";
|
|
103552
103616
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
103553
103617
|
exports.SuperTokenStorageLayoutTester__factory = exports.SuperTokenMock__factory = void 0;
|
|
@@ -103559,7 +103623,7 @@ Object.defineProperty(exports, "SuperTokenMock__factory", { enumerable: true, ge
|
|
|
103559
103623
|
var SuperTokenStorageLayoutTester__factory_1 = require("./SuperTokenStorageLayoutTester__factory");
|
|
103560
103624
|
Object.defineProperty(exports, "SuperTokenStorageLayoutTester__factory", { enumerable: true, get: function () { return SuperTokenStorageLayoutTester__factory_1.SuperTokenStorageLayoutTester__factory; } });
|
|
103561
103625
|
|
|
103562
|
-
},{"./SuperTokenMock__factory":
|
|
103626
|
+
},{"./SuperTokenMock__factory":343,"./SuperTokenStorageLayoutTester__factory":344}],346:[function(require,module,exports){
|
|
103563
103627
|
"use strict";
|
|
103564
103628
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
103565
103629
|
exports.SuperfluidDestructorMock__factory = void 0;
|
|
@@ -103620,7 +103684,7 @@ exports.SuperfluidDestructorMock__factory = SuperfluidDestructorMock__factory;
|
|
|
103620
103684
|
SuperfluidDestructorMock__factory.bytecode = _bytecode;
|
|
103621
103685
|
SuperfluidDestructorMock__factory.abi = _abi;
|
|
103622
103686
|
|
|
103623
|
-
},{"ethers":153}],
|
|
103687
|
+
},{"ethers":153}],347:[function(require,module,exports){
|
|
103624
103688
|
"use strict";
|
|
103625
103689
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
103626
103690
|
exports.SuperfluidGovernanceIIUpgradabilityTester__factory = void 0;
|
|
@@ -104748,7 +104812,7 @@ exports.SuperfluidGovernanceIIUpgradabilityTester__factory = SuperfluidGovernanc
|
|
|
104748
104812
|
SuperfluidGovernanceIIUpgradabilityTester__factory.bytecode = _bytecode;
|
|
104749
104813
|
SuperfluidGovernanceIIUpgradabilityTester__factory.abi = _abi;
|
|
104750
104814
|
|
|
104751
|
-
},{"ethers":153}],
|
|
104815
|
+
},{"ethers":153}],348:[function(require,module,exports){
|
|
104752
104816
|
"use strict";
|
|
104753
104817
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
104754
104818
|
exports.SuperfluidGovernanceIIUpgradabilityTester__factory = void 0;
|
|
@@ -104758,7 +104822,7 @@ exports.SuperfluidGovernanceIIUpgradabilityTester__factory = void 0;
|
|
|
104758
104822
|
var SuperfluidGovernanceIIUpgradabilityTester__factory_1 = require("./SuperfluidGovernanceIIUpgradabilityTester__factory");
|
|
104759
104823
|
Object.defineProperty(exports, "SuperfluidGovernanceIIUpgradabilityTester__factory", { enumerable: true, get: function () { return SuperfluidGovernanceIIUpgradabilityTester__factory_1.SuperfluidGovernanceIIUpgradabilityTester__factory; } });
|
|
104760
104824
|
|
|
104761
|
-
},{"./SuperfluidGovernanceIIUpgradabilityTester__factory":
|
|
104825
|
+
},{"./SuperfluidGovernanceIIUpgradabilityTester__factory":347}],349:[function(require,module,exports){
|
|
104762
104826
|
"use strict";
|
|
104763
104827
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
104764
104828
|
exports.SuperfluidMock__factory = void 0;
|
|
@@ -106266,7 +106330,7 @@ exports.SuperfluidMock__factory = SuperfluidMock__factory;
|
|
|
106266
106330
|
SuperfluidMock__factory.bytecode = _bytecode;
|
|
106267
106331
|
SuperfluidMock__factory.abi = _abi;
|
|
106268
106332
|
|
|
106269
|
-
},{"ethers":153}],
|
|
106333
|
+
},{"ethers":153}],350:[function(require,module,exports){
|
|
106270
106334
|
"use strict";
|
|
106271
106335
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
106272
106336
|
exports.SuperfluidUpgradabilityTester__factory = void 0;
|
|
@@ -107642,7 +107706,7 @@ exports.SuperfluidUpgradabilityTester__factory = SuperfluidUpgradabilityTester__
|
|
|
107642
107706
|
SuperfluidUpgradabilityTester__factory.bytecode = _bytecode;
|
|
107643
107707
|
SuperfluidUpgradabilityTester__factory.abi = _abi;
|
|
107644
107708
|
|
|
107645
|
-
},{"ethers":153}],
|
|
107709
|
+
},{"ethers":153}],351:[function(require,module,exports){
|
|
107646
107710
|
"use strict";
|
|
107647
107711
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
107648
107712
|
exports.SuperfluidUpgradabilityTester__factory = exports.SuperfluidMock__factory = void 0;
|
|
@@ -107654,7 +107718,7 @@ Object.defineProperty(exports, "SuperfluidMock__factory", { enumerable: true, ge
|
|
|
107654
107718
|
var SuperfluidUpgradabilityTester__factory_1 = require("./SuperfluidUpgradabilityTester__factory");
|
|
107655
107719
|
Object.defineProperty(exports, "SuperfluidUpgradabilityTester__factory", { enumerable: true, get: function () { return SuperfluidUpgradabilityTester__factory_1.SuperfluidUpgradabilityTester__factory; } });
|
|
107656
107720
|
|
|
107657
|
-
},{"./SuperfluidMock__factory":
|
|
107721
|
+
},{"./SuperfluidMock__factory":349,"./SuperfluidUpgradabilityTester__factory":350}],352:[function(require,module,exports){
|
|
107658
107722
|
"use strict";
|
|
107659
107723
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
107660
107724
|
exports.UUPSProxiableMock__factory = void 0;
|
|
@@ -107812,7 +107876,7 @@ exports.UUPSProxiableMock__factory = UUPSProxiableMock__factory;
|
|
|
107812
107876
|
UUPSProxiableMock__factory.bytecode = _bytecode;
|
|
107813
107877
|
UUPSProxiableMock__factory.abi = _abi;
|
|
107814
107878
|
|
|
107815
|
-
},{"ethers":153}],
|
|
107879
|
+
},{"ethers":153}],353:[function(require,module,exports){
|
|
107816
107880
|
"use strict";
|
|
107817
107881
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
107818
107882
|
if (k2 === undefined) k2 = k;
|
|
@@ -107880,7 +107944,7 @@ Object.defineProperty(exports, "SuperfluidDestructorMock__factory", { enumerable
|
|
|
107880
107944
|
var UUPSProxiableMock__factory_1 = require("./UUPSProxiableMock__factory");
|
|
107881
107945
|
Object.defineProperty(exports, "UUPSProxiableMock__factory", { enumerable: true, get: function () { return UUPSProxiableMock__factory_1.UUPSProxiableMock__factory; } });
|
|
107882
107946
|
|
|
107883
|
-
},{"./AgreementMock__factory":
|
|
107947
|
+
},{"./AgreementMock__factory":285,"./CFAAppMocks.sol":291,"./CFALibraryMock.sol":294,"./CFAv1NFTMock.sol":298,"./CFAv1NFTUpgradabilityMock.sol":303,"./CallUtilsMock__factory":304,"./CallUtilsTester__factory":305,"./CustomSuperTokenMock.sol":309,"./ERC777SenderRecipientMock.sol":313,"./FakeSuperfluidMock__factory":314,"./ForwarderMock__factory":315,"./IDASuperAppTester__factory":316,"./IDAv1LibraryMock.sol":319,"./MockSmartWallet__factory":320,"./MultiFlowTesterApp__factory":321,"./StreamRedirector__factory":322,"./SuperAppBaseFlowTester__factory":323,"./SuperAppMocks.sol":332,"./SuperTokenFactoryMock.sol":337,"./SuperTokenLibraryV1Mock.sol":342,"./SuperTokenMock.sol":345,"./SuperfluidDestructorMock__factory":346,"./SuperfluidGovernanceIIMock.sol":348,"./SuperfluidMock.sol":351,"./UUPSProxiableMock__factory":352}],354:[function(require,module,exports){
|
|
107884
107948
|
"use strict";
|
|
107885
107949
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
107886
107950
|
exports.ConstantInflowNFT__factory = void 0;
|
|
@@ -108595,7 +108659,7 @@ exports.ConstantInflowNFT__factory = ConstantInflowNFT__factory;
|
|
|
108595
108659
|
ConstantInflowNFT__factory.bytecode = _bytecode;
|
|
108596
108660
|
ConstantInflowNFT__factory.abi = _abi;
|
|
108597
108661
|
|
|
108598
|
-
},{"ethers":153}],
|
|
108662
|
+
},{"ethers":153}],355:[function(require,module,exports){
|
|
108599
108663
|
"use strict";
|
|
108600
108664
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
108601
108665
|
exports.ConstantOutflowNFT__factory = void 0;
|
|
@@ -109373,7 +109437,7 @@ exports.ConstantOutflowNFT__factory = ConstantOutflowNFT__factory;
|
|
|
109373
109437
|
ConstantOutflowNFT__factory.bytecode = _bytecode;
|
|
109374
109438
|
ConstantOutflowNFT__factory.abi = _abi;
|
|
109375
109439
|
|
|
109376
|
-
},{"ethers":153}],
|
|
109440
|
+
},{"ethers":153}],356:[function(require,module,exports){
|
|
109377
109441
|
"use strict";
|
|
109378
109442
|
/* Autogenerated file. Do not edit manually. */
|
|
109379
109443
|
/* tslint:disable */
|
|
@@ -110000,7 +110064,7 @@ class FlowNFTBase__factory {
|
|
|
110000
110064
|
exports.FlowNFTBase__factory = FlowNFTBase__factory;
|
|
110001
110065
|
FlowNFTBase__factory.abi = _abi;
|
|
110002
110066
|
|
|
110003
|
-
},{"ethers":153}],
|
|
110067
|
+
},{"ethers":153}],357:[function(require,module,exports){
|
|
110004
110068
|
"use strict";
|
|
110005
110069
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
110006
110070
|
exports.FullUpgradableSuperTokenProxy__factory = void 0;
|
|
@@ -110064,7 +110128,7 @@ exports.FullUpgradableSuperTokenProxy__factory = FullUpgradableSuperTokenProxy__
|
|
|
110064
110128
|
FullUpgradableSuperTokenProxy__factory.bytecode = _bytecode;
|
|
110065
110129
|
FullUpgradableSuperTokenProxy__factory.abi = _abi;
|
|
110066
110130
|
|
|
110067
|
-
},{"ethers":153}],
|
|
110131
|
+
},{"ethers":153}],358:[function(require,module,exports){
|
|
110068
110132
|
"use strict";
|
|
110069
110133
|
/* Autogenerated file. Do not edit manually. */
|
|
110070
110134
|
/* tslint:disable */
|
|
@@ -110482,7 +110546,7 @@ class SuperTokenFactoryBase__factory {
|
|
|
110482
110546
|
exports.SuperTokenFactoryBase__factory = SuperTokenFactoryBase__factory;
|
|
110483
110547
|
SuperTokenFactoryBase__factory.abi = _abi;
|
|
110484
110548
|
|
|
110485
|
-
},{"ethers":153}],
|
|
110549
|
+
},{"ethers":153}],359:[function(require,module,exports){
|
|
110486
110550
|
"use strict";
|
|
110487
110551
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
110488
110552
|
exports.SuperTokenFactory__factory = void 0;
|
|
@@ -110949,7 +111013,7 @@ exports.SuperTokenFactory__factory = SuperTokenFactory__factory;
|
|
|
110949
111013
|
SuperTokenFactory__factory.bytecode = _bytecode;
|
|
110950
111014
|
SuperTokenFactory__factory.abi = _abi;
|
|
110951
111015
|
|
|
110952
|
-
},{"ethers":153}],
|
|
111016
|
+
},{"ethers":153}],360:[function(require,module,exports){
|
|
110953
111017
|
"use strict";
|
|
110954
111018
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
110955
111019
|
exports.SuperTokenFactoryBase__factory = exports.SuperTokenFactory__factory = void 0;
|
|
@@ -110961,7 +111025,7 @@ Object.defineProperty(exports, "SuperTokenFactory__factory", { enumerable: true,
|
|
|
110961
111025
|
var SuperTokenFactoryBase__factory_1 = require("./SuperTokenFactoryBase__factory");
|
|
110962
111026
|
Object.defineProperty(exports, "SuperTokenFactoryBase__factory", { enumerable: true, get: function () { return SuperTokenFactoryBase__factory_1.SuperTokenFactoryBase__factory; } });
|
|
110963
111027
|
|
|
110964
|
-
},{"./SuperTokenFactoryBase__factory":
|
|
111028
|
+
},{"./SuperTokenFactoryBase__factory":358,"./SuperTokenFactory__factory":359}],361:[function(require,module,exports){
|
|
110965
111029
|
"use strict";
|
|
110966
111030
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
110967
111031
|
exports.SuperToken__factory = void 0;
|
|
@@ -112917,7 +112981,7 @@ exports.SuperToken__factory = SuperToken__factory;
|
|
|
112917
112981
|
SuperToken__factory.bytecode = _bytecode;
|
|
112918
112982
|
SuperToken__factory.abi = _abi;
|
|
112919
112983
|
|
|
112920
|
-
},{"ethers":153}],
|
|
112984
|
+
},{"ethers":153}],362:[function(require,module,exports){
|
|
112921
112985
|
"use strict";
|
|
112922
112986
|
/* Autogenerated file. Do not edit manually. */
|
|
112923
112987
|
/* tslint:disable */
|
|
@@ -113609,7 +113673,7 @@ class SuperfluidToken__factory {
|
|
|
113609
113673
|
exports.SuperfluidToken__factory = SuperfluidToken__factory;
|
|
113610
113674
|
SuperfluidToken__factory.abi = _abi;
|
|
113611
113675
|
|
|
113612
|
-
},{"ethers":153}],
|
|
113676
|
+
},{"ethers":153}],363:[function(require,module,exports){
|
|
113613
113677
|
"use strict";
|
|
113614
113678
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
113615
113679
|
exports.Superfluid__factory = void 0;
|
|
@@ -114982,7 +115046,7 @@ exports.Superfluid__factory = Superfluid__factory;
|
|
|
114982
115046
|
Superfluid__factory.bytecode = _bytecode;
|
|
114983
115047
|
Superfluid__factory.abi = _abi;
|
|
114984
115048
|
|
|
114985
|
-
},{"ethers":153}],
|
|
115049
|
+
},{"ethers":153}],364:[function(require,module,exports){
|
|
114986
115050
|
"use strict";
|
|
114987
115051
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
114988
115052
|
if (k2 === undefined) k2 = k;
|
|
@@ -115028,7 +115092,7 @@ Object.defineProperty(exports, "Superfluid__factory", { enumerable: true, get: f
|
|
|
115028
115092
|
var SuperfluidToken__factory_1 = require("./SuperfluidToken__factory");
|
|
115029
115093
|
Object.defineProperty(exports, "SuperfluidToken__factory", { enumerable: true, get: function () { return SuperfluidToken__factory_1.SuperfluidToken__factory; } });
|
|
115030
115094
|
|
|
115031
|
-
},{"./ConstantInflowNFT__factory":
|
|
115095
|
+
},{"./ConstantInflowNFT__factory":354,"./ConstantOutflowNFT__factory":355,"./FlowNFTBase__factory":356,"./FullUpgradableSuperTokenProxy__factory":357,"./SuperTokenFactory.sol":360,"./SuperToken__factory":361,"./SuperfluidToken__factory":362,"./Superfluid__factory":363}],365:[function(require,module,exports){
|
|
115032
115096
|
"use strict";
|
|
115033
115097
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
115034
115098
|
exports.PureSuperToken__factory = void 0;
|
|
@@ -115116,7 +115180,7 @@ exports.PureSuperToken__factory = PureSuperToken__factory;
|
|
|
115116
115180
|
PureSuperToken__factory.bytecode = _bytecode;
|
|
115117
115181
|
PureSuperToken__factory.abi = _abi;
|
|
115118
115182
|
|
|
115119
|
-
},{"ethers":153}],
|
|
115183
|
+
},{"ethers":153}],366:[function(require,module,exports){
|
|
115120
115184
|
"use strict";
|
|
115121
115185
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
115122
115186
|
exports.SETHProxy__factory = void 0;
|
|
@@ -115252,7 +115316,7 @@ exports.SETHProxy__factory = SETHProxy__factory;
|
|
|
115252
115316
|
SETHProxy__factory.bytecode = _bytecode;
|
|
115253
115317
|
SETHProxy__factory.abi = _abi;
|
|
115254
115318
|
|
|
115255
|
-
},{"ethers":153}],
|
|
115319
|
+
},{"ethers":153}],367:[function(require,module,exports){
|
|
115256
115320
|
"use strict";
|
|
115257
115321
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
115258
115322
|
exports.SETHProxy__factory = void 0;
|
|
@@ -115262,7 +115326,7 @@ exports.SETHProxy__factory = void 0;
|
|
|
115262
115326
|
var SETHProxy__factory_1 = require("./SETHProxy__factory");
|
|
115263
115327
|
Object.defineProperty(exports, "SETHProxy__factory", { enumerable: true, get: function () { return SETHProxy__factory_1.SETHProxy__factory; } });
|
|
115264
115328
|
|
|
115265
|
-
},{"./SETHProxy__factory":
|
|
115329
|
+
},{"./SETHProxy__factory":366}],368:[function(require,module,exports){
|
|
115266
115330
|
"use strict";
|
|
115267
115331
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
115268
115332
|
if (k2 === undefined) k2 = k;
|
|
@@ -115296,7 +115360,7 @@ exports.sethSol = __importStar(require("./SETH.sol"));
|
|
|
115296
115360
|
var PureSuperToken__factory_1 = require("./PureSuperToken__factory");
|
|
115297
115361
|
Object.defineProperty(exports, "PureSuperToken__factory", { enumerable: true, get: function () { return PureSuperToken__factory_1.PureSuperToken__factory; } });
|
|
115298
115362
|
|
|
115299
|
-
},{"./PureSuperToken__factory":
|
|
115363
|
+
},{"./PureSuperToken__factory":365,"./SETH.sol":367}],369:[function(require,module,exports){
|
|
115300
115364
|
"use strict";
|
|
115301
115365
|
/* Autogenerated file. Do not edit manually. */
|
|
115302
115366
|
/* tslint:disable */
|
|
@@ -115395,7 +115459,7 @@ class UUPSProxiable__factory {
|
|
|
115395
115459
|
exports.UUPSProxiable__factory = UUPSProxiable__factory;
|
|
115396
115460
|
UUPSProxiable__factory.abi = _abi;
|
|
115397
115461
|
|
|
115398
|
-
},{"ethers":153}],
|
|
115462
|
+
},{"ethers":153}],370:[function(require,module,exports){
|
|
115399
115463
|
"use strict";
|
|
115400
115464
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
115401
115465
|
exports.UUPSProxy__factory = void 0;
|
|
@@ -115460,7 +115524,7 @@ exports.UUPSProxy__factory = UUPSProxy__factory;
|
|
|
115460
115524
|
UUPSProxy__factory.bytecode = _bytecode;
|
|
115461
115525
|
UUPSProxy__factory.abi = _abi;
|
|
115462
115526
|
|
|
115463
|
-
},{"ethers":153}],
|
|
115527
|
+
},{"ethers":153}],371:[function(require,module,exports){
|
|
115464
115528
|
"use strict";
|
|
115465
115529
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
115466
115530
|
exports.UUPSProxy__factory = exports.UUPSProxiable__factory = void 0;
|
|
@@ -115472,7 +115536,7 @@ Object.defineProperty(exports, "UUPSProxiable__factory", { enumerable: true, get
|
|
|
115472
115536
|
var UUPSProxy__factory_1 = require("./UUPSProxy__factory");
|
|
115473
115537
|
Object.defineProperty(exports, "UUPSProxy__factory", { enumerable: true, get: function () { return UUPSProxy__factory_1.UUPSProxy__factory; } });
|
|
115474
115538
|
|
|
115475
|
-
},{"./UUPSProxiable__factory":
|
|
115539
|
+
},{"./UUPSProxiable__factory":369,"./UUPSProxy__factory":370}],372:[function(require,module,exports){
|
|
115476
115540
|
"use strict";
|
|
115477
115541
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
115478
115542
|
exports.BatchLiquidator__factory = void 0;
|
|
@@ -115609,7 +115673,7 @@ exports.BatchLiquidator__factory = BatchLiquidator__factory;
|
|
|
115609
115673
|
BatchLiquidator__factory.bytecode = _bytecode;
|
|
115610
115674
|
BatchLiquidator__factory.abi = _abi;
|
|
115611
115675
|
|
|
115612
|
-
},{"ethers":153}],
|
|
115676
|
+
},{"ethers":153}],373:[function(require,module,exports){
|
|
115613
115677
|
"use strict";
|
|
115614
115678
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
115615
115679
|
exports.CFAv1Forwarder__factory = void 0;
|
|
@@ -116120,7 +116184,7 @@ exports.CFAv1Forwarder__factory = CFAv1Forwarder__factory;
|
|
|
116120
116184
|
CFAv1Forwarder__factory.bytecode = _bytecode;
|
|
116121
116185
|
CFAv1Forwarder__factory.abi = _abi;
|
|
116122
116186
|
|
|
116123
|
-
},{"ethers":153}],
|
|
116187
|
+
},{"ethers":153}],374:[function(require,module,exports){
|
|
116124
116188
|
"use strict";
|
|
116125
116189
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
116126
116190
|
exports.Resolver__factory = void 0;
|
|
@@ -116472,7 +116536,7 @@ exports.Resolver__factory = Resolver__factory;
|
|
|
116472
116536
|
Resolver__factory.bytecode = _bytecode;
|
|
116473
116537
|
Resolver__factory.abi = _abi;
|
|
116474
116538
|
|
|
116475
|
-
},{"ethers":153}],
|
|
116539
|
+
},{"ethers":153}],375:[function(require,module,exports){
|
|
116476
116540
|
"use strict";
|
|
116477
116541
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
116478
116542
|
exports.SuperUpgrader__factory = void 0;
|
|
@@ -116913,7 +116977,7 @@ exports.SuperUpgrader__factory = SuperUpgrader__factory;
|
|
|
116913
116977
|
SuperUpgrader__factory.bytecode = _bytecode;
|
|
116914
116978
|
SuperUpgrader__factory.abi = _abi;
|
|
116915
116979
|
|
|
116916
|
-
},{"ethers":153}],
|
|
116980
|
+
},{"ethers":153}],376:[function(require,module,exports){
|
|
116917
116981
|
"use strict";
|
|
116918
116982
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
116919
116983
|
exports.SuperfluidFrameworkDeployer__factory = void 0;
|
|
@@ -117517,7 +117581,7 @@ exports.SuperfluidFrameworkDeployer__factory = SuperfluidFrameworkDeployer__fact
|
|
|
117517
117581
|
SuperfluidFrameworkDeployer__factory.bytecode = _bytecode;
|
|
117518
117582
|
SuperfluidFrameworkDeployer__factory.abi = _abi;
|
|
117519
117583
|
|
|
117520
|
-
},{"ethers":153}],
|
|
117584
|
+
},{"ethers":153}],377:[function(require,module,exports){
|
|
117521
117585
|
"use strict";
|
|
117522
117586
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
117523
117587
|
exports.SuperfluidFrameworkDeploymentSteps__factory = void 0;
|
|
@@ -117786,7 +117850,7 @@ exports.SuperfluidFrameworkDeploymentSteps__factory = SuperfluidFrameworkDeploym
|
|
|
117786
117850
|
SuperfluidFrameworkDeploymentSteps__factory.bytecode = _bytecode;
|
|
117787
117851
|
SuperfluidFrameworkDeploymentSteps__factory.abi = _abi;
|
|
117788
117852
|
|
|
117789
|
-
},{"ethers":153}],
|
|
117853
|
+
},{"ethers":153}],378:[function(require,module,exports){
|
|
117790
117854
|
"use strict";
|
|
117791
117855
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
117792
117856
|
exports.SuperfluidLoader__factory = void 0;
|
|
@@ -117882,7 +117946,7 @@ exports.SuperfluidLoader__factory = SuperfluidLoader__factory;
|
|
|
117882
117946
|
SuperfluidLoader__factory.bytecode = _bytecode;
|
|
117883
117947
|
SuperfluidLoader__factory.abi = _abi;
|
|
117884
117948
|
|
|
117885
|
-
},{"ethers":153}],
|
|
117949
|
+
},{"ethers":153}],379:[function(require,module,exports){
|
|
117886
117950
|
"use strict";
|
|
117887
117951
|
/* Autogenerated file. Do not edit manually. */
|
|
117888
117952
|
/* tslint:disable */
|
|
@@ -118067,7 +118131,7 @@ class ITOGAv1__factory {
|
|
|
118067
118131
|
exports.ITOGAv1__factory = ITOGAv1__factory;
|
|
118068
118132
|
ITOGAv1__factory.abi = _abi;
|
|
118069
118133
|
|
|
118070
|
-
},{"ethers":153}],
|
|
118134
|
+
},{"ethers":153}],380:[function(require,module,exports){
|
|
118071
118135
|
"use strict";
|
|
118072
118136
|
/* Autogenerated file. Do not edit manually. */
|
|
118073
118137
|
/* tslint:disable */
|
|
@@ -118284,7 +118348,7 @@ class ITOGAv2__factory {
|
|
|
118284
118348
|
exports.ITOGAv2__factory = ITOGAv2__factory;
|
|
118285
118349
|
ITOGAv2__factory.abi = _abi;
|
|
118286
118350
|
|
|
118287
|
-
},{"ethers":153}],
|
|
118351
|
+
},{"ethers":153}],381:[function(require,module,exports){
|
|
118288
118352
|
"use strict";
|
|
118289
118353
|
/* Autogenerated file. Do not edit manually. */
|
|
118290
118354
|
/* tslint:disable */
|
|
@@ -118488,7 +118552,7 @@ class ITOGAv3__factory {
|
|
|
118488
118552
|
exports.ITOGAv3__factory = ITOGAv3__factory;
|
|
118489
118553
|
ITOGAv3__factory.abi = _abi;
|
|
118490
118554
|
|
|
118491
|
-
},{"ethers":153}],
|
|
118555
|
+
},{"ethers":153}],382:[function(require,module,exports){
|
|
118492
118556
|
"use strict";
|
|
118493
118557
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
118494
118558
|
exports.TOGA__factory = void 0;
|
|
@@ -118782,7 +118846,7 @@ exports.TOGA__factory = TOGA__factory;
|
|
|
118782
118846
|
TOGA__factory.bytecode = _bytecode;
|
|
118783
118847
|
TOGA__factory.abi = _abi;
|
|
118784
118848
|
|
|
118785
|
-
},{"ethers":153}],
|
|
118849
|
+
},{"ethers":153}],383:[function(require,module,exports){
|
|
118786
118850
|
"use strict";
|
|
118787
118851
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
118788
118852
|
exports.TOGA__factory = exports.ITOGAv3__factory = exports.ITOGAv2__factory = exports.ITOGAv1__factory = void 0;
|
|
@@ -118798,7 +118862,7 @@ Object.defineProperty(exports, "ITOGAv3__factory", { enumerable: true, get: func
|
|
|
118798
118862
|
var TOGA__factory_1 = require("./TOGA__factory");
|
|
118799
118863
|
Object.defineProperty(exports, "TOGA__factory", { enumerable: true, get: function () { return TOGA__factory_1.TOGA__factory; } });
|
|
118800
118864
|
|
|
118801
|
-
},{"./ITOGAv1__factory":
|
|
118865
|
+
},{"./ITOGAv1__factory":379,"./ITOGAv2__factory":380,"./ITOGAv3__factory":381,"./TOGA__factory":382}],384:[function(require,module,exports){
|
|
118802
118866
|
"use strict";
|
|
118803
118867
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
118804
118868
|
exports.TestGovernance__factory = void 0;
|
|
@@ -119869,7 +119933,7 @@ exports.TestGovernance__factory = TestGovernance__factory;
|
|
|
119869
119933
|
TestGovernance__factory.bytecode = _bytecode;
|
|
119870
119934
|
TestGovernance__factory.abi = _abi;
|
|
119871
119935
|
|
|
119872
|
-
},{"ethers":153}],
|
|
119936
|
+
},{"ethers":153}],385:[function(require,module,exports){
|
|
119873
119937
|
"use strict";
|
|
119874
119938
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
119875
119939
|
exports.TestResolver__factory = void 0;
|
|
@@ -120240,7 +120304,7 @@ exports.TestResolver__factory = TestResolver__factory;
|
|
|
120240
120304
|
TestResolver__factory.bytecode = _bytecode;
|
|
120241
120305
|
TestResolver__factory.abi = _abi;
|
|
120242
120306
|
|
|
120243
|
-
},{"ethers":153}],
|
|
120307
|
+
},{"ethers":153}],386:[function(require,module,exports){
|
|
120244
120308
|
"use strict";
|
|
120245
120309
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
120246
120310
|
exports.TestToken__factory = void 0;
|
|
@@ -120604,7 +120668,7 @@ exports.TestToken__factory = TestToken__factory;
|
|
|
120604
120668
|
TestToken__factory.bytecode = _bytecode;
|
|
120605
120669
|
TestToken__factory.abi = _abi;
|
|
120606
120670
|
|
|
120607
|
-
},{"ethers":153}],
|
|
120671
|
+
},{"ethers":153}],387:[function(require,module,exports){
|
|
120608
120672
|
"use strict";
|
|
120609
120673
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
120610
120674
|
if (k2 === undefined) k2 = k;
|
|
@@ -120656,7 +120720,7 @@ Object.defineProperty(exports, "TestResolver__factory", { enumerable: true, get:
|
|
|
120656
120720
|
var TestToken__factory_1 = require("./TestToken__factory");
|
|
120657
120721
|
Object.defineProperty(exports, "TestToken__factory", { enumerable: true, get: function () { return TestToken__factory_1.TestToken__factory; } });
|
|
120658
120722
|
|
|
120659
|
-
},{"./BatchLiquidator__factory":
|
|
120723
|
+
},{"./BatchLiquidator__factory":372,"./CFAv1Forwarder__factory":373,"./Resolver__factory":374,"./SuperUpgrader__factory":375,"./SuperfluidFrameworkDeployer__factory":376,"./SuperfluidFrameworkDeploymentSteps__factory":377,"./SuperfluidLoader__factory":378,"./TOGA.sol":383,"./TestGovernance__factory":384,"./TestResolver__factory":385,"./TestToken__factory":386}],388:[function(require,module,exports){
|
|
120660
120724
|
"use strict";
|
|
120661
120725
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
120662
120726
|
if (k2 === undefined) k2 = k;
|
|
@@ -120689,7 +120753,7 @@ exports.contracts = exports.openzeppelin = void 0;
|
|
|
120689
120753
|
exports.openzeppelin = __importStar(require("./@openzeppelin"));
|
|
120690
120754
|
exports.contracts = __importStar(require("./contracts"));
|
|
120691
120755
|
|
|
120692
|
-
},{"./@openzeppelin":236,"./contracts":
|
|
120756
|
+
},{"./@openzeppelin":236,"./contracts":250}],389:[function(require,module,exports){
|
|
120693
120757
|
"use strict";
|
|
120694
120758
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
120695
120759
|
if (k2 === undefined) k2 = k;
|
|
@@ -120715,9 +120779,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
120715
120779
|
return result;
|
|
120716
120780
|
};
|
|
120717
120781
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
120718
|
-
exports.
|
|
120719
|
-
exports.
|
|
120720
|
-
exports.TOGA__factory = exports.ITOGAv3__factory = exports.ITOGAv2__factory = exports.ITOGAv1__factory = exports.TestToken__factory = exports.TestResolver__factory = exports.TestGovernance__factory = exports.SuperUpgrader__factory = exports.SuperfluidLoader__factory = exports.SuperfluidFrameworkDeploymentSteps__factory = exports.SuperfluidFrameworkDeployer__factory = exports.Resolver__factory = exports.CFAv1Forwarder__factory = exports.BatchLiquidator__factory = exports.UUPSProxy__factory = exports.UUPSProxiable__factory = exports.SETHProxy__factory = exports.PureSuperToken__factory = exports.SuperTokenFactoryBase__factory = exports.SuperTokenFactory__factory = exports.SuperToken__factory = exports.SuperfluidToken__factory = exports.Superfluid__factory = exports.FullUpgradableSuperTokenProxy__factory = exports.FlowNFTBase__factory = exports.ConstantOutflowNFT__factory = exports.ConstantInflowNFT__factory = exports.UUPSProxiableMock__factory = exports.SuperTokenStorageLayoutTester__factory = exports.SuperTokenMock__factory = exports.SuperTokenLibraryIDASuperAppMock__factory = exports.SuperTokenLibraryIDAMock__factory = exports.SuperTokenLibraryCFASuperAppMock__factory = exports.SuperTokenLibraryCFAMock__factory = exports.SuperTokenFactoryUpdateLogicContractsTester__factory = exports.SuperTokenFactoryStorageLayoutTester__factory = exports.SuperTokenFactoryMock42__factory = exports.SuperTokenFactoryMock__factory = void 0;
|
|
120782
|
+
exports.TokenInfo__factory = exports.ISETHCustom__factory = exports.ISETH__factory = exports.IPureSuperTokenCustom__factory = exports.IPureSuperToken__factory = exports.ERC20WithTokenInfo__factory = exports.ISuperTokenFactory__factory = exports.ISuperToken__factory = exports.ISuperfluidToken__factory = exports.ISuperfluidGovernance__factory = exports.ISuperfluid__factory = exports.ISuperApp__factory = exports.ISuperAgreement__factory = exports.IFlowNFTBase__factory = exports.IConstantOutflowNFT__factory = exports.IConstantInflowNFT__factory = exports.IInstantDistributionAgreementV1__factory = exports.IConstantFlowAgreementV1__factory = exports.IConstantFlowAgreementHook__factory = exports.SuperfluidGovernanceIIProxy__factory = exports.SuperfluidGovernanceII__factory = exports.SuperfluidGovernanceBase__factory = exports.SuperfluidLoaderLibrary__factory = exports.SuperAppBaseFlow__factory = exports.SuperAppBase__factory = exports.InstantDistributionAgreementV1__factory = exports.ConstantFlowAgreementV1__factory = exports.AgreementBase__factory = exports.IERC1820Registry__factory = exports.IERC1820Implementer__factory = exports.IERC165__factory = exports.ERC1820Implementer__factory = exports.ERC165__factory = exports.IERC777Sender__factory = exports.IERC777Recipient__factory = exports.IERC777__factory = exports.IERC721__factory = exports.IERC721Metadata__factory = exports.IERC20__factory = exports.IERC20Metadata__factory = exports.IERC20Permit__factory = exports.ERC20__factory = exports.Initializable__factory = exports.Proxy__factory = exports.Ownable__factory = exports.IAccessControlEnumerable__factory = exports.IAccessControl__factory = exports.AccessControlEnumerable__factory = exports.AccessControl__factory = exports.factories = void 0;
|
|
120783
|
+
exports.SuperfluidMock__factory = exports.SuperfluidGovernanceIIUpgradabilityTester__factory = exports.SuperfluidDestructorMock__factory = exports.SuperAppMockWithRegistrationKey__factory = exports.SuperAppMockUsingDeprecatedRegisterApp__factory = exports.SuperAppMockReturningInvalidCtx__factory = exports.SuperAppMockReturningEmptyCtx__factory = exports.SuperAppMockAux__factory = exports.SuperAppMock2ndLevel__factory = exports.SuperAppMock__factory = exports.SuperAppFactoryMock__factory = exports.SuperAppBaseFlowTester__factory = exports.StreamRedirector__factory = exports.MultiFlowTesterApp__factory = exports.MockSmartWallet__factory = exports.IDAv1LibrarySuperAppMock__factory = exports.IDAv1LibraryMock__factory = exports.IDASuperAppTester__factory = exports.ForwarderMock__factory = exports.FakeSuperfluidMock__factory = exports.ERC777SenderRecipientMock__factory = exports.ERC777RecipientReverting__factory = exports.ERC777RecipientDrainingGas__factory = exports.CustomSuperTokenProxyMock__factory = exports.CustomSuperTokenMock__factory = exports.CustomSuperTokenBaseMock__factory = exports.IFlowNFTBaseMockErrors__factory = exports.FlowNFTBaseStorageLayoutMock__factory = exports.ConstantOutflowNFTStorageLayoutMock__factory = exports.ConstantInflowNFTStorageLayoutMock__factory = exports.NoNFTSuperTokenMock__factory = exports.ConstantOutflowNFTMock__factory = exports.ConstantInflowNFTMock__factory = exports.CFALibrarySuperAppMock__factory = exports.CFALibraryMock__factory = exports.SelfDeletingFlowTestApp__factory = exports.NonClosableOutflowTestApp__factory = exports.FlowExchangeTestApp__factory = exports.ExclusiveInflowTestApp__factory = exports.ClosingOnUpdateFlowTestApp__factory = exports.CallUtilsTester__factory = exports.CallUtilsMock__factory = exports.AgreementMock__factory = exports.SlotsBitmapLibrary__factory = exports.SafeGasLibrary__factory = exports.EventsEmitter__factory = exports.BaseRelayRecipient__factory = exports.IResolver__factory = exports.IRelayRecipient__factory = exports.IMultiSigWallet__factory = void 0;
|
|
120784
|
+
exports.TOGA__factory = exports.ITOGAv3__factory = exports.ITOGAv2__factory = exports.ITOGAv1__factory = exports.TestToken__factory = exports.TestResolver__factory = exports.TestGovernance__factory = exports.SuperUpgrader__factory = exports.SuperfluidLoader__factory = exports.SuperfluidFrameworkDeploymentSteps__factory = exports.SuperfluidFrameworkDeployer__factory = exports.Resolver__factory = exports.CFAv1Forwarder__factory = exports.BatchLiquidator__factory = exports.UUPSProxy__factory = exports.UUPSProxiable__factory = exports.SETHProxy__factory = exports.PureSuperToken__factory = exports.SuperTokenFactoryBase__factory = exports.SuperTokenFactory__factory = exports.SuperToken__factory = exports.SuperfluidToken__factory = exports.Superfluid__factory = exports.FullUpgradableSuperTokenProxy__factory = exports.FlowNFTBase__factory = exports.ConstantOutflowNFT__factory = exports.ConstantInflowNFT__factory = exports.UUPSProxiableMock__factory = exports.SuperTokenStorageLayoutTester__factory = exports.SuperTokenMock__factory = exports.SuperTokenLibraryIDASuperAppMock__factory = exports.SuperTokenLibraryIDAMock__factory = exports.SuperTokenLibraryCFASuperAppMock__factory = exports.SuperTokenLibraryCFAMock__factory = exports.SuperTokenFactoryUpdateLogicContractsTester__factory = exports.SuperTokenFactoryStorageLayoutTester__factory = exports.SuperTokenFactoryMock42__factory = exports.SuperTokenFactoryMock__factory = exports.SuperfluidUpgradabilityTester__factory = void 0;
|
|
120721
120785
|
exports.factories = __importStar(require("./factories"));
|
|
120722
120786
|
var AccessControl__factory_1 = require("./factories/@openzeppelin/contracts/access/AccessControl__factory");
|
|
120723
120787
|
Object.defineProperty(exports, "AccessControl__factory", { enumerable: true, get: function () { return AccessControl__factory_1.AccessControl__factory; } });
|
|
@@ -120771,6 +120835,8 @@ var SuperAppBase__factory_1 = require("./factories/contracts/apps/SuperAppBase__
|
|
|
120771
120835
|
Object.defineProperty(exports, "SuperAppBase__factory", { enumerable: true, get: function () { return SuperAppBase__factory_1.SuperAppBase__factory; } });
|
|
120772
120836
|
var SuperAppBaseFlow__factory_1 = require("./factories/contracts/apps/SuperAppBaseFlow__factory");
|
|
120773
120837
|
Object.defineProperty(exports, "SuperAppBaseFlow__factory", { enumerable: true, get: function () { return SuperAppBaseFlow__factory_1.SuperAppBaseFlow__factory; } });
|
|
120838
|
+
var SuperfluidLoaderLibrary__factory_1 = require("./factories/contracts/apps/SuperfluidLoaderLibrary__factory");
|
|
120839
|
+
Object.defineProperty(exports, "SuperfluidLoaderLibrary__factory", { enumerable: true, get: function () { return SuperfluidLoaderLibrary__factory_1.SuperfluidLoaderLibrary__factory; } });
|
|
120774
120840
|
var SuperfluidGovernanceBase__factory_1 = require("./factories/contracts/gov/SuperfluidGovernanceBase__factory");
|
|
120775
120841
|
Object.defineProperty(exports, "SuperfluidGovernanceBase__factory", { enumerable: true, get: function () { return SuperfluidGovernanceBase__factory_1.SuperfluidGovernanceBase__factory; } });
|
|
120776
120842
|
var SuperfluidGovernanceII__factory_1 = require("./factories/contracts/gov/SuperfluidGovernanceII.sol/SuperfluidGovernanceII__factory");
|
|
@@ -120994,11 +121060,11 @@ Object.defineProperty(exports, "ITOGAv3__factory", { enumerable: true, get: func
|
|
|
120994
121060
|
var TOGA__factory_1 = require("./factories/contracts/utils/TOGA.sol/TOGA__factory");
|
|
120995
121061
|
Object.defineProperty(exports, "TOGA__factory", { enumerable: true, get: function () { return TOGA__factory_1.TOGA__factory; } });
|
|
120996
121062
|
|
|
120997
|
-
},{"./factories":387,"./factories/@openzeppelin/contracts/access/AccessControlEnumerable__factory":202,"./factories/@openzeppelin/contracts/access/AccessControl__factory":203,"./factories/@openzeppelin/contracts/access/IAccessControlEnumerable__factory":204,"./factories/@openzeppelin/contracts/access/IAccessControl__factory":205,"./factories/@openzeppelin/contracts/access/Ownable__factory":206,"./factories/@openzeppelin/contracts/proxy/Proxy__factory":209,"./factories/@openzeppelin/contracts/proxy/utils/Initializable__factory":211,"./factories/@openzeppelin/contracts/token/ERC20/ERC20__factory":213,"./factories/@openzeppelin/contracts/token/ERC20/IERC20__factory":214,"./factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory":215,"./factories/@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol/IERC20Permit__factory":216,"./factories/@openzeppelin/contracts/token/ERC721/IERC721__factory":220,"./factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory":221,"./factories/@openzeppelin/contracts/token/ERC777/IERC777Recipient__factory":224,"./factories/@openzeppelin/contracts/token/ERC777/IERC777Sender__factory":225,"./factories/@openzeppelin/contracts/token/ERC777/IERC777__factory":226,"./factories/@openzeppelin/contracts/utils/introspection/ERC165__factory":230,"./factories/@openzeppelin/contracts/utils/introspection/ERC1820Implementer__factory":231,"./factories/@openzeppelin/contracts/utils/introspection/IERC165__factory":232,"./factories/@openzeppelin/contracts/utils/introspection/IERC1820Implementer__factory":233,"./factories/@openzeppelin/contracts/utils/introspection/IERC1820Registry__factory":234,"./factories/contracts/agreements/AgreementBase__factory":237,"./factories/contracts/agreements/ConstantFlowAgreementV1__factory":238,"./factories/contracts/agreements/InstantDistributionAgreementV1__factory":239,"./factories/contracts/apps/SuperAppBaseFlow__factory":241,"./factories/contracts/apps/SuperAppBase__factory":242,"./factories/contracts/gov/SuperfluidGovernanceBase__factory":244,"./factories/contracts/gov/SuperfluidGovernanceII.sol/SuperfluidGovernanceIIProxy__factory":245,"./factories/contracts/gov/SuperfluidGovernanceII.sol/SuperfluidGovernanceII__factory":246,"./factories/contracts/interfaces/agreements/IConstantFlowAgreementHook__factory":250,"./factories/contracts/interfaces/agreements/IConstantFlowAgreementV1__factory":251,"./factories/contracts/interfaces/agreements/IInstantDistributionAgreementV1__factory":252,"./factories/contracts/interfaces/superfluid/IConstantInflowNFT__factory":255,"./factories/contracts/interfaces/superfluid/IConstantOutflowNFT__factory":256,"./factories/contracts/interfaces/superfluid/IFlowNFTBase__factory":257,"./factories/contracts/interfaces/superfluid/ISuperAgreement__factory":258,"./factories/contracts/interfaces/superfluid/ISuperApp__factory":259,"./factories/contracts/interfaces/superfluid/ISuperTokenFactory__factory":260,"./factories/contracts/interfaces/superfluid/ISuperToken__factory":261,"./factories/contracts/interfaces/superfluid/ISuperfluidGovernance__factory":262,"./factories/contracts/interfaces/superfluid/ISuperfluidToken__factory":263,"./factories/contracts/interfaces/superfluid/ISuperfluid__factory":264,"./factories/contracts/interfaces/tokens/ERC20WithTokenInfo__factory":266,"./factories/contracts/interfaces/tokens/IPureSuperToken.sol/IPureSuperTokenCustom__factory":267,"./factories/contracts/interfaces/tokens/IPureSuperToken.sol/IPureSuperToken__factory":268,"./factories/contracts/interfaces/tokens/ISETH.sol/ISETHCustom__factory":270,"./factories/contracts/interfaces/tokens/ISETH.sol/ISETH__factory":271,"./factories/contracts/interfaces/tokens/TokenInfo__factory":273,"./factories/contracts/interfaces/utils/IMultiSigWallet__factory":275,"./factories/contracts/interfaces/utils/IRelayRecipient__factory":276,"./factories/contracts/interfaces/utils/IResolver__factory":277,"./factories/contracts/libs/BaseRelayRecipient__factory":279,"./factories/contracts/libs/EventsEmitter__factory":280,"./factories/contracts/libs/SafeGasLibrary__factory":281,"./factories/contracts/libs/SlotsBitmapLibrary__factory":282,"./factories/contracts/mocks/AgreementMock__factory":284,"./factories/contracts/mocks/CFAAppMocks.sol/ClosingOnUpdateFlowTestApp__factory":285,"./factories/contracts/mocks/CFAAppMocks.sol/ExclusiveInflowTestApp__factory":286,"./factories/contracts/mocks/CFAAppMocks.sol/FlowExchangeTestApp__factory":287,"./factories/contracts/mocks/CFAAppMocks.sol/NonClosableOutflowTestApp__factory":288,"./factories/contracts/mocks/CFAAppMocks.sol/SelfDeletingFlowTestApp__factory":289,"./factories/contracts/mocks/CFALibraryMock.sol/CFALibraryMock__factory":291,"./factories/contracts/mocks/CFALibraryMock.sol/CFALibrarySuperAppMock__factory":292,"./factories/contracts/mocks/CFAv1NFTMock.sol/ConstantInflowNFTMock__factory":294,"./factories/contracts/mocks/CFAv1NFTMock.sol/ConstantOutflowNFTMock__factory":295,"./factories/contracts/mocks/CFAv1NFTMock.sol/NoNFTSuperTokenMock__factory":296,"./factories/contracts/mocks/CFAv1NFTUpgradabilityMock.sol/ConstantInflowNFTStorageLayoutMock__factory":298,"./factories/contracts/mocks/CFAv1NFTUpgradabilityMock.sol/ConstantOutflowNFTStorageLayoutMock__factory":299,"./factories/contracts/mocks/CFAv1NFTUpgradabilityMock.sol/FlowNFTBaseStorageLayoutMock__factory":300,"./factories/contracts/mocks/CFAv1NFTUpgradabilityMock.sol/IFlowNFTBaseMockErrors__factory":301,"./factories/contracts/mocks/CallUtilsMock__factory":303,"./factories/contracts/mocks/CallUtilsTester__factory":304,"./factories/contracts/mocks/CustomSuperTokenMock.sol/CustomSuperTokenBaseMock__factory":305,"./factories/contracts/mocks/CustomSuperTokenMock.sol/CustomSuperTokenMock__factory":306,"./factories/contracts/mocks/CustomSuperTokenMock.sol/CustomSuperTokenProxyMock__factory":307,"./factories/contracts/mocks/ERC777SenderRecipientMock.sol/ERC777RecipientDrainingGas__factory":309,"./factories/contracts/mocks/ERC777SenderRecipientMock.sol/ERC777RecipientReverting__factory":310,"./factories/contracts/mocks/ERC777SenderRecipientMock.sol/ERC777SenderRecipientMock__factory":311,"./factories/contracts/mocks/FakeSuperfluidMock__factory":313,"./factories/contracts/mocks/ForwarderMock__factory":314,"./factories/contracts/mocks/IDASuperAppTester__factory":315,"./factories/contracts/mocks/IDAv1LibraryMock.sol/IDAv1LibraryMock__factory":316,"./factories/contracts/mocks/IDAv1LibraryMock.sol/IDAv1LibrarySuperAppMock__factory":317,"./factories/contracts/mocks/MockSmartWallet__factory":319,"./factories/contracts/mocks/MultiFlowTesterApp__factory":320,"./factories/contracts/mocks/StreamRedirector__factory":321,"./factories/contracts/mocks/SuperAppBaseFlowTester__factory":322,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppFactoryMock__factory":323,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMock2ndLevel__factory":324,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMockAux__factory":325,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMockReturningEmptyCtx__factory":326,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMockReturningInvalidCtx__factory":327,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMockUsingDeprecatedRegisterApp__factory":328,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMockWithRegistrationKey__factory":329,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMock__factory":330,"./factories/contracts/mocks/SuperTokenFactoryMock.sol/SuperTokenFactoryMock42__factory":332,"./factories/contracts/mocks/SuperTokenFactoryMock.sol/SuperTokenFactoryMock__factory":333,"./factories/contracts/mocks/SuperTokenFactoryMock.sol/SuperTokenFactoryStorageLayoutTester__factory":334,"./factories/contracts/mocks/SuperTokenFactoryMock.sol/SuperTokenFactoryUpdateLogicContractsTester__factory":335,"./factories/contracts/mocks/SuperTokenLibraryV1Mock.sol/SuperTokenLibraryCFAMock__factory":337,"./factories/contracts/mocks/SuperTokenLibraryV1Mock.sol/SuperTokenLibraryCFASuperAppMock__factory":338,"./factories/contracts/mocks/SuperTokenLibraryV1Mock.sol/SuperTokenLibraryIDAMock__factory":339,"./factories/contracts/mocks/SuperTokenLibraryV1Mock.sol/SuperTokenLibraryIDASuperAppMock__factory":340,"./factories/contracts/mocks/SuperTokenMock.sol/SuperTokenMock__factory":342,"./factories/contracts/mocks/SuperTokenMock.sol/SuperTokenStorageLayoutTester__factory":343,"./factories/contracts/mocks/SuperfluidDestructorMock__factory":345,"./factories/contracts/mocks/SuperfluidGovernanceIIMock.sol/SuperfluidGovernanceIIUpgradabilityTester__factory":346,"./factories/contracts/mocks/SuperfluidMock.sol/SuperfluidMock__factory":348,"./factories/contracts/mocks/SuperfluidMock.sol/SuperfluidUpgradabilityTester__factory":349,"./factories/contracts/mocks/UUPSProxiableMock__factory":351,"./factories/contracts/superfluid/ConstantInflowNFT__factory":353,"./factories/contracts/superfluid/ConstantOutflowNFT__factory":354,"./factories/contracts/superfluid/FlowNFTBase__factory":355,"./factories/contracts/superfluid/FullUpgradableSuperTokenProxy__factory":356,"./factories/contracts/superfluid/SuperTokenFactory.sol/SuperTokenFactoryBase__factory":357,"./factories/contracts/superfluid/SuperTokenFactory.sol/SuperTokenFactory__factory":358,"./factories/contracts/superfluid/SuperToken__factory":360,"./factories/contracts/superfluid/SuperfluidToken__factory":361,"./factories/contracts/superfluid/Superfluid__factory":362,"./factories/contracts/tokens/PureSuperToken__factory":364,"./factories/contracts/tokens/SETH.sol/SETHProxy__factory":365,"./factories/contracts/upgradability/UUPSProxiable__factory":368,"./factories/contracts/upgradability/UUPSProxy__factory":369,"./factories/contracts/utils/BatchLiquidator__factory":371,"./factories/contracts/utils/CFAv1Forwarder__factory":372,"./factories/contracts/utils/Resolver__factory":373,"./factories/contracts/utils/SuperUpgrader__factory":374,"./factories/contracts/utils/SuperfluidFrameworkDeployer__factory":375,"./factories/contracts/utils/SuperfluidFrameworkDeploymentSteps__factory":376,"./factories/contracts/utils/SuperfluidLoader__factory":377,"./factories/contracts/utils/TOGA.sol/ITOGAv1__factory":378,"./factories/contracts/utils/TOGA.sol/ITOGAv2__factory":379,"./factories/contracts/utils/TOGA.sol/ITOGAv3__factory":380,"./factories/contracts/utils/TOGA.sol/TOGA__factory":381,"./factories/contracts/utils/TestGovernance__factory":383,"./factories/contracts/utils/TestResolver__factory":384,"./factories/contracts/utils/TestToken__factory":385}],389:[function(require,module,exports){
|
|
121063
|
+
},{"./factories":388,"./factories/@openzeppelin/contracts/access/AccessControlEnumerable__factory":202,"./factories/@openzeppelin/contracts/access/AccessControl__factory":203,"./factories/@openzeppelin/contracts/access/IAccessControlEnumerable__factory":204,"./factories/@openzeppelin/contracts/access/IAccessControl__factory":205,"./factories/@openzeppelin/contracts/access/Ownable__factory":206,"./factories/@openzeppelin/contracts/proxy/Proxy__factory":209,"./factories/@openzeppelin/contracts/proxy/utils/Initializable__factory":211,"./factories/@openzeppelin/contracts/token/ERC20/ERC20__factory":213,"./factories/@openzeppelin/contracts/token/ERC20/IERC20__factory":214,"./factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory":215,"./factories/@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol/IERC20Permit__factory":216,"./factories/@openzeppelin/contracts/token/ERC721/IERC721__factory":220,"./factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory":221,"./factories/@openzeppelin/contracts/token/ERC777/IERC777Recipient__factory":224,"./factories/@openzeppelin/contracts/token/ERC777/IERC777Sender__factory":225,"./factories/@openzeppelin/contracts/token/ERC777/IERC777__factory":226,"./factories/@openzeppelin/contracts/utils/introspection/ERC165__factory":230,"./factories/@openzeppelin/contracts/utils/introspection/ERC1820Implementer__factory":231,"./factories/@openzeppelin/contracts/utils/introspection/IERC165__factory":232,"./factories/@openzeppelin/contracts/utils/introspection/IERC1820Implementer__factory":233,"./factories/@openzeppelin/contracts/utils/introspection/IERC1820Registry__factory":234,"./factories/contracts/agreements/AgreementBase__factory":237,"./factories/contracts/agreements/ConstantFlowAgreementV1__factory":238,"./factories/contracts/agreements/InstantDistributionAgreementV1__factory":239,"./factories/contracts/apps/SuperAppBaseFlow__factory":241,"./factories/contracts/apps/SuperAppBase__factory":242,"./factories/contracts/apps/SuperfluidLoaderLibrary__factory":243,"./factories/contracts/gov/SuperfluidGovernanceBase__factory":245,"./factories/contracts/gov/SuperfluidGovernanceII.sol/SuperfluidGovernanceIIProxy__factory":246,"./factories/contracts/gov/SuperfluidGovernanceII.sol/SuperfluidGovernanceII__factory":247,"./factories/contracts/interfaces/agreements/IConstantFlowAgreementHook__factory":251,"./factories/contracts/interfaces/agreements/IConstantFlowAgreementV1__factory":252,"./factories/contracts/interfaces/agreements/IInstantDistributionAgreementV1__factory":253,"./factories/contracts/interfaces/superfluid/IConstantInflowNFT__factory":256,"./factories/contracts/interfaces/superfluid/IConstantOutflowNFT__factory":257,"./factories/contracts/interfaces/superfluid/IFlowNFTBase__factory":258,"./factories/contracts/interfaces/superfluid/ISuperAgreement__factory":259,"./factories/contracts/interfaces/superfluid/ISuperApp__factory":260,"./factories/contracts/interfaces/superfluid/ISuperTokenFactory__factory":261,"./factories/contracts/interfaces/superfluid/ISuperToken__factory":262,"./factories/contracts/interfaces/superfluid/ISuperfluidGovernance__factory":263,"./factories/contracts/interfaces/superfluid/ISuperfluidToken__factory":264,"./factories/contracts/interfaces/superfluid/ISuperfluid__factory":265,"./factories/contracts/interfaces/tokens/ERC20WithTokenInfo__factory":267,"./factories/contracts/interfaces/tokens/IPureSuperToken.sol/IPureSuperTokenCustom__factory":268,"./factories/contracts/interfaces/tokens/IPureSuperToken.sol/IPureSuperToken__factory":269,"./factories/contracts/interfaces/tokens/ISETH.sol/ISETHCustom__factory":271,"./factories/contracts/interfaces/tokens/ISETH.sol/ISETH__factory":272,"./factories/contracts/interfaces/tokens/TokenInfo__factory":274,"./factories/contracts/interfaces/utils/IMultiSigWallet__factory":276,"./factories/contracts/interfaces/utils/IRelayRecipient__factory":277,"./factories/contracts/interfaces/utils/IResolver__factory":278,"./factories/contracts/libs/BaseRelayRecipient__factory":280,"./factories/contracts/libs/EventsEmitter__factory":281,"./factories/contracts/libs/SafeGasLibrary__factory":282,"./factories/contracts/libs/SlotsBitmapLibrary__factory":283,"./factories/contracts/mocks/AgreementMock__factory":285,"./factories/contracts/mocks/CFAAppMocks.sol/ClosingOnUpdateFlowTestApp__factory":286,"./factories/contracts/mocks/CFAAppMocks.sol/ExclusiveInflowTestApp__factory":287,"./factories/contracts/mocks/CFAAppMocks.sol/FlowExchangeTestApp__factory":288,"./factories/contracts/mocks/CFAAppMocks.sol/NonClosableOutflowTestApp__factory":289,"./factories/contracts/mocks/CFAAppMocks.sol/SelfDeletingFlowTestApp__factory":290,"./factories/contracts/mocks/CFALibraryMock.sol/CFALibraryMock__factory":292,"./factories/contracts/mocks/CFALibraryMock.sol/CFALibrarySuperAppMock__factory":293,"./factories/contracts/mocks/CFAv1NFTMock.sol/ConstantInflowNFTMock__factory":295,"./factories/contracts/mocks/CFAv1NFTMock.sol/ConstantOutflowNFTMock__factory":296,"./factories/contracts/mocks/CFAv1NFTMock.sol/NoNFTSuperTokenMock__factory":297,"./factories/contracts/mocks/CFAv1NFTUpgradabilityMock.sol/ConstantInflowNFTStorageLayoutMock__factory":299,"./factories/contracts/mocks/CFAv1NFTUpgradabilityMock.sol/ConstantOutflowNFTStorageLayoutMock__factory":300,"./factories/contracts/mocks/CFAv1NFTUpgradabilityMock.sol/FlowNFTBaseStorageLayoutMock__factory":301,"./factories/contracts/mocks/CFAv1NFTUpgradabilityMock.sol/IFlowNFTBaseMockErrors__factory":302,"./factories/contracts/mocks/CallUtilsMock__factory":304,"./factories/contracts/mocks/CallUtilsTester__factory":305,"./factories/contracts/mocks/CustomSuperTokenMock.sol/CustomSuperTokenBaseMock__factory":306,"./factories/contracts/mocks/CustomSuperTokenMock.sol/CustomSuperTokenMock__factory":307,"./factories/contracts/mocks/CustomSuperTokenMock.sol/CustomSuperTokenProxyMock__factory":308,"./factories/contracts/mocks/ERC777SenderRecipientMock.sol/ERC777RecipientDrainingGas__factory":310,"./factories/contracts/mocks/ERC777SenderRecipientMock.sol/ERC777RecipientReverting__factory":311,"./factories/contracts/mocks/ERC777SenderRecipientMock.sol/ERC777SenderRecipientMock__factory":312,"./factories/contracts/mocks/FakeSuperfluidMock__factory":314,"./factories/contracts/mocks/ForwarderMock__factory":315,"./factories/contracts/mocks/IDASuperAppTester__factory":316,"./factories/contracts/mocks/IDAv1LibraryMock.sol/IDAv1LibraryMock__factory":317,"./factories/contracts/mocks/IDAv1LibraryMock.sol/IDAv1LibrarySuperAppMock__factory":318,"./factories/contracts/mocks/MockSmartWallet__factory":320,"./factories/contracts/mocks/MultiFlowTesterApp__factory":321,"./factories/contracts/mocks/StreamRedirector__factory":322,"./factories/contracts/mocks/SuperAppBaseFlowTester__factory":323,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppFactoryMock__factory":324,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMock2ndLevel__factory":325,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMockAux__factory":326,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMockReturningEmptyCtx__factory":327,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMockReturningInvalidCtx__factory":328,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMockUsingDeprecatedRegisterApp__factory":329,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMockWithRegistrationKey__factory":330,"./factories/contracts/mocks/SuperAppMocks.sol/SuperAppMock__factory":331,"./factories/contracts/mocks/SuperTokenFactoryMock.sol/SuperTokenFactoryMock42__factory":333,"./factories/contracts/mocks/SuperTokenFactoryMock.sol/SuperTokenFactoryMock__factory":334,"./factories/contracts/mocks/SuperTokenFactoryMock.sol/SuperTokenFactoryStorageLayoutTester__factory":335,"./factories/contracts/mocks/SuperTokenFactoryMock.sol/SuperTokenFactoryUpdateLogicContractsTester__factory":336,"./factories/contracts/mocks/SuperTokenLibraryV1Mock.sol/SuperTokenLibraryCFAMock__factory":338,"./factories/contracts/mocks/SuperTokenLibraryV1Mock.sol/SuperTokenLibraryCFASuperAppMock__factory":339,"./factories/contracts/mocks/SuperTokenLibraryV1Mock.sol/SuperTokenLibraryIDAMock__factory":340,"./factories/contracts/mocks/SuperTokenLibraryV1Mock.sol/SuperTokenLibraryIDASuperAppMock__factory":341,"./factories/contracts/mocks/SuperTokenMock.sol/SuperTokenMock__factory":343,"./factories/contracts/mocks/SuperTokenMock.sol/SuperTokenStorageLayoutTester__factory":344,"./factories/contracts/mocks/SuperfluidDestructorMock__factory":346,"./factories/contracts/mocks/SuperfluidGovernanceIIMock.sol/SuperfluidGovernanceIIUpgradabilityTester__factory":347,"./factories/contracts/mocks/SuperfluidMock.sol/SuperfluidMock__factory":349,"./factories/contracts/mocks/SuperfluidMock.sol/SuperfluidUpgradabilityTester__factory":350,"./factories/contracts/mocks/UUPSProxiableMock__factory":352,"./factories/contracts/superfluid/ConstantInflowNFT__factory":354,"./factories/contracts/superfluid/ConstantOutflowNFT__factory":355,"./factories/contracts/superfluid/FlowNFTBase__factory":356,"./factories/contracts/superfluid/FullUpgradableSuperTokenProxy__factory":357,"./factories/contracts/superfluid/SuperTokenFactory.sol/SuperTokenFactoryBase__factory":358,"./factories/contracts/superfluid/SuperTokenFactory.sol/SuperTokenFactory__factory":359,"./factories/contracts/superfluid/SuperToken__factory":361,"./factories/contracts/superfluid/SuperfluidToken__factory":362,"./factories/contracts/superfluid/Superfluid__factory":363,"./factories/contracts/tokens/PureSuperToken__factory":365,"./factories/contracts/tokens/SETH.sol/SETHProxy__factory":366,"./factories/contracts/upgradability/UUPSProxiable__factory":369,"./factories/contracts/upgradability/UUPSProxy__factory":370,"./factories/contracts/utils/BatchLiquidator__factory":372,"./factories/contracts/utils/CFAv1Forwarder__factory":373,"./factories/contracts/utils/Resolver__factory":374,"./factories/contracts/utils/SuperUpgrader__factory":375,"./factories/contracts/utils/SuperfluidFrameworkDeployer__factory":376,"./factories/contracts/utils/SuperfluidFrameworkDeploymentSteps__factory":377,"./factories/contracts/utils/SuperfluidLoader__factory":378,"./factories/contracts/utils/TOGA.sol/ITOGAv1__factory":379,"./factories/contracts/utils/TOGA.sol/ITOGAv2__factory":380,"./factories/contracts/utils/TOGA.sol/ITOGAv3__factory":381,"./factories/contracts/utils/TOGA.sol/TOGA__factory":382,"./factories/contracts/utils/TestGovernance__factory":384,"./factories/contracts/utils/TestResolver__factory":385,"./factories/contracts/utils/TestToken__factory":386}],390:[function(require,module,exports){
|
|
120998
121064
|
/* eslint-env browser */
|
|
120999
121065
|
module.exports = typeof self == 'object' ? self.FormData : window.FormData;
|
|
121000
121066
|
|
|
121001
|
-
},{}],
|
|
121067
|
+
},{}],391:[function(require,module,exports){
|
|
121002
121068
|
"use strict";
|
|
121003
121069
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
121004
121070
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -121054,7 +121120,7 @@ function createRequestBody(query, variables, operationName, jsonSerializer) {
|
|
|
121054
121120
|
}
|
|
121055
121121
|
exports.default = createRequestBody;
|
|
121056
121122
|
|
|
121057
|
-
},{"./defaultJsonSerializer":
|
|
121123
|
+
},{"./defaultJsonSerializer":392,"extract-files":157,"form-data":390}],392:[function(require,module,exports){
|
|
121058
121124
|
"use strict";
|
|
121059
121125
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
121060
121126
|
exports.defaultJsonSerializer = void 0;
|
|
@@ -121063,7 +121129,7 @@ exports.defaultJsonSerializer = {
|
|
|
121063
121129
|
stringify: JSON.stringify
|
|
121064
121130
|
};
|
|
121065
121131
|
|
|
121066
|
-
},{}],
|
|
121132
|
+
},{}],393:[function(require,module,exports){
|
|
121067
121133
|
"use strict";
|
|
121068
121134
|
var __assign = (this && this.__assign) || function () {
|
|
121069
121135
|
__assign = Object.assign || function(t) {
|
|
@@ -121338,7 +121404,7 @@ function Complete(id) {
|
|
|
121338
121404
|
return new GraphQLWebSocketMessage(COMPLETE, undefined, id);
|
|
121339
121405
|
}
|
|
121340
121406
|
|
|
121341
|
-
},{".":
|
|
121407
|
+
},{".":394,"./types":396}],394:[function(require,module,exports){
|
|
121342
121408
|
"use strict";
|
|
121343
121409
|
var __assign = (this && this.__assign) || function () {
|
|
121344
121410
|
__assign = Object.assign || function(t) {
|
|
@@ -121827,7 +121893,7 @@ function HeadersInstanceToPlainObject(headers) {
|
|
|
121827
121893
|
var graphql_ws_1 = require("./graphql-ws");
|
|
121828
121894
|
Object.defineProperty(exports, "GraphQLWebSocketClient", { enumerable: true, get: function () { return graphql_ws_1.GraphQLWebSocketClient; } });
|
|
121829
121895
|
|
|
121830
|
-
},{"./createRequestBody":
|
|
121896
|
+
},{"./createRequestBody":391,"./defaultJsonSerializer":392,"./graphql-ws":393,"./parseArgs":395,"./types":396,"cross-fetch":133,"graphql/language/parser":174,"graphql/language/printer":176}],395:[function(require,module,exports){
|
|
121831
121897
|
"use strict";
|
|
121832
121898
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
121833
121899
|
exports.parseBatchRequestsExtendedArgs = exports.parseRawRequestExtendedArgs = exports.parseRequestExtendedArgs = exports.parseBatchRequestArgs = exports.parseRawRequestArgs = exports.parseRequestArgs = void 0;
|
|
@@ -121899,7 +121965,7 @@ function parseBatchRequestsExtendedArgs(urlOrOptions, documents, requestHeaders)
|
|
|
121899
121965
|
}
|
|
121900
121966
|
exports.parseBatchRequestsExtendedArgs = parseBatchRequestsExtendedArgs;
|
|
121901
121967
|
|
|
121902
|
-
},{}],
|
|
121968
|
+
},{}],396:[function(require,module,exports){
|
|
121903
121969
|
"use strict";
|
|
121904
121970
|
var __extends = (this && this.__extends) || (function () {
|
|
121905
121971
|
var extendStatics = function (d, b) {
|
|
@@ -121948,7 +122014,7 @@ var ClientError = /** @class */ (function (_super) {
|
|
|
121948
122014
|
}(Error));
|
|
121949
122015
|
exports.ClientError = ClientError;
|
|
121950
122016
|
|
|
121951
|
-
},{}],
|
|
122017
|
+
},{}],397:[function(require,module,exports){
|
|
121952
122018
|
"use strict";
|
|
121953
122019
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
121954
122020
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -122082,7 +122148,7 @@ class BatchCall {
|
|
|
122082
122148
|
}
|
|
122083
122149
|
exports.default = BatchCall;
|
|
122084
122150
|
|
|
122085
|
-
},{"./Host":
|
|
122151
|
+
},{"./Host":402,"./SFError":406,"./utils":461,"@superfluid-finance/ethereum-contracts/build/typechain":389,"ethers":153}],398:[function(require,module,exports){
|
|
122086
122152
|
"use strict";
|
|
122087
122153
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
122088
122154
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -122522,7 +122588,7 @@ class ConstantFlowAgreementV1 {
|
|
|
122522
122588
|
}
|
|
122523
122589
|
exports.default = ConstantFlowAgreementV1;
|
|
122524
122590
|
|
|
122525
|
-
},{"./Host":
|
|
122591
|
+
},{"./Host":402,"./Operation":404,"./SFError":406,"./utils":461,"@superfluid-finance/ethereum-contracts/build/typechain":389,"ethers":153}],399:[function(require,module,exports){
|
|
122526
122592
|
"use strict";
|
|
122527
122593
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
122528
122594
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -122685,7 +122751,7 @@ class ERC20Token {
|
|
|
122685
122751
|
}
|
|
122686
122752
|
exports.default = ERC20Token;
|
|
122687
122753
|
|
|
122688
|
-
},{"./Operation":
|
|
122754
|
+
},{"./Operation":404,"./SFError":406,"./utils":461,"@superfluid-finance/ethereum-contracts/build/typechain":389,"ethers":153}],400:[function(require,module,exports){
|
|
122689
122755
|
"use strict";
|
|
122690
122756
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
122691
122757
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -122985,7 +123051,7 @@ Framework.create = async (options) => {
|
|
|
122985
123051
|
}
|
|
122986
123052
|
};
|
|
122987
123053
|
|
|
122988
|
-
},{"./BatchCall":
|
|
123054
|
+
},{"./BatchCall":397,"./ConstantFlowAgreementV1":398,"./Governance":401,"./Host":402,"./InstantDistributionAgreementV1":403,"./Operation":404,"./Query":405,"./SFError":406,"./SuperToken":407,"./constants":409,"./frameworkHelpers":412,"./utils":461,"@superfluid-finance/ethereum-contracts/build/typechain":389,"ethers":153}],401:[function(require,module,exports){
|
|
122989
123055
|
"use strict";
|
|
122990
123056
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
122991
123057
|
const typechain_1 = require("@superfluid-finance/ethereum-contracts/build/typechain");
|
|
@@ -123065,7 +123131,7 @@ class Governance {
|
|
|
123065
123131
|
}
|
|
123066
123132
|
exports.default = Governance;
|
|
123067
123133
|
|
|
123068
|
-
},{"@superfluid-finance/ethereum-contracts/build/typechain":
|
|
123134
|
+
},{"@superfluid-finance/ethereum-contracts/build/typechain":389,"ethers":153}],402:[function(require,module,exports){
|
|
123069
123135
|
"use strict";
|
|
123070
123136
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
123071
123137
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -123108,7 +123174,7 @@ class Host {
|
|
|
123108
123174
|
}
|
|
123109
123175
|
exports.default = Host;
|
|
123110
123176
|
|
|
123111
|
-
},{"./Operation":
|
|
123177
|
+
},{"./Operation":404,"@superfluid-finance/ethereum-contracts/build/typechain":389,"ethers":153}],403:[function(require,module,exports){
|
|
123112
123178
|
"use strict";
|
|
123113
123179
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
123114
123180
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -123355,7 +123421,7 @@ class InstantDistributionAgreementV1 {
|
|
|
123355
123421
|
}
|
|
123356
123422
|
exports.default = InstantDistributionAgreementV1;
|
|
123357
123423
|
|
|
123358
|
-
},{"./Host":
|
|
123424
|
+
},{"./Host":402,"./SFError":406,"./utils":461,"@superfluid-finance/ethereum-contracts/build/typechain":389,"ethers":153}],404:[function(require,module,exports){
|
|
123359
123425
|
"use strict";
|
|
123360
123426
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
123361
123427
|
const ethers_1 = require("ethers");
|
|
@@ -123429,7 +123495,7 @@ class Operation {
|
|
|
123429
123495
|
}
|
|
123430
123496
|
exports.default = Operation;
|
|
123431
123497
|
|
|
123432
|
-
},{"ethers":153}],
|
|
123498
|
+
},{"ethers":153}],405:[function(require,module,exports){
|
|
123433
123499
|
"use strict";
|
|
123434
123500
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
123435
123501
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -123705,7 +123771,7 @@ const listAllResults = async (pagedQuery) => {
|
|
|
123705
123771
|
};
|
|
123706
123772
|
exports.listAllResults = listAllResults;
|
|
123707
123773
|
|
|
123708
|
-
},{"./ajvValidations.generated":
|
|
123774
|
+
},{"./ajvValidations.generated":408,"./mapGetAllEventsQueryEvents":415,"./pagination":418,"./subgraph/SubgraphClient":419,"./subgraph/queries/getAccountTokenSnapshots.generated":452,"./subgraph/queries/getAllEvents.generated":453,"./subgraph/queries/getIndexSubscriptions.generated":454,"./subgraph/queries/getIndexes.generated":455,"./subgraph/queries/getStreams.generated":456,"./subgraph/queries/getTokens.generated":457,"./utils":461,"lodash":196}],406:[function(require,module,exports){
|
|
123709
123775
|
"use strict";
|
|
123710
123776
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
123711
123777
|
exports.SFError = void 0;
|
|
@@ -123760,7 +123826,7 @@ Caused by: ${miniStringifyCause(cause)}`
|
|
|
123760
123826
|
}
|
|
123761
123827
|
exports.SFError = SFError;
|
|
123762
123828
|
|
|
123763
|
-
},{"./miniSerializeError":
|
|
123829
|
+
},{"./miniSerializeError":416}],407:[function(require,module,exports){
|
|
123764
123830
|
"use strict";
|
|
123765
123831
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
123766
123832
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -124409,7 +124475,7 @@ class NativeAssetSuperToken extends SuperToken {
|
|
|
124409
124475
|
}
|
|
124410
124476
|
exports.NativeAssetSuperToken = NativeAssetSuperToken;
|
|
124411
124477
|
|
|
124412
|
-
},{"./ConstantFlowAgreementV1":
|
|
124478
|
+
},{"./ConstantFlowAgreementV1":398,"./ERC20Token":399,"./Governance":401,"./InstantDistributionAgreementV1":403,"./Operation":404,"./SFError":406,"./constants":409,"./frameworkHelpers":412,"./utils":461,"@superfluid-finance/ethereum-contracts/build/typechain":389,"ethers":153}],408:[function(require,module,exports){
|
|
124413
124479
|
"use strict";
|
|
124414
124480
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
124415
124481
|
exports.validateStreamRequest = exports.validateIndexSubscriptionRequest = exports.validateAccountTokenSnapshotRequest = exports.validateIndexRequest = exports.validateEventRequest = exports.validateSuperTokenRequest = void 0;
|
|
@@ -124843,7 +124909,7 @@ function validate15(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
124843
124909
|
return errors === 0;
|
|
124844
124910
|
}
|
|
124845
124911
|
|
|
124846
|
-
},{}],
|
|
124912
|
+
},{}],409:[function(require,module,exports){
|
|
124847
124913
|
"use strict";
|
|
124848
124914
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
124849
124915
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -124899,11 +124965,11 @@ const getAddressesData = (chainId) => {
|
|
|
124899
124965
|
exports.chainIdToResolverDataMap = new Map(metadata_1.default.networks.map((x) => [x.chainId, getAddressesData(x.chainId)]));
|
|
124900
124966
|
exports.networkNameToChainIdMap = new Map(metadata_1.default.networks.map((x) => [x.name, x.chainId]));
|
|
124901
124967
|
|
|
124902
|
-
},{"./defaultSubgraphReleaseTag.json":
|
|
124968
|
+
},{"./defaultSubgraphReleaseTag.json":410,"@superfluid-finance/metadata":125}],410:[function(require,module,exports){
|
|
124903
124969
|
module.exports={
|
|
124904
124970
|
"value": "dev"
|
|
124905
124971
|
}
|
|
124906
|
-
},{}],
|
|
124972
|
+
},{}],411:[function(require,module,exports){
|
|
124907
124973
|
"use strict";
|
|
124908
124974
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
124909
124975
|
exports.FlowUpdateType = void 0;
|
|
@@ -124914,7 +124980,7 @@ var FlowUpdateType;
|
|
|
124914
124980
|
FlowUpdateType[FlowUpdateType["Terminate"] = 2] = "Terminate";
|
|
124915
124981
|
})(FlowUpdateType = exports.FlowUpdateType || (exports.FlowUpdateType = {}));
|
|
124916
124982
|
|
|
124917
|
-
},{}],
|
|
124983
|
+
},{}],412:[function(require,module,exports){
|
|
124918
124984
|
"use strict";
|
|
124919
124985
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
124920
124986
|
exports.getNetworkName = exports.getSubgraphQueriesEndpoint = exports.validateFrameworkConstructorOptions = void 0;
|
|
@@ -124975,7 +125041,7 @@ const getNetworkName = (options) => {
|
|
|
124975
125041
|
};
|
|
124976
125042
|
exports.getNetworkName = getNetworkName;
|
|
124977
125043
|
|
|
124978
|
-
},{"./SFError":
|
|
125044
|
+
},{"./SFError":406,"./constants":409,"./utils":461}],413:[function(require,module,exports){
|
|
124979
125045
|
"use strict";
|
|
124980
125046
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
124981
125047
|
if (k2 === undefined) k2 = k;
|
|
@@ -125061,11 +125127,11 @@ __exportStar(require("./subgraph/mappedSubgraphTypes"), exports);
|
|
|
125061
125127
|
__exportStar(require("./SFError"), exports);
|
|
125062
125128
|
__exportStar(require("./subgraph/subgraphQueryHandler"), exports);
|
|
125063
125129
|
|
|
125064
|
-
},{"./BatchCall":
|
|
125130
|
+
},{"./BatchCall":397,"./ConstantFlowAgreementV1":398,"./ERC20Token":399,"./Framework":400,"./Governance":401,"./Host":402,"./InstantDistributionAgreementV1":403,"./Operation":404,"./Query":405,"./SFError":406,"./SuperToken":407,"./constants":409,"./events":411,"./interfaces":414,"./ordering":417,"./pagination":418,"./subgraph/entities/account/account":420,"./subgraph/entities/accountTokenSnapshot/accountTokenSnapshot":422,"./subgraph/entities/accountTokenSnapshotLog/accountTokenSnapshotLog":424,"./subgraph/entities/flowOperator/flowOperators":427,"./subgraph/entities/index/index":428,"./subgraph/entities/indexSubscription/indexSubscription":430,"./subgraph/entities/stream/stream":432,"./subgraph/entities/streamPeriod/streamPeriod":434,"./subgraph/entities/token/token":436,"./subgraph/entities/tokenStatistic/tokenStatistic":438,"./subgraph/entities/tokenStatisticLog/tokenStatisticLog":440,"./subgraph/events/events":443,"./subgraph/events/flowUpdatedEvent":444,"./subgraph/events/indexUpdatedEvent":445,"./subgraph/events/subscriptionUnitsUpdatedEvents":446,"./subgraph/events/transferEvents":447,"./subgraph/mappedSubgraphTypes":448,"./subgraph/meta/meta":450,"./subgraph/schema.generated":458,"./subgraph/subgraphQueryHandler":459,"./types":460,"./utils":461,"@superfluid-finance/ethereum-contracts/build/typechain":389}],414:[function(require,module,exports){
|
|
125065
125131
|
"use strict";
|
|
125066
125132
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
125067
125133
|
|
|
125068
|
-
},{}],
|
|
125134
|
+
},{}],415:[function(require,module,exports){
|
|
125069
125135
|
"use strict";
|
|
125070
125136
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
125071
125137
|
if (k2 === undefined) k2 = k;
|
|
@@ -125793,7 +125859,7 @@ const mapNumberToFlowUpdateType = (type) => {
|
|
|
125793
125859
|
}
|
|
125794
125860
|
};
|
|
125795
125861
|
|
|
125796
|
-
},{"./events":
|
|
125862
|
+
},{"./events":411,"./utils":461}],416:[function(require,module,exports){
|
|
125797
125863
|
"use strict";
|
|
125798
125864
|
/**
|
|
125799
125865
|
* Credit of everything here goes to Redux Toolkit (RTK).
|
|
@@ -125823,9 +125889,9 @@ const miniSerializeError = (value) => {
|
|
|
125823
125889
|
};
|
|
125824
125890
|
exports.miniSerializeError = miniSerializeError;
|
|
125825
125891
|
|
|
125826
|
-
},{}],
|
|
125827
|
-
arguments[4][
|
|
125828
|
-
},{"dup":
|
|
125892
|
+
},{}],417:[function(require,module,exports){
|
|
125893
|
+
arguments[4][414][0].apply(exports,arguments)
|
|
125894
|
+
},{"dup":414}],418:[function(require,module,exports){
|
|
125829
125895
|
"use strict";
|
|
125830
125896
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
125831
125897
|
exports.takePlusOne = exports.nextLastIdPaging = exports.nextPageNumberPaging = exports.nextSkipPaging = exports.createLastIdPaging = exports.createPageNumberPaging = exports.createSkipPaging = exports.isAllPaging = exports.isLastIdPaging = exports.isPageNumberPaging = exports.isSkipPaging = exports.createPagedResult = void 0;
|
|
@@ -125917,7 +125983,7 @@ const takePlusOne = (paging) => {
|
|
|
125917
125983
|
};
|
|
125918
125984
|
exports.takePlusOne = takePlusOne;
|
|
125919
125985
|
|
|
125920
|
-
},{}],
|
|
125986
|
+
},{}],419:[function(require,module,exports){
|
|
125921
125987
|
"use strict";
|
|
125922
125988
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
125923
125989
|
exports.SubgraphClient = void 0;
|
|
@@ -125944,7 +126010,7 @@ function cleanVariables(variables) {
|
|
|
125944
126010
|
]));
|
|
125945
126011
|
}
|
|
125946
126012
|
|
|
125947
|
-
},{"graphql-request":
|
|
126013
|
+
},{"graphql-request":394}],420:[function(require,module,exports){
|
|
125948
126014
|
"use strict";
|
|
125949
126015
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
125950
126016
|
exports.AccountQueryHandler = void 0;
|
|
@@ -125973,13 +126039,13 @@ class AccountQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHandler {
|
|
|
125973
126039
|
}
|
|
125974
126040
|
exports.AccountQueryHandler = AccountQueryHandler;
|
|
125975
126041
|
|
|
125976
|
-
},{"../../subgraphQueryHandler":
|
|
126042
|
+
},{"../../subgraphQueryHandler":459,"./accounts.generated":421}],421:[function(require,module,exports){
|
|
125977
126043
|
"use strict";
|
|
125978
126044
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
125979
126045
|
exports.AccountsDocument = void 0;
|
|
125980
126046
|
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": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "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" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }], "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" } }] } }] } }] };
|
|
125981
126047
|
|
|
125982
|
-
},{}],
|
|
126048
|
+
},{}],422:[function(require,module,exports){
|
|
125983
126049
|
"use strict";
|
|
125984
126050
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
125985
126051
|
exports.AccountTokenSnapshotQueryHandler = void 0;
|
|
@@ -126016,13 +126082,13 @@ class AccountTokenSnapshotQueryHandler extends subgraphQueryHandler_1.SubgraphQu
|
|
|
126016
126082
|
}
|
|
126017
126083
|
exports.AccountTokenSnapshotQueryHandler = AccountTokenSnapshotQueryHandler;
|
|
126018
126084
|
|
|
126019
|
-
},{"../../subgraphQueryHandler":
|
|
126085
|
+
},{"../../subgraphQueryHandler":459,"./accountTokenSnapshots.generated":423}],423:[function(require,module,exports){
|
|
126020
126086
|
"use strict";
|
|
126021
126087
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126022
126088
|
exports.AccountTokenSnapshotsDocument = void 0;
|
|
126023
126089
|
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": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "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" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }], "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": "symbol" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountStreamedUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountStreamedInUntilUpdatedAt" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountStreamedOutUntilUpdatedAt" } }, { "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": "activeOutgoingStreamCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "activeIncomingStreamCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalOutflowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfClosedStreams" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactiveOutgoingStreamCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactiveIncomingStreamCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalSubscriptionsWithUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maybeCriticalAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isLiquidationEstimateOptimistic" } }] } }] } }] };
|
|
126024
126090
|
|
|
126025
|
-
},{}],
|
|
126091
|
+
},{}],424:[function(require,module,exports){
|
|
126026
126092
|
"use strict";
|
|
126027
126093
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126028
126094
|
exports.AccountTokenSnapshotLogQueryHandler = void 0;
|
|
@@ -126057,19 +126123,19 @@ class AccountTokenSnapshotLogQueryHandler extends subgraphQueryHandler_1.Subgrap
|
|
|
126057
126123
|
}
|
|
126058
126124
|
exports.AccountTokenSnapshotLogQueryHandler = AccountTokenSnapshotLogQueryHandler;
|
|
126059
126125
|
|
|
126060
|
-
},{"../../subgraphQueryHandler":
|
|
126126
|
+
},{"../../subgraphQueryHandler":459,"./accountTokenSnapshotLogs.generated":425}],425:[function(require,module,exports){
|
|
126061
126127
|
"use strict";
|
|
126062
126128
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126063
126129
|
exports.AccountTokenSnapshotLogsDocument = void 0;
|
|
126064
126130
|
exports.AccountTokenSnapshotLogsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "accountTokenSnapshotLogs" }, "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": "AccountTokenSnapshotLog_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": "AccountTokenSnapshotLog_filter" } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "accountTokenSnapshotLogs" }, "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" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "balance" } }, { "kind": "Field", "name": { "kind": "Name", "value": "maybeCriticalAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountStreamed" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountStreamedIn" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountStreamedOut" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountTransferred" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalApprovedSubscriptions" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalDeposit" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalInflowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNetFlowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfActiveStreams" } }, { "kind": "Field", "name": { "kind": "Name", "value": "activeOutgoingStreamCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "activeIncomingStreamCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfClosedStreams" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactiveOutgoingStreamCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactiveIncomingStreamCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalSubscriptionsWithUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalOutflowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "triggeredByEventName" } }, { "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": "symbol" } }] } }] } }] } }] };
|
|
126065
126131
|
|
|
126066
|
-
},{}],
|
|
126132
|
+
},{}],426:[function(require,module,exports){
|
|
126067
126133
|
"use strict";
|
|
126068
126134
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126069
126135
|
exports.FlowOperatorsDocument = void 0;
|
|
126070
126136
|
exports.FlowOperatorsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "flowOperators" }, "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": "FlowOperator_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": "FlowOperator_filter" } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "flowOperators" }, "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" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }], "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": "updatedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "flowOperator" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sender" }, "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": "flowRateAllowanceRemaining" } }, { "kind": "Field", "name": { "kind": "Name", "value": "permissions" } }, { "kind": "Field", "name": { "kind": "Name", "value": "allowance" } }] } }] } }] };
|
|
126071
126137
|
|
|
126072
|
-
},{}],
|
|
126138
|
+
},{}],427:[function(require,module,exports){
|
|
126073
126139
|
"use strict";
|
|
126074
126140
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126075
126141
|
exports.FlowOperatorQueryHandler = void 0;
|
|
@@ -126100,7 +126166,7 @@ class FlowOperatorQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHandl
|
|
|
126100
126166
|
}
|
|
126101
126167
|
exports.FlowOperatorQueryHandler = FlowOperatorQueryHandler;
|
|
126102
126168
|
|
|
126103
|
-
},{"../../subgraphQueryHandler":
|
|
126169
|
+
},{"../../subgraphQueryHandler":459,"./flowOperators.generated":426}],428:[function(require,module,exports){
|
|
126104
126170
|
"use strict";
|
|
126105
126171
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126106
126172
|
exports.IndexQueryHandler = void 0;
|
|
@@ -126133,13 +126199,13 @@ class IndexQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHandler {
|
|
|
126133
126199
|
}
|
|
126134
126200
|
exports.IndexQueryHandler = IndexQueryHandler;
|
|
126135
126201
|
|
|
126136
|
-
},{"../../subgraphQueryHandler":
|
|
126202
|
+
},{"../../subgraphQueryHandler":459,"./indexes.generated":429}],429:[function(require,module,exports){
|
|
126137
126203
|
"use strict";
|
|
126138
126204
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126139
126205
|
exports.IndexesDocument = void 0;
|
|
126140
126206
|
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": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "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" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }], "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": "symbol" } }] } }, { "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" } }] } }] } }] };
|
|
126141
126207
|
|
|
126142
|
-
},{}],
|
|
126208
|
+
},{}],430:[function(require,module,exports){
|
|
126143
126209
|
"use strict";
|
|
126144
126210
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126145
126211
|
exports.IndexSubscriptionQueryHandler = void 0;
|
|
@@ -126176,13 +126242,13 @@ class IndexSubscriptionQueryHandler extends subgraphQueryHandler_1.SubgraphQuery
|
|
|
126176
126242
|
}
|
|
126177
126243
|
exports.IndexSubscriptionQueryHandler = IndexSubscriptionQueryHandler;
|
|
126178
126244
|
|
|
126179
|
-
},{"../../subgraphQueryHandler":
|
|
126245
|
+
},{"../../subgraphQueryHandler":459,"./indexSubscriptions.generated":431}],431:[function(require,module,exports){
|
|
126180
126246
|
"use strict";
|
|
126181
126247
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126182
126248
|
exports.IndexSubscriptionsDocument = void 0;
|
|
126183
126249
|
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": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "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" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }], "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": "indexId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "indexValue" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "symbol" } }] } }, { "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" } }] } }] } }] };
|
|
126184
126250
|
|
|
126185
|
-
},{}],
|
|
126251
|
+
},{}],432:[function(require,module,exports){
|
|
126186
126252
|
"use strict";
|
|
126187
126253
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126188
126254
|
exports.StreamQueryHandler = void 0;
|
|
@@ -126215,13 +126281,13 @@ class StreamQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHandler {
|
|
|
126215
126281
|
}
|
|
126216
126282
|
exports.StreamQueryHandler = StreamQueryHandler;
|
|
126217
126283
|
|
|
126218
|
-
},{"../../subgraphQueryHandler":
|
|
126284
|
+
},{"../../subgraphQueryHandler":459,"./streams.generated":433}],433:[function(require,module,exports){
|
|
126219
126285
|
"use strict";
|
|
126220
126286
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126221
126287
|
exports.StreamsDocument = void 0;
|
|
126222
126288
|
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": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "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" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }], "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": "symbol" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtBlockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "updatedAtTimestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "deposit" } }, { "kind": "Field", "name": { "kind": "Name", "value": "userData" } }] } }] } }] };
|
|
126223
126289
|
|
|
126224
|
-
},{}],
|
|
126290
|
+
},{}],434:[function(require,module,exports){
|
|
126225
126291
|
"use strict";
|
|
126226
126292
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126227
126293
|
exports.StreamPeriodQueryHandler = void 0;
|
|
@@ -126260,13 +126326,13 @@ class StreamPeriodQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHandl
|
|
|
126260
126326
|
}
|
|
126261
126327
|
exports.StreamPeriodQueryHandler = StreamPeriodQueryHandler;
|
|
126262
126328
|
|
|
126263
|
-
},{"../../subgraphQueryHandler":
|
|
126329
|
+
},{"../../subgraphQueryHandler":459,"./streamPeriods.generated":435}],435:[function(require,module,exports){
|
|
126264
126330
|
"use strict";
|
|
126265
126331
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126266
126332
|
exports.StreamPeriodsDocument = void 0;
|
|
126267
126333
|
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" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "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" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }], "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": "symbol" } }] } }, { "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" } }] } }] } }] } }] };
|
|
126268
126334
|
|
|
126269
|
-
},{}],
|
|
126335
|
+
},{}],436:[function(require,module,exports){
|
|
126270
126336
|
"use strict";
|
|
126271
126337
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126272
126338
|
exports.TokenQueryHandler = void 0;
|
|
@@ -126293,13 +126359,13 @@ class TokenQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHandler {
|
|
|
126293
126359
|
}
|
|
126294
126360
|
exports.TokenQueryHandler = TokenQueryHandler;
|
|
126295
126361
|
|
|
126296
|
-
},{"../../subgraphQueryHandler":
|
|
126362
|
+
},{"../../subgraphQueryHandler":459,"./tokens.generated":437}],437:[function(require,module,exports){
|
|
126297
126363
|
"use strict";
|
|
126298
126364
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126299
126365
|
exports.TokensDocument = void 0;
|
|
126300
126366
|
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": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "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" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }], "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": "isNativeAssetSuperToken" } }, { "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" } }] } }] } }] };
|
|
126301
126367
|
|
|
126302
|
-
},{}],
|
|
126368
|
+
},{}],438:[function(require,module,exports){
|
|
126303
126369
|
"use strict";
|
|
126304
126370
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126305
126371
|
exports.TokenStatisticQueryHandler = void 0;
|
|
@@ -126326,13 +126392,13 @@ class TokenStatisticQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHan
|
|
|
126326
126392
|
}
|
|
126327
126393
|
exports.TokenStatisticQueryHandler = TokenStatisticQueryHandler;
|
|
126328
126394
|
|
|
126329
|
-
},{"../../subgraphQueryHandler":
|
|
126395
|
+
},{"../../subgraphQueryHandler":459,"./tokenStatistics.generated":439}],439:[function(require,module,exports){
|
|
126330
126396
|
"use strict";
|
|
126331
126397
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126332
126398
|
exports.TokenStatisticsDocument = void 0;
|
|
126333
126399
|
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": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "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" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }], "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" } }] } }] } }] };
|
|
126334
126400
|
|
|
126335
|
-
},{}],
|
|
126401
|
+
},{}],440:[function(require,module,exports){
|
|
126336
126402
|
"use strict";
|
|
126337
126403
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126338
126404
|
exports.TokenStatisticLogQueryHandler = void 0;
|
|
@@ -126360,13 +126426,13 @@ class TokenStatisticLogQueryHandler extends subgraphQueryHandler_1.SubgraphQuery
|
|
|
126360
126426
|
}
|
|
126361
126427
|
exports.TokenStatisticLogQueryHandler = TokenStatisticLogQueryHandler;
|
|
126362
126428
|
|
|
126363
|
-
},{"../../subgraphQueryHandler":
|
|
126429
|
+
},{"../../subgraphQueryHandler":459,"./tokenStatisticLogs.generated":441}],441:[function(require,module,exports){
|
|
126364
126430
|
"use strict";
|
|
126365
126431
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126366
126432
|
exports.TokenStatisticLogsDocument = void 0;
|
|
126367
126433
|
exports.TokenStatisticLogsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "tokenStatisticLogs" }, "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": "TokenStatisticLog_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": "TokenStatisticLog_filter" } }, "defaultValue": { "kind": "ObjectValue", "fields": [] } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "tokenStatisticLogs" }, "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" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "triggeredByEventName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfActiveStreams" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfClosedStreams" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfIndexes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfActiveIndexes" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalSubscriptionsWithUnits" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalApprovedSubscriptions" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalDeposit" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalOutflowRate" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountStreamed" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountTransferred" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalAmountDistributed" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalSupply" } }, { "kind": "Field", "name": { "kind": "Name", "value": "token" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "symbol" } }] } }] } }] } }] };
|
|
126368
126434
|
|
|
126369
|
-
},{}],
|
|
126435
|
+
},{}],442:[function(require,module,exports){
|
|
126370
126436
|
"use strict";
|
|
126371
126437
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126372
126438
|
exports.EventsDocument = exports.BondIncreasedEventsDocument = exports.ExitRateChangedEventsDocument = exports.NewPicEventsDocument = exports.SuperTokenLogicCreatedEventsDocument = exports.SuperTokenCreatedEventsDocument = exports.CustomSuperTokenCreatedEventsDocument = exports.SentEventsDocument = exports.MintedEventsDocument = exports.BurnedEventsDocument = exports.AgreementLiquidatedByEventsDocument = exports.TrustedForwarderChangedEventsDocument = exports.SuperTokenMinimumDepositChangedEventsDocument = exports.RewardAddressChangedEventsDocument = exports.ConfigChangedEventsDocument = exports.CfaV1LiquidationPeriodChangedEventsDocument = exports.SetEventsDocument = 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.FlowOperatorUpdatedEventsDocument = exports.FlowUpdatedEventsDocument = void 0;
|
|
@@ -126413,7 +126479,7 @@ exports.ExitRateChangedEventsDocument = { "kind": "Document", "definitions": [{
|
|
|
126413
126479
|
exports.BondIncreasedEventsDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "bondIncreasedEvents" }, "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": "BondIncreasedEvent_filter" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderBy" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "BondIncreasedEvent_orderBy" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "orderDirection" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "OrderDirection" } } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "bondIncreasedEvents" }, "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" } } }, { "kind": "Argument", "name": { "kind": "Name", "value": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "additionalBond" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }] } }] };
|
|
126414
126480
|
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" } }, { "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "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": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }, { "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": "blockNumber" } }, { "kind": "Field", "name": { "kind": "Name", "value": "transactionHash" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "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": "Field", "name": { "kind": "Name", "value": "flowOperator" } }, { "kind": "Field", "name": { "kind": "Name", "value": "deposit" } }, { "kind": "Field", "name": { "kind": "Name", "value": "stream" }, "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "FlowOperatorUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sender" } }, { "kind": "Field", "name": { "kind": "Name", "value": "permissions" } }, { "kind": "Field", "name": { "kind": "Name", "value": "flowRateAllowance" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "IndexSubscribedEvent" } }, "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "AppRegisteredEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SetEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "hashedName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "resolverEntry" }, "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "governanceAddress" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "Field", "name": { "kind": "Name", "value": "governanceAddress" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "Field", "name": { "kind": "Name", "value": "governanceAddress" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SuperTokenMinimumDepositChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "superToken" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minimumDeposit" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isKeySet" } }, { "kind": "Field", "name": { "kind": "Name", "value": "host" } }, { "kind": "Field", "name": { "kind": "Name", "value": "governanceAddress" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "governanceAddress" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "AgreementLiquidatedV2Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "liquidatorAccount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "agreementClass" } }, { "kind": "Field", "name": { "kind": "Name", "value": "agreementId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "targetAccount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "rewardAmountReceiver" } }, { "kind": "Field", "name": { "kind": "Name", "value": "rewardAmount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "targetAccountBalanceDelta" } }, { "kind": "Field", "name": { "kind": "Name", "value": "version" } }, { "kind": "Field", "name": { "kind": "Name", "value": "liquidationType" } }, { "kind": "Field", "name": { "kind": "Name", "value": "rewardAccount" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PPPConfigurationChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "host" } }, { "kind": "Field", "name": { "kind": "Name", "value": "governanceAddress" } }, { "kind": "Field", "name": { "kind": "Name", "value": "superToken" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isKeySet" } }, { "kind": "Field", "name": { "kind": "Name", "value": "liquidationPeriod" } }, { "kind": "Field", "name": { "kind": "Name", "value": "patricianPeriod" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "token" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "token" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "token" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "NewPICEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pic" } }, { "kind": "Field", "name": { "kind": "Name", "value": "bond" } }, { "kind": "Field", "name": { "kind": "Name", "value": "exitRate" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ExitRateChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "exitRate" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "BondIncreasedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "additionalBond" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }] } }] } }] };
|
|
126415
126481
|
|
|
126416
|
-
},{}],
|
|
126482
|
+
},{}],443:[function(require,module,exports){
|
|
126417
126483
|
"use strict";
|
|
126418
126484
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126419
126485
|
exports.EventQueryHandler = void 0;
|
|
@@ -126441,7 +126507,7 @@ class EventQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHandler {
|
|
|
126441
126507
|
}
|
|
126442
126508
|
exports.EventQueryHandler = EventQueryHandler;
|
|
126443
126509
|
|
|
126444
|
-
},{"../../mapGetAllEventsQueryEvents":
|
|
126510
|
+
},{"../../mapGetAllEventsQueryEvents":415,"../subgraphQueryHandler":459,"./events.generated":442}],444:[function(require,module,exports){
|
|
126445
126511
|
"use strict";
|
|
126446
126512
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126447
126513
|
exports.FlowUpdatedEventQueryHandler = void 0;
|
|
@@ -126469,7 +126535,7 @@ class FlowUpdatedEventQueryHandler extends subgraphQueryHandler_1.SubgraphQueryH
|
|
|
126469
126535
|
}
|
|
126470
126536
|
exports.FlowUpdatedEventQueryHandler = FlowUpdatedEventQueryHandler;
|
|
126471
126537
|
|
|
126472
|
-
},{"../../mapGetAllEventsQueryEvents":
|
|
126538
|
+
},{"../../mapGetAllEventsQueryEvents":415,"../subgraphQueryHandler":459,"./events.generated":442}],445:[function(require,module,exports){
|
|
126473
126539
|
"use strict";
|
|
126474
126540
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126475
126541
|
exports.IndexUpdatedEventQueryHandler = void 0;
|
|
@@ -126497,7 +126563,7 @@ class IndexUpdatedEventQueryHandler extends subgraphQueryHandler_1.SubgraphQuery
|
|
|
126497
126563
|
}
|
|
126498
126564
|
exports.IndexUpdatedEventQueryHandler = IndexUpdatedEventQueryHandler;
|
|
126499
126565
|
|
|
126500
|
-
},{"../../mapGetAllEventsQueryEvents":
|
|
126566
|
+
},{"../../mapGetAllEventsQueryEvents":415,"../subgraphQueryHandler":459,"./events.generated":442}],446:[function(require,module,exports){
|
|
126501
126567
|
"use strict";
|
|
126502
126568
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126503
126569
|
exports.SubscriptionUnitsUpdatedEventQueryHandler = void 0;
|
|
@@ -126525,7 +126591,7 @@ class SubscriptionUnitsUpdatedEventQueryHandler extends subgraphQueryHandler_1.S
|
|
|
126525
126591
|
}
|
|
126526
126592
|
exports.SubscriptionUnitsUpdatedEventQueryHandler = SubscriptionUnitsUpdatedEventQueryHandler;
|
|
126527
126593
|
|
|
126528
|
-
},{"../../mapGetAllEventsQueryEvents":
|
|
126594
|
+
},{"../../mapGetAllEventsQueryEvents":415,"../subgraphQueryHandler":459,"./events.generated":442}],447:[function(require,module,exports){
|
|
126529
126595
|
"use strict";
|
|
126530
126596
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126531
126597
|
exports.TransferEventQueryHandler = void 0;
|
|
@@ -126553,18 +126619,18 @@ class TransferEventQueryHandler extends subgraphQueryHandler_1.SubgraphQueryHand
|
|
|
126553
126619
|
}
|
|
126554
126620
|
exports.TransferEventQueryHandler = TransferEventQueryHandler;
|
|
126555
126621
|
|
|
126556
|
-
},{"../../mapGetAllEventsQueryEvents":
|
|
126622
|
+
},{"../../mapGetAllEventsQueryEvents":415,"../subgraphQueryHandler":459,"./events.generated":442}],448:[function(require,module,exports){
|
|
126557
126623
|
"use strict";
|
|
126558
126624
|
// TODO(KK): Add comments
|
|
126559
126625
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126560
126626
|
|
|
126561
|
-
},{}],
|
|
126627
|
+
},{}],449:[function(require,module,exports){
|
|
126562
126628
|
"use strict";
|
|
126563
126629
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126564
126630
|
exports.MetaDocument = void 0;
|
|
126565
126631
|
exports.MetaDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "meta" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Block_height" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "_meta" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "block" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "block" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "block" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "number" } }, { "kind": "Field", "name": { "kind": "Name", "value": "hash" } }] } }, { "kind": "Field", "name": { "kind": "Name", "value": "deployment" } }, { "kind": "Field", "name": { "kind": "Name", "value": "hasIndexingErrors" } }] } }] } }] };
|
|
126566
126632
|
|
|
126567
|
-
},{}],
|
|
126633
|
+
},{}],450:[function(require,module,exports){
|
|
126568
126634
|
"use strict";
|
|
126569
126635
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126570
126636
|
exports.MetaQueryHandler = void 0;
|
|
@@ -126585,7 +126651,7 @@ class MetaQueryHandler {
|
|
|
126585
126651
|
}
|
|
126586
126652
|
exports.MetaQueryHandler = MetaQueryHandler;
|
|
126587
126653
|
|
|
126588
|
-
},{"./meta.generated":
|
|
126654
|
+
},{"./meta.generated":449}],451:[function(require,module,exports){
|
|
126589
126655
|
"use strict";
|
|
126590
126656
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126591
126657
|
exports.normalizeSubgraphFilterValue = exports.normalizeSubgraphFilter = void 0;
|
|
@@ -126625,45 +126691,45 @@ const lowerCaseIfAddress = (value) => {
|
|
|
126625
126691
|
return value;
|
|
126626
126692
|
};
|
|
126627
126693
|
|
|
126628
|
-
},{}],
|
|
126694
|
+
},{}],452:[function(require,module,exports){
|
|
126629
126695
|
"use strict";
|
|
126630
126696
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126631
126697
|
exports.GetAccountTokenSnapshotsDocument = void 0;
|
|
126632
126698
|
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": "activeOutgoingStreamCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "activeIncomingStreamCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "totalNumberOfClosedStreams" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactiveOutgoingStreamCount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "inactiveIncomingStreamCount" } }, { "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": "isNativeAssetSuperToken" } }, { "kind": "Field", "name": { "kind": "Name", "value": "underlyingAddress" } }] } }] } }] } }] };
|
|
126633
126699
|
|
|
126634
|
-
},{}],
|
|
126700
|
+
},{}],453:[function(require,module,exports){
|
|
126635
126701
|
"use strict";
|
|
126636
126702
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126637
126703
|
exports.GetAllEventsDocument = void 0;
|
|
126638
126704
|
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": "Field", "name": { "kind": "Name", "value": "flowOperator" } }, { "kind": "Field", "name": { "kind": "Name", "value": "deposit" } }, { "kind": "Field", "name": { "kind": "Name", "value": "stream" }, "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "FlowOperatorUpdatedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "sender" } }, { "kind": "Field", "name": { "kind": "Name", "value": "permissions" } }, { "kind": "Field", "name": { "kind": "Name", "value": "flowRateAllowance" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SetEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "hashedName" } }, { "kind": "Field", "name": { "kind": "Name", "value": "target" } }, { "kind": "Field", "name": { "kind": "Name", "value": "resolverEntry" }, "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "governanceAddress" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "Field", "name": { "kind": "Name", "value": "governanceAddress" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "Field", "name": { "kind": "Name", "value": "governanceAddress" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "PPPConfigurationChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "host" } }, { "kind": "Field", "name": { "kind": "Name", "value": "governanceAddress" } }, { "kind": "Field", "name": { "kind": "Name", "value": "superToken" } }, { "kind": "Field", "name": { "kind": "Name", "value": "isKeySet" } }, { "kind": "Field", "name": { "kind": "Name", "value": "liquidationPeriod" } }, { "kind": "Field", "name": { "kind": "Name", "value": "patricianPeriod" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "governanceAddress" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "SuperTokenMinimumDepositChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "isKeySet" } }, { "kind": "Field", "name": { "kind": "Name", "value": "host" } }, { "kind": "Field", "name": { "kind": "Name", "value": "governanceAddress" } }, { "kind": "Field", "name": { "kind": "Name", "value": "minimumDeposit" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "AgreementLiquidatedV2Event" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "liquidatorAccount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "agreementClass" } }, { "kind": "Field", "name": { "kind": "Name", "value": "agreementId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "targetAccount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "rewardAmountReceiver" } }, { "kind": "Field", "name": { "kind": "Name", "value": "rewardAmount" } }, { "kind": "Field", "name": { "kind": "Name", "value": "targetAccountBalanceDelta" } }, { "kind": "Field", "name": { "kind": "Name", "value": "version" } }, { "kind": "Field", "name": { "kind": "Name", "value": "liquidationType" } }, { "kind": "Field", "name": { "kind": "Name", "value": "rewardAccount" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "token" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "token" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "token" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "NewPICEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "pic" } }, { "kind": "Field", "name": { "kind": "Name", "value": "bond" } }, { "kind": "Field", "name": { "kind": "Name", "value": "exitRate" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "ExitRateChangedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "exitRate" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }, { "kind": "InlineFragment", "typeCondition": { "kind": "NamedType", "name": { "kind": "Name", "value": "BondIncreasedEvent" } }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "token" } }, { "kind": "Field", "name": { "kind": "Name", "value": "additionalBond" } }, { "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": "gasPrice" } }, { "kind": "Field", "name": { "kind": "Name", "value": "order" } }, { "kind": "Field", "name": { "kind": "Name", "value": "timestamp" } }, { "kind": "Field", "name": { "kind": "Name", "value": "logIndex" } }] } }] } }] } }] } }] };
|
|
126639
126705
|
|
|
126640
|
-
},{}],
|
|
126706
|
+
},{}],454:[function(require,module,exports){
|
|
126641
126707
|
"use strict";
|
|
126642
126708
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126643
126709
|
exports.GetIndexSubscriptionsDocument = void 0;
|
|
126644
126710
|
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": "isNativeAssetSuperToken" } }, { "kind": "Field", "name": { "kind": "Name", "value": "underlyingAddress" } }] } }] } }] } }] } }] };
|
|
126645
126711
|
|
|
126646
|
-
},{}],
|
|
126712
|
+
},{}],455:[function(require,module,exports){
|
|
126647
126713
|
"use strict";
|
|
126648
126714
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126649
126715
|
exports.GetIndexesDocument = void 0;
|
|
126650
126716
|
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": "isNativeAssetSuperToken" } }, { "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" } }] } }] } }] } }] };
|
|
126651
126717
|
|
|
126652
|
-
},{}],
|
|
126718
|
+
},{}],456:[function(require,module,exports){
|
|
126653
126719
|
"use strict";
|
|
126654
126720
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126655
126721
|
exports.GetStreamsDocument = void 0;
|
|
126656
126722
|
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": "userData" } }, { "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": "isNativeAssetSuperToken" } }, { "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" } }] } }] } }] } }] };
|
|
126657
126723
|
|
|
126658
|
-
},{}],
|
|
126724
|
+
},{}],457:[function(require,module,exports){
|
|
126659
126725
|
"use strict";
|
|
126660
126726
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126661
126727
|
exports.GetTokensDocument = void 0;
|
|
126662
126728
|
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": "isNativeAssetSuperToken" } }, { "kind": "Field", "name": { "kind": "Name", "value": "underlyingAddress" } }] } }] } }] };
|
|
126663
126729
|
|
|
126664
|
-
},{}],
|
|
126665
|
-
arguments[4][
|
|
126666
|
-
},{"dup":
|
|
126730
|
+
},{}],458:[function(require,module,exports){
|
|
126731
|
+
arguments[4][414][0].apply(exports,arguments)
|
|
126732
|
+
},{"dup":414}],459:[function(require,module,exports){
|
|
126667
126733
|
"use strict";
|
|
126668
126734
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
126669
126735
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -126775,9 +126841,9 @@ class SubgraphQueryHandler {
|
|
|
126775
126841
|
}
|
|
126776
126842
|
exports.SubgraphQueryHandler = SubgraphQueryHandler;
|
|
126777
126843
|
|
|
126778
|
-
},{"../Query":
|
|
126779
|
-
arguments[4][
|
|
126780
|
-
},{"dup":
|
|
126844
|
+
},{"../Query":405,"../pagination":418,"../utils":461,"./normalizeSubgraphFilter":451,"lodash":196}],460:[function(require,module,exports){
|
|
126845
|
+
arguments[4][414][0].apply(exports,arguments)
|
|
126846
|
+
},{"dup":414}],461:[function(require,module,exports){
|
|
126781
126847
|
"use strict";
|
|
126782
126848
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
126783
126849
|
exports.clipDepositNumber = exports.getFlowOperatorId = exports.typeGuard = exports.isInjectedEthers = exports.isInjectedWeb3 = exports.isEthersProvider = exports.calculateAvailableBalance = 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.toBN = exports.isNullOrEmpty = exports.isPermissionsClean = exports.normalizeAddress = void 0;
|
|
@@ -126993,5 +127059,5 @@ const clipDepositNumber = (deposit, roundingDown = false) => {
|
|
|
126993
127059
|
};
|
|
126994
127060
|
exports.clipDepositNumber = clipDepositNumber;
|
|
126995
127061
|
|
|
126996
|
-
},{"./SFError":
|
|
127062
|
+
},{"./SFError":406,"./constants":409,"ethers":153}]},{},[413])(413)
|
|
126997
127063
|
});
|