enssdk 1.15.2 → 1.16.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/README.md +2 -2
- package/dist/omnigraph/index.d.ts +248 -0
- package/dist/omnigraph/index.js +289 -0
- package/dist/omnigraph/index.js.map +1 -1
- package/package.json +2 -2
- package/src/omnigraph/generated/schema.graphql +84 -0
package/README.md
CHANGED
|
@@ -10,10 +10,10 @@ Learn more about [ENSNode](https://ensnode.io/) from [the ENSNode docs](https://
|
|
|
10
10
|
npm install enssdk
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
> **Version compatibility:** Our hosted ENSNode instances currently run ENSNode v1.
|
|
13
|
+
> **Version compatibility:** Our hosted ENSNode instances currently run ENSNode v1.15. If you are querying them from your own app, pin `enssdk` to the matching version — the Omnigraph API data model can change between versions.
|
|
14
14
|
>
|
|
15
15
|
> ```bash
|
|
16
|
-
> npm install enssdk@1.
|
|
16
|
+
> npm install enssdk@1.15.2
|
|
17
17
|
> ```
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
@@ -168,6 +168,44 @@ declare const introspection: {
|
|
|
168
168
|
};
|
|
169
169
|
readonly args: readonly [];
|
|
170
170
|
readonly isDeprecated: false;
|
|
171
|
+
}, {
|
|
172
|
+
readonly name: "nameReferences";
|
|
173
|
+
readonly type: {
|
|
174
|
+
readonly kind: "OBJECT";
|
|
175
|
+
readonly name: "AccountNameReferencesConnection";
|
|
176
|
+
};
|
|
177
|
+
readonly args: readonly [{
|
|
178
|
+
readonly name: "after";
|
|
179
|
+
readonly type: {
|
|
180
|
+
readonly kind: "SCALAR";
|
|
181
|
+
readonly name: "String";
|
|
182
|
+
};
|
|
183
|
+
}, {
|
|
184
|
+
readonly name: "before";
|
|
185
|
+
readonly type: {
|
|
186
|
+
readonly kind: "SCALAR";
|
|
187
|
+
readonly name: "String";
|
|
188
|
+
};
|
|
189
|
+
}, {
|
|
190
|
+
readonly name: "first";
|
|
191
|
+
readonly type: {
|
|
192
|
+
readonly kind: "SCALAR";
|
|
193
|
+
readonly name: "Int";
|
|
194
|
+
};
|
|
195
|
+
}, {
|
|
196
|
+
readonly name: "last";
|
|
197
|
+
readonly type: {
|
|
198
|
+
readonly kind: "SCALAR";
|
|
199
|
+
readonly name: "Int";
|
|
200
|
+
};
|
|
201
|
+
}, {
|
|
202
|
+
readonly name: "where";
|
|
203
|
+
readonly type: {
|
|
204
|
+
readonly kind: "INPUT_OBJECT";
|
|
205
|
+
readonly name: "AccountNameReferencesWhereInput";
|
|
206
|
+
};
|
|
207
|
+
}];
|
|
208
|
+
readonly isDeprecated: false;
|
|
171
209
|
}, {
|
|
172
210
|
readonly name: "permissions";
|
|
173
211
|
readonly type: {
|
|
@@ -545,6 +583,88 @@ declare const introspection: {
|
|
|
545
583
|
};
|
|
546
584
|
}];
|
|
547
585
|
readonly isOneOf: false;
|
|
586
|
+
}, {
|
|
587
|
+
readonly kind: "OBJECT";
|
|
588
|
+
readonly name: "AccountNameReferencesConnection";
|
|
589
|
+
readonly fields: readonly [{
|
|
590
|
+
readonly name: "edges";
|
|
591
|
+
readonly type: {
|
|
592
|
+
readonly kind: "NON_NULL";
|
|
593
|
+
readonly ofType: {
|
|
594
|
+
readonly kind: "LIST";
|
|
595
|
+
readonly ofType: {
|
|
596
|
+
readonly kind: "NON_NULL";
|
|
597
|
+
readonly ofType: {
|
|
598
|
+
readonly kind: "OBJECT";
|
|
599
|
+
readonly name: "AccountNameReferencesConnectionEdge";
|
|
600
|
+
};
|
|
601
|
+
};
|
|
602
|
+
};
|
|
603
|
+
};
|
|
604
|
+
readonly args: readonly [];
|
|
605
|
+
readonly isDeprecated: false;
|
|
606
|
+
}, {
|
|
607
|
+
readonly name: "pageInfo";
|
|
608
|
+
readonly type: {
|
|
609
|
+
readonly kind: "NON_NULL";
|
|
610
|
+
readonly ofType: {
|
|
611
|
+
readonly kind: "OBJECT";
|
|
612
|
+
readonly name: "PageInfo";
|
|
613
|
+
};
|
|
614
|
+
};
|
|
615
|
+
readonly args: readonly [];
|
|
616
|
+
readonly isDeprecated: false;
|
|
617
|
+
}, {
|
|
618
|
+
readonly name: "totalCount";
|
|
619
|
+
readonly type: {
|
|
620
|
+
readonly kind: "NON_NULL";
|
|
621
|
+
readonly ofType: {
|
|
622
|
+
readonly kind: "SCALAR";
|
|
623
|
+
readonly name: "Int";
|
|
624
|
+
};
|
|
625
|
+
};
|
|
626
|
+
readonly args: readonly [];
|
|
627
|
+
readonly isDeprecated: false;
|
|
628
|
+
}];
|
|
629
|
+
readonly interfaces: readonly [];
|
|
630
|
+
}, {
|
|
631
|
+
readonly kind: "OBJECT";
|
|
632
|
+
readonly name: "AccountNameReferencesConnectionEdge";
|
|
633
|
+
readonly fields: readonly [{
|
|
634
|
+
readonly name: "cursor";
|
|
635
|
+
readonly type: {
|
|
636
|
+
readonly kind: "NON_NULL";
|
|
637
|
+
readonly ofType: {
|
|
638
|
+
readonly kind: "SCALAR";
|
|
639
|
+
readonly name: "String";
|
|
640
|
+
};
|
|
641
|
+
};
|
|
642
|
+
readonly args: readonly [];
|
|
643
|
+
readonly isDeprecated: false;
|
|
644
|
+
}, {
|
|
645
|
+
readonly name: "node";
|
|
646
|
+
readonly type: {
|
|
647
|
+
readonly kind: "NON_NULL";
|
|
648
|
+
readonly ofType: {
|
|
649
|
+
readonly kind: "OBJECT";
|
|
650
|
+
readonly name: "NameReference";
|
|
651
|
+
};
|
|
652
|
+
};
|
|
653
|
+
readonly args: readonly [];
|
|
654
|
+
readonly isDeprecated: false;
|
|
655
|
+
}];
|
|
656
|
+
readonly interfaces: readonly [];
|
|
657
|
+
}, {
|
|
658
|
+
readonly kind: "INPUT_OBJECT";
|
|
659
|
+
readonly name: "AccountNameReferencesWhereInput";
|
|
660
|
+
readonly inputFields: readonly [{
|
|
661
|
+
readonly name: "coinType";
|
|
662
|
+
readonly type: {
|
|
663
|
+
readonly kind: "SCALAR";
|
|
664
|
+
readonly name: "CoinType";
|
|
665
|
+
};
|
|
666
|
+
}];
|
|
667
|
+
readonly isOneOf: false;
|
|
548
668
|
}, {
|
|
549
669
|
readonly kind: "OBJECT";
|
|
550
670
|
readonly name: "AccountPermissionsConnection";
|
|
@@ -1032,6 +1152,31 @@ declare const introspection: {
|
|
|
1032
1152
|
}, {
|
|
1033
1153
|
readonly kind: "SCALAR";
|
|
1034
1154
|
readonly name: "CoinType";
|
|
1155
|
+
}, {
|
|
1156
|
+
readonly kind: "ENUM";
|
|
1157
|
+
readonly name: "ContenthashProtocol";
|
|
1158
|
+
readonly enumValues: readonly [{
|
|
1159
|
+
readonly name: "ARWEAVE";
|
|
1160
|
+
readonly isDeprecated: false;
|
|
1161
|
+
}, {
|
|
1162
|
+
readonly name: "IPFS";
|
|
1163
|
+
readonly isDeprecated: false;
|
|
1164
|
+
}, {
|
|
1165
|
+
readonly name: "IPNS";
|
|
1166
|
+
readonly isDeprecated: false;
|
|
1167
|
+
}, {
|
|
1168
|
+
readonly name: "ONION";
|
|
1169
|
+
readonly isDeprecated: false;
|
|
1170
|
+
}, {
|
|
1171
|
+
readonly name: "ONION3";
|
|
1172
|
+
readonly isDeprecated: false;
|
|
1173
|
+
}, {
|
|
1174
|
+
readonly name: "SKYNET";
|
|
1175
|
+
readonly isDeprecated: false;
|
|
1176
|
+
}, {
|
|
1177
|
+
readonly name: "SWARM";
|
|
1178
|
+
readonly isDeprecated: false;
|
|
1179
|
+
}];
|
|
1035
1180
|
}, {
|
|
1036
1181
|
readonly kind: "SCALAR";
|
|
1037
1182
|
readonly name: "DogecoinAddress";
|
|
@@ -1465,6 +1610,14 @@ declare const introspection: {
|
|
|
1465
1610
|
};
|
|
1466
1611
|
readonly args: readonly [];
|
|
1467
1612
|
readonly isDeprecated: false;
|
|
1613
|
+
}, {
|
|
1614
|
+
readonly name: "contenthash";
|
|
1615
|
+
readonly type: {
|
|
1616
|
+
readonly kind: "OBJECT";
|
|
1617
|
+
readonly name: "ProfileContenthash";
|
|
1618
|
+
};
|
|
1619
|
+
readonly args: readonly [];
|
|
1620
|
+
readonly isDeprecated: false;
|
|
1468
1621
|
}, {
|
|
1469
1622
|
readonly name: "description";
|
|
1470
1623
|
readonly type: {
|
|
@@ -3429,6 +3582,55 @@ declare const introspection: {
|
|
|
3429
3582
|
};
|
|
3430
3583
|
}];
|
|
3431
3584
|
readonly isOneOf: true;
|
|
3585
|
+
}, {
|
|
3586
|
+
readonly kind: "OBJECT";
|
|
3587
|
+
readonly name: "NameReference";
|
|
3588
|
+
readonly fields: readonly [{
|
|
3589
|
+
readonly name: "coinType";
|
|
3590
|
+
readonly type: {
|
|
3591
|
+
readonly kind: "NON_NULL";
|
|
3592
|
+
readonly ofType: {
|
|
3593
|
+
readonly kind: "SCALAR";
|
|
3594
|
+
readonly name: "CoinType";
|
|
3595
|
+
};
|
|
3596
|
+
};
|
|
3597
|
+
readonly args: readonly [];
|
|
3598
|
+
readonly isDeprecated: false;
|
|
3599
|
+
}, {
|
|
3600
|
+
readonly name: "domain";
|
|
3601
|
+
readonly type: {
|
|
3602
|
+
readonly kind: "NON_NULL";
|
|
3603
|
+
readonly ofType: {
|
|
3604
|
+
readonly kind: "INTERFACE";
|
|
3605
|
+
readonly name: "Domain";
|
|
3606
|
+
};
|
|
3607
|
+
};
|
|
3608
|
+
readonly args: readonly [];
|
|
3609
|
+
readonly isDeprecated: false;
|
|
3610
|
+
}, {
|
|
3611
|
+
readonly name: "match";
|
|
3612
|
+
readonly type: {
|
|
3613
|
+
readonly kind: "NON_NULL";
|
|
3614
|
+
readonly ofType: {
|
|
3615
|
+
readonly kind: "SCALAR";
|
|
3616
|
+
readonly name: "Boolean";
|
|
3617
|
+
};
|
|
3618
|
+
};
|
|
3619
|
+
readonly args: readonly [];
|
|
3620
|
+
readonly isDeprecated: false;
|
|
3621
|
+
}, {
|
|
3622
|
+
readonly name: "resolver";
|
|
3623
|
+
readonly type: {
|
|
3624
|
+
readonly kind: "NON_NULL";
|
|
3625
|
+
readonly ofType: {
|
|
3626
|
+
readonly kind: "OBJECT";
|
|
3627
|
+
readonly name: "Resolver";
|
|
3628
|
+
};
|
|
3629
|
+
};
|
|
3630
|
+
readonly args: readonly [];
|
|
3631
|
+
readonly isDeprecated: false;
|
|
3632
|
+
}];
|
|
3633
|
+
readonly interfaces: readonly [];
|
|
3432
3634
|
}, {
|
|
3433
3635
|
readonly kind: "OBJECT";
|
|
3434
3636
|
readonly name: "NameWrapperRegistration";
|
|
@@ -4426,6 +4628,52 @@ declare const introspection: {
|
|
|
4426
4628
|
readonly isDeprecated: false;
|
|
4427
4629
|
}];
|
|
4428
4630
|
readonly interfaces: readonly [];
|
|
4631
|
+
}, {
|
|
4632
|
+
readonly kind: "OBJECT";
|
|
4633
|
+
readonly name: "ProfileContenthash";
|
|
4634
|
+
readonly fields: readonly [{
|
|
4635
|
+
readonly name: "decoded";
|
|
4636
|
+
readonly type: {
|
|
4637
|
+
readonly kind: "NON_NULL";
|
|
4638
|
+
readonly ofType: {
|
|
4639
|
+
readonly kind: "SCALAR";
|
|
4640
|
+
readonly name: "String";
|
|
4641
|
+
};
|
|
4642
|
+
};
|
|
4643
|
+
readonly args: readonly [];
|
|
4644
|
+
readonly isDeprecated: false;
|
|
4645
|
+
}, {
|
|
4646
|
+
readonly name: "httpUrl";
|
|
4647
|
+
readonly type: {
|
|
4648
|
+
readonly kind: "SCALAR";
|
|
4649
|
+
readonly name: "String";
|
|
4650
|
+
};
|
|
4651
|
+
readonly args: readonly [];
|
|
4652
|
+
readonly isDeprecated: false;
|
|
4653
|
+
}, {
|
|
4654
|
+
readonly name: "protocolType";
|
|
4655
|
+
readonly type: {
|
|
4656
|
+
readonly kind: "NON_NULL";
|
|
4657
|
+
readonly ofType: {
|
|
4658
|
+
readonly kind: "ENUM";
|
|
4659
|
+
readonly name: "ContenthashProtocol";
|
|
4660
|
+
};
|
|
4661
|
+
};
|
|
4662
|
+
readonly args: readonly [];
|
|
4663
|
+
readonly isDeprecated: false;
|
|
4664
|
+
}, {
|
|
4665
|
+
readonly name: "uri";
|
|
4666
|
+
readonly type: {
|
|
4667
|
+
readonly kind: "NON_NULL";
|
|
4668
|
+
readonly ofType: {
|
|
4669
|
+
readonly kind: "SCALAR";
|
|
4670
|
+
readonly name: "String";
|
|
4671
|
+
};
|
|
4672
|
+
};
|
|
4673
|
+
readonly args: readonly [];
|
|
4674
|
+
readonly isDeprecated: false;
|
|
4675
|
+
}];
|
|
4676
|
+
readonly interfaces: readonly [];
|
|
4429
4677
|
}, {
|
|
4430
4678
|
readonly kind: "OBJECT";
|
|
4431
4679
|
readonly name: "ProfileHeader";
|
package/dist/omnigraph/index.js
CHANGED
|
@@ -166,6 +166,51 @@ var introspection = {
|
|
|
166
166
|
"args": [],
|
|
167
167
|
"isDeprecated": false
|
|
168
168
|
},
|
|
169
|
+
{
|
|
170
|
+
"name": "nameReferences",
|
|
171
|
+
"type": {
|
|
172
|
+
"kind": "OBJECT",
|
|
173
|
+
"name": "AccountNameReferencesConnection"
|
|
174
|
+
},
|
|
175
|
+
"args": [
|
|
176
|
+
{
|
|
177
|
+
"name": "after",
|
|
178
|
+
"type": {
|
|
179
|
+
"kind": "SCALAR",
|
|
180
|
+
"name": "String"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "before",
|
|
185
|
+
"type": {
|
|
186
|
+
"kind": "SCALAR",
|
|
187
|
+
"name": "String"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"name": "first",
|
|
192
|
+
"type": {
|
|
193
|
+
"kind": "SCALAR",
|
|
194
|
+
"name": "Int"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "last",
|
|
199
|
+
"type": {
|
|
200
|
+
"kind": "SCALAR",
|
|
201
|
+
"name": "Int"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"name": "where",
|
|
206
|
+
"type": {
|
|
207
|
+
"kind": "INPUT_OBJECT",
|
|
208
|
+
"name": "AccountNameReferencesWhereInput"
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
],
|
|
212
|
+
"isDeprecated": false
|
|
213
|
+
},
|
|
169
214
|
{
|
|
170
215
|
"name": "permissions",
|
|
171
216
|
"type": {
|
|
@@ -606,6 +651,100 @@ var introspection = {
|
|
|
606
651
|
],
|
|
607
652
|
"isOneOf": false
|
|
608
653
|
},
|
|
654
|
+
{
|
|
655
|
+
"kind": "OBJECT",
|
|
656
|
+
"name": "AccountNameReferencesConnection",
|
|
657
|
+
"fields": [
|
|
658
|
+
{
|
|
659
|
+
"name": "edges",
|
|
660
|
+
"type": {
|
|
661
|
+
"kind": "NON_NULL",
|
|
662
|
+
"ofType": {
|
|
663
|
+
"kind": "LIST",
|
|
664
|
+
"ofType": {
|
|
665
|
+
"kind": "NON_NULL",
|
|
666
|
+
"ofType": {
|
|
667
|
+
"kind": "OBJECT",
|
|
668
|
+
"name": "AccountNameReferencesConnectionEdge"
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
},
|
|
673
|
+
"args": [],
|
|
674
|
+
"isDeprecated": false
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"name": "pageInfo",
|
|
678
|
+
"type": {
|
|
679
|
+
"kind": "NON_NULL",
|
|
680
|
+
"ofType": {
|
|
681
|
+
"kind": "OBJECT",
|
|
682
|
+
"name": "PageInfo"
|
|
683
|
+
}
|
|
684
|
+
},
|
|
685
|
+
"args": [],
|
|
686
|
+
"isDeprecated": false
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"name": "totalCount",
|
|
690
|
+
"type": {
|
|
691
|
+
"kind": "NON_NULL",
|
|
692
|
+
"ofType": {
|
|
693
|
+
"kind": "SCALAR",
|
|
694
|
+
"name": "Int"
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
"args": [],
|
|
698
|
+
"isDeprecated": false
|
|
699
|
+
}
|
|
700
|
+
],
|
|
701
|
+
"interfaces": []
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"kind": "OBJECT",
|
|
705
|
+
"name": "AccountNameReferencesConnectionEdge",
|
|
706
|
+
"fields": [
|
|
707
|
+
{
|
|
708
|
+
"name": "cursor",
|
|
709
|
+
"type": {
|
|
710
|
+
"kind": "NON_NULL",
|
|
711
|
+
"ofType": {
|
|
712
|
+
"kind": "SCALAR",
|
|
713
|
+
"name": "String"
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
"args": [],
|
|
717
|
+
"isDeprecated": false
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"name": "node",
|
|
721
|
+
"type": {
|
|
722
|
+
"kind": "NON_NULL",
|
|
723
|
+
"ofType": {
|
|
724
|
+
"kind": "OBJECT",
|
|
725
|
+
"name": "NameReference"
|
|
726
|
+
}
|
|
727
|
+
},
|
|
728
|
+
"args": [],
|
|
729
|
+
"isDeprecated": false
|
|
730
|
+
}
|
|
731
|
+
],
|
|
732
|
+
"interfaces": []
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"kind": "INPUT_OBJECT",
|
|
736
|
+
"name": "AccountNameReferencesWhereInput",
|
|
737
|
+
"inputFields": [
|
|
738
|
+
{
|
|
739
|
+
"name": "coinType",
|
|
740
|
+
"type": {
|
|
741
|
+
"kind": "SCALAR",
|
|
742
|
+
"name": "CoinType"
|
|
743
|
+
}
|
|
744
|
+
}
|
|
745
|
+
],
|
|
746
|
+
"isOneOf": false
|
|
747
|
+
},
|
|
609
748
|
{
|
|
610
749
|
"kind": "OBJECT",
|
|
611
750
|
"name": "AccountPermissionsConnection",
|
|
@@ -1170,6 +1309,40 @@ var introspection = {
|
|
|
1170
1309
|
"kind": "SCALAR",
|
|
1171
1310
|
"name": "CoinType"
|
|
1172
1311
|
},
|
|
1312
|
+
{
|
|
1313
|
+
"kind": "ENUM",
|
|
1314
|
+
"name": "ContenthashProtocol",
|
|
1315
|
+
"enumValues": [
|
|
1316
|
+
{
|
|
1317
|
+
"name": "ARWEAVE",
|
|
1318
|
+
"isDeprecated": false
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"name": "IPFS",
|
|
1322
|
+
"isDeprecated": false
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"name": "IPNS",
|
|
1326
|
+
"isDeprecated": false
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
"name": "ONION",
|
|
1330
|
+
"isDeprecated": false
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"name": "ONION3",
|
|
1334
|
+
"isDeprecated": false
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
"name": "SKYNET",
|
|
1338
|
+
"isDeprecated": false
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
"name": "SWARM",
|
|
1342
|
+
"isDeprecated": false
|
|
1343
|
+
}
|
|
1344
|
+
]
|
|
1345
|
+
},
|
|
1173
1346
|
{
|
|
1174
1347
|
"kind": "SCALAR",
|
|
1175
1348
|
"name": "DogecoinAddress"
|
|
@@ -1673,6 +1846,15 @@ var introspection = {
|
|
|
1673
1846
|
"args": [],
|
|
1674
1847
|
"isDeprecated": false
|
|
1675
1848
|
},
|
|
1849
|
+
{
|
|
1850
|
+
"name": "contenthash",
|
|
1851
|
+
"type": {
|
|
1852
|
+
"kind": "OBJECT",
|
|
1853
|
+
"name": "ProfileContenthash"
|
|
1854
|
+
},
|
|
1855
|
+
"args": [],
|
|
1856
|
+
"isDeprecated": false
|
|
1857
|
+
},
|
|
1676
1858
|
{
|
|
1677
1859
|
"name": "description",
|
|
1678
1860
|
"type": {
|
|
@@ -3953,6 +4135,61 @@ var introspection = {
|
|
|
3953
4135
|
],
|
|
3954
4136
|
"isOneOf": true
|
|
3955
4137
|
},
|
|
4138
|
+
{
|
|
4139
|
+
"kind": "OBJECT",
|
|
4140
|
+
"name": "NameReference",
|
|
4141
|
+
"fields": [
|
|
4142
|
+
{
|
|
4143
|
+
"name": "coinType",
|
|
4144
|
+
"type": {
|
|
4145
|
+
"kind": "NON_NULL",
|
|
4146
|
+
"ofType": {
|
|
4147
|
+
"kind": "SCALAR",
|
|
4148
|
+
"name": "CoinType"
|
|
4149
|
+
}
|
|
4150
|
+
},
|
|
4151
|
+
"args": [],
|
|
4152
|
+
"isDeprecated": false
|
|
4153
|
+
},
|
|
4154
|
+
{
|
|
4155
|
+
"name": "domain",
|
|
4156
|
+
"type": {
|
|
4157
|
+
"kind": "NON_NULL",
|
|
4158
|
+
"ofType": {
|
|
4159
|
+
"kind": "INTERFACE",
|
|
4160
|
+
"name": "Domain"
|
|
4161
|
+
}
|
|
4162
|
+
},
|
|
4163
|
+
"args": [],
|
|
4164
|
+
"isDeprecated": false
|
|
4165
|
+
},
|
|
4166
|
+
{
|
|
4167
|
+
"name": "match",
|
|
4168
|
+
"type": {
|
|
4169
|
+
"kind": "NON_NULL",
|
|
4170
|
+
"ofType": {
|
|
4171
|
+
"kind": "SCALAR",
|
|
4172
|
+
"name": "Boolean"
|
|
4173
|
+
}
|
|
4174
|
+
},
|
|
4175
|
+
"args": [],
|
|
4176
|
+
"isDeprecated": false
|
|
4177
|
+
},
|
|
4178
|
+
{
|
|
4179
|
+
"name": "resolver",
|
|
4180
|
+
"type": {
|
|
4181
|
+
"kind": "NON_NULL",
|
|
4182
|
+
"ofType": {
|
|
4183
|
+
"kind": "OBJECT",
|
|
4184
|
+
"name": "Resolver"
|
|
4185
|
+
}
|
|
4186
|
+
},
|
|
4187
|
+
"args": [],
|
|
4188
|
+
"isDeprecated": false
|
|
4189
|
+
}
|
|
4190
|
+
],
|
|
4191
|
+
"interfaces": []
|
|
4192
|
+
},
|
|
3956
4193
|
{
|
|
3957
4194
|
"kind": "OBJECT",
|
|
3958
4195
|
"name": "NameWrapperRegistration",
|
|
@@ -5099,6 +5336,58 @@ var introspection = {
|
|
|
5099
5336
|
],
|
|
5100
5337
|
"interfaces": []
|
|
5101
5338
|
},
|
|
5339
|
+
{
|
|
5340
|
+
"kind": "OBJECT",
|
|
5341
|
+
"name": "ProfileContenthash",
|
|
5342
|
+
"fields": [
|
|
5343
|
+
{
|
|
5344
|
+
"name": "decoded",
|
|
5345
|
+
"type": {
|
|
5346
|
+
"kind": "NON_NULL",
|
|
5347
|
+
"ofType": {
|
|
5348
|
+
"kind": "SCALAR",
|
|
5349
|
+
"name": "String"
|
|
5350
|
+
}
|
|
5351
|
+
},
|
|
5352
|
+
"args": [],
|
|
5353
|
+
"isDeprecated": false
|
|
5354
|
+
},
|
|
5355
|
+
{
|
|
5356
|
+
"name": "httpUrl",
|
|
5357
|
+
"type": {
|
|
5358
|
+
"kind": "SCALAR",
|
|
5359
|
+
"name": "String"
|
|
5360
|
+
},
|
|
5361
|
+
"args": [],
|
|
5362
|
+
"isDeprecated": false
|
|
5363
|
+
},
|
|
5364
|
+
{
|
|
5365
|
+
"name": "protocolType",
|
|
5366
|
+
"type": {
|
|
5367
|
+
"kind": "NON_NULL",
|
|
5368
|
+
"ofType": {
|
|
5369
|
+
"kind": "ENUM",
|
|
5370
|
+
"name": "ContenthashProtocol"
|
|
5371
|
+
}
|
|
5372
|
+
},
|
|
5373
|
+
"args": [],
|
|
5374
|
+
"isDeprecated": false
|
|
5375
|
+
},
|
|
5376
|
+
{
|
|
5377
|
+
"name": "uri",
|
|
5378
|
+
"type": {
|
|
5379
|
+
"kind": "NON_NULL",
|
|
5380
|
+
"ofType": {
|
|
5381
|
+
"kind": "SCALAR",
|
|
5382
|
+
"name": "String"
|
|
5383
|
+
}
|
|
5384
|
+
},
|
|
5385
|
+
"args": [],
|
|
5386
|
+
"isDeprecated": false
|
|
5387
|
+
}
|
|
5388
|
+
],
|
|
5389
|
+
"interfaces": []
|
|
5390
|
+
},
|
|
5102
5391
|
{
|
|
5103
5392
|
"kind": "OBJECT",
|
|
5104
5393
|
"name": "ProfileHeader",
|