-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.ts
6007 lines (5505 loc) · 239 KB
/
api.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* tslint:disable */
/* eslint-disable */
/**
* Governator API
* REST API for Governator
*
* The version of the OpenAPI document: 1.0.8
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { Configuration } from './configuration';
import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
// Some imports not used depending on template conditions
// @ts-ignore
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';
// @ts-ignore
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from './base';
/**
*
* @export
* @interface AccountBase
*/
export interface AccountBase {
/**
* account id
* @type {string}
* @memberof AccountBase
*/
'_id'?: string;
/**
* Governator user ID
* @type {string}
* @memberof AccountBase
*/
'user_id': string;
/**
* account provider id
* @type {string}
* @memberof AccountBase
*/
'provider_id': string;
/**
* Datetime when record was created
* @type {string}
* @memberof AccountBase
*/
'createdAt'?: string;
/**
* Datetime when record was last updated
* @type {string}
* @memberof AccountBase
*/
'updatedAt'?: string;
}
/**
*
* @export
* @interface BlockHeight
*/
export interface BlockHeight {
/**
* chain Id
* @type {string}
* @memberof BlockHeight
*/
'chain_id'?: string;
/**
* block
* @type {number}
* @memberof BlockHeight
*/
'block'?: number;
}
/**
*
* @export
* @interface ClientConfigBase
*/
export interface ClientConfigBase {
/**
* Provider id
* @type {string}
* @memberof ClientConfigBase
*/
'provider_id': string;
}
/**
*
* @export
* @interface CommunityAdministratorBase
*/
export interface CommunityAdministratorBase {
/**
* Provider id
* @type {string}
* @memberof CommunityAdministratorBase
*/
'provider_id': string;
}
/**
*
* @export
* @interface CommunityClientConfigBase
*/
export interface CommunityClientConfigBase {
/**
* Provider id
* @type {string}
* @memberof CommunityClientConfigBase
*/
'provider_id': string;
}
/**
*
* @export
* @interface CommunityCreateDto
*/
export interface CommunityCreateDto {
/**
* Community Name
* @type {string}
* @memberof CommunityCreateDto
*/
'name': string;
/**
* Administrators of this community
* @type {Array<CommunityAdministratorBase>}
* @memberof CommunityCreateDto
*/
'administrators': Array<CommunityAdministratorBase>;
/**
* Client config for this community
* @type {Array<CommunityClientConfigBase>}
* @memberof CommunityCreateDto
*/
'client_config': Array<CommunityClientConfigBase>;
}
/**
*
* @export
* @interface CommunityResponseDto
*/
export interface CommunityResponseDto {
/**
* Community ID - (auto generated if left blank)
* @type {string}
* @memberof CommunityResponseDto
*/
'_id'?: string;
/**
* Community Name
* @type {string}
* @memberof CommunityResponseDto
*/
'name': string;
/**
* Administrators of this community
* @type {Array<CommunityAdministratorBase>}
* @memberof CommunityResponseDto
*/
'administrators': Array<CommunityAdministratorBase>;
/**
* Client config for this community
* @type {Array<CommunityClientConfigBase>}
* @memberof CommunityResponseDto
*/
'client_config': Array<CommunityClientConfigBase>;
/**
* Datetime when record was created
* @type {string}
* @memberof CommunityResponseDto
*/
'createdAt'?: string;
/**
* Datetime when record was last updated
* @type {string}
* @memberof CommunityResponseDto
*/
'updatedAt'?: string;
}
/**
*
* @export
* @interface CommunityUpdateDto
*/
export interface CommunityUpdateDto {
/**
* Community Name
* @type {string}
* @memberof CommunityUpdateDto
*/
'name'?: string;
/**
* Administrators of this community
* @type {Array<CommunityAdministratorBase>}
* @memberof CommunityUpdateDto
*/
'administrators'?: Array<CommunityAdministratorBase>;
/**
* Client config for this community
* @type {Array<CommunityClientConfigBase>}
* @memberof CommunityUpdateDto
*/
'client_config'?: Array<CommunityClientConfigBase>;
}
/**
*
* @export
* @interface DiscordAccountCreateDto
*/
export interface DiscordAccountCreateDto {
/**
* Discord user Id
* @type {string}
* @memberof DiscordAccountCreateDto
*/
'_id': string;
/**
* Discord username
* @type {string}
* @memberof DiscordAccountCreateDto
*/
'discord_username': string;
}
/**
*
* @export
* @interface DiscordAccountResponseDto
*/
export interface DiscordAccountResponseDto {
/**
* Discord user Id
* @type {string}
* @memberof DiscordAccountResponseDto
*/
'_id': string;
/**
* Governator user ID
* @type {string}
* @memberof DiscordAccountResponseDto
*/
'user_id': string;
/**
* account provider id
* @type {string}
* @memberof DiscordAccountResponseDto
*/
'provider_id': string;
/**
* Datetime when record was created
* @type {string}
* @memberof DiscordAccountResponseDto
*/
'createdAt'?: string;
/**
* Datetime when record was last updated
* @type {string}
* @memberof DiscordAccountResponseDto
*/
'updatedAt'?: string;
/**
* Discord username
* @type {string}
* @memberof DiscordAccountResponseDto
*/
'discord_username': string;
}
/**
*
* @export
* @interface DiscordAccountUpdateDto
*/
export interface DiscordAccountUpdateDto {
/**
* Governator user ID
* @type {string}
* @memberof DiscordAccountUpdateDto
*/
'user_id'?: string;
/**
* Discord username
* @type {string}
* @memberof DiscordAccountUpdateDto
*/
'discord_username'?: string;
}
/**
*
* @export
* @interface DiscordResponseDto
*/
export interface DiscordResponseDto {
/**
* Unique Id of this request (as received from request)
* @type {string}
* @memberof DiscordResponseDto
*/
'uuid': string;
/**
* Id of data provider (e.g. discord)
* @type {string}
* @memberof DiscordResponseDto
*/
'provider_id': string;
/**
* Datasource Id
* @type {string}
* @memberof DiscordResponseDto
*/
'method': string;
/**
* Datasource Id
* @type {string}
* @memberof DiscordResponseDto
*/
'guildId': string;
/**
* Requested data
* @type {Array<object>}
* @memberof DiscordResponseDto
*/
'data': Array<object>;
}
/**
*
* @export
* @interface ERC1155BalanceOfDto
*/
export interface ERC1155BalanceOfDto {
/**
* ERC721 token contract address
* @type {string}
* @memberof ERC1155BalanceOfDto
*/
'contractAddress': string;
/**
* Chain Id
* @type {number}
* @memberof ERC1155BalanceOfDto
*/
'chain_id': number;
/**
* Block number at which the token balance will be checked
* @type {number}
* @memberof ERC1155BalanceOfDto
*/
'block_height'?: number;
/**
* Array of ERC721 token IDs to query for ownership
* @type {number}
* @memberof ERC1155BalanceOfDto
*/
'token_id': number;
}
/**
*
* @export
* @interface ERC20BalanceOfDto
*/
export interface ERC20BalanceOfDto {
/**
* ERC20 token contract address
* @type {string}
* @memberof ERC20BalanceOfDto
*/
'contractAddress': string;
/**
* Chain Id
* @type {number}
* @memberof ERC20BalanceOfDto
*/
'chain_id': number;
/**
* Block number at which the token balance will be checked
* @type {number}
* @memberof ERC20BalanceOfDto
*/
'block_height'?: number;
}
/**
*
* @export
* @interface ERC20TokenBalanceDetail
*/
export interface ERC20TokenBalanceDetail {
/**
* ERC20 token contract address
* @type {string}
* @memberof ERC20TokenBalanceDetail
*/
'contractAddress': string;
/**
* Chain Id
* @type {number}
* @memberof ERC20TokenBalanceDetail
*/
'chain_id': number;
/**
* ERC20 token name
* @type {string}
* @memberof ERC20TokenBalanceDetail
*/
'tokenName': string;
/**
* ERC20 token symbol
* @type {string}
* @memberof ERC20TokenBalanceDetail
*/
'tokenSymbol': string;
/**
* ERC20 token balance
* @type {string}
* @memberof ERC20TokenBalanceDetail
*/
'balance': string;
/**
* Block number at which the token balance will be checked
* @type {number}
* @memberof ERC20TokenBalanceDetail
*/
'block_height'?: number;
}
/**
*
* @export
* @interface ERC20TokenBalances
*/
export interface ERC20TokenBalances {
/**
* Ethereum account address
* @type {string}
* @memberof ERC20TokenBalances
*/
'account': string;
/**
* Array of ERC20 token balances
* @type {Array<ERC20TokenBalanceDetail>}
* @memberof ERC20TokenBalances
*/
'tokenBalances': Array<ERC20TokenBalanceDetail>;
}
/**
*
* @export
* @interface ERC721OwnerOfDto
*/
export interface ERC721OwnerOfDto {
/**
* ERC721 token contract address
* @type {string}
* @memberof ERC721OwnerOfDto
*/
'contractAddress': string;
/**
* Chain Id
* @type {number}
* @memberof ERC721OwnerOfDto
*/
'chain_id': number;
/**
* Array of ERC721 token IDs to query for ownership
* @type {Array<TokenIdsDto>}
* @memberof ERC721OwnerOfDto
*/
'token_ids': Array<TokenIdsDto>;
/**
* Block number at which the token balance will be checked
* @type {number}
* @memberof ERC721OwnerOfDto
*/
'block_height'?: number;
}
/**
*
* @export
* @interface EthereumAccountCreateDto
*/
export interface EthereumAccountCreateDto {
/**
* Ethereum address
* @type {string}
* @memberof EthereumAccountCreateDto
*/
'_id': string;
}
/**
*
* @export
* @interface EthereumAccountResponseDto
*/
export interface EthereumAccountResponseDto {
/**
* Ethereum address
* @type {string}
* @memberof EthereumAccountResponseDto
*/
'_id': string;
/**
* Governator user ID
* @type {string}
* @memberof EthereumAccountResponseDto
*/
'user_id': string;
/**
* account provider id
* @type {string}
* @memberof EthereumAccountResponseDto
*/
'provider_id': string;
/**
* Datetime when record was created
* @type {string}
* @memberof EthereumAccountResponseDto
*/
'createdAt'?: string;
/**
* Datetime when record was last updated
* @type {string}
* @memberof EthereumAccountResponseDto
*/
'updatedAt'?: string;
/**
* Message to be signed
* @type {string}
* @memberof EthereumAccountResponseDto
*/
'verification_message': string;
/**
* Signed message
* @type {string}
* @memberof EthereumAccountResponseDto
*/
'signed_message': string;
/**
* Whether signature has been verified
* @type {boolean}
* @memberof EthereumAccountResponseDto
*/
'verified': boolean;
}
/**
*
* @export
* @interface EthereumAccountUpdateUserDto
*/
export interface EthereumAccountUpdateUserDto {
/**
* Governator user ID
* @type {string}
* @memberof EthereumAccountUpdateUserDto
*/
'user_id': string;
}
/**
*
* @export
* @interface LinkAccountDto
*/
export interface LinkAccountDto {
/**
* Provider ID -
* @type {string}
* @memberof LinkAccountDto
*/
'provider_id': string;
/**
* Signed message
* @type {string}
* @memberof LinkAccountDto
*/
'_id': string;
}
/**
*
* @export
* @interface PollCreateDto
*/
export interface PollCreateDto {
/**
* Poll title
* @type {string}
* @memberof PollCreateDto
*/
'title': string;
/**
* Client config for this poll
* @type {Array<ClientConfigBase>}
* @memberof PollCreateDto
*/
'client_config': Array<ClientConfigBase>;
/**
* Array of strategy configs
* @type {Array<StrategyConfigCreate>}
* @memberof PollCreateDto
*/
'strategy_config'?: Array<StrategyConfigCreate>;
/**
* Poll options object
* @type {Array<PollOptionDto>}
* @memberof PollCreateDto
*/
'poll_options'?: Array<PollOptionDto>;
/**
* Whether anyone is allowed to add poll options
* @type {boolean}
* @memberof PollCreateDto
*/
'allow_options_for_anyone'?: boolean;
/**
* Whether a person can vote multiple times
* @type {boolean}
* @memberof PollCreateDto
*/
'single_vote'?: boolean;
/**
* Time the voting period ends
* @type {string}
* @memberof PollCreateDto
*/
'end_time': string;
/**
* Poll description
* @type {string}
* @memberof PollCreateDto
*/
'description': string;
/**
* Governator user ID of poll author
* @type {string}
* @memberof PollCreateDto
*/
'author_user_id': string;
}
/**
*
* @export
* @interface PollOptionDto
*/
export interface PollOptionDto {
/**
* Poll option unique id
* @type {string}
* @memberof PollOptionDto
*/
'poll_option_id': string;
/**
* Poll option id
* @type {string}
* @memberof PollOptionDto
*/
'poll_option_name': string;
/**
* Poll option emoji
* @type {string}
* @memberof PollOptionDto
*/
'poll_option_emoji': string;
}
/**
*
* @export
* @interface PollResponseDto
*/
export interface PollResponseDto {
/**
* Poll ID - (auto generated if left blank)
* @type {string}
* @memberof PollResponseDto
*/
'_id'?: string;
/**
* Poll title
* @type {string}
* @memberof PollResponseDto
*/
'title': string;
/**
* Client config for this poll
* @type {Array<ClientConfigBase>}
* @memberof PollResponseDto
*/
'client_config': Array<ClientConfigBase>;
/**
* Array of strategy configs
* @type {Array<StrategyConfig>}
* @memberof PollResponseDto
*/
'strategy_config'?: Array<StrategyConfig>;
/**
* Poll options object
* @type {Array<PollOptionDto>}
* @memberof PollResponseDto
*/
'poll_options'?: Array<PollOptionDto>;
/**
* Whether anyone is allowed to add poll options
* @type {boolean}
* @memberof PollResponseDto
*/
'allow_options_for_anyone'?: boolean;
/**
* Whether a person can vote multiple times
* @type {boolean}
* @memberof PollResponseDto
*/
'single_vote'?: boolean;
/**
* Time the voting period ends
* @type {string}
* @memberof PollResponseDto
*/
'end_time': string;
/**
* Poll description
* @type {string}
* @memberof PollResponseDto
*/
'description': string;
/**
* Governator user ID of poll author
* @type {string}
* @memberof PollResponseDto
*/
'author_user_id': string;
/**
* Datetime when record was created
* @type {string}
* @memberof PollResponseDto
*/
'createdAt'?: string;
/**
* Datetime when record was last updated
* @type {string}
* @memberof PollResponseDto
*/
'updatedAt'?: string;
}
/**
*
* @export
* @interface PollUpdateDto
*/
export interface PollUpdateDto {
/**
* Poll title
* @type {string}
* @memberof PollUpdateDto
*/
'title'?: string;
/**
* Client config for this poll
* @type {Array<ClientConfigBase>}
* @memberof PollUpdateDto
*/
'client_config'?: Array<ClientConfigBase>;
/**
* Array of strategy configs
* @type {Array<StrategyConfigCreate>}
* @memberof PollUpdateDto
*/
'strategy_config'?: Array<StrategyConfigCreate>;
/**
* Poll options object
* @type {Array<PollOptionDto>}
* @memberof PollUpdateDto
*/
'poll_options'?: Array<PollOptionDto>;
/**
* Whether anyone is allowed to add poll options
* @type {boolean}
* @memberof PollUpdateDto
*/
'allow_options_for_anyone'?: boolean;
/**
* Whether a person can vote multiple times
* @type {boolean}
* @memberof PollUpdateDto
*/
'single_vote'?: boolean;
/**
* Time the voting period ends
* @type {string}
* @memberof PollUpdateDto
*/
'end_time'?: string;
/**
* Poll description
* @type {string}
* @memberof PollUpdateDto
*/
'description'?: string;
/**
* Governator user ID of poll author
* @type {string}
* @memberof PollUpdateDto
*/
'author_user_id'?: string;
}
/**
*
* @export
* @interface SiweVerifyDto
*/
export interface SiweVerifyDto {
/**
* Ethereum account address
* @type {string}
* @memberof SiweVerifyDto
*/
'_id': string;
/**
* Verification message
* @type {string}
* @memberof SiweVerifyDto
*/
'verification_message': string;
/**
* Signed message
* @type {string}
* @memberof SiweVerifyDto
*/
'signed_message': string;
/**
*
* @type {SiweVerifyDtoLinkAccount}
* @memberof SiweVerifyDto
*/
'link_account'?: SiweVerifyDtoLinkAccount;
}
/**
* Account to be linked
* @export
* @interface SiweVerifyDtoLinkAccount
*/
export interface SiweVerifyDtoLinkAccount {
/**
* Provider ID -
* @type {string}
* @memberof SiweVerifyDtoLinkAccount
*/
'provider_id': string;
/**
* Signed message
* @type {string}
* @memberof SiweVerifyDtoLinkAccount
*/
'_id': string;
}
/**
*
* @export
* @interface StrategyConfig
*/
export interface StrategyConfig {
/**
* Strategy type
* @type {string}
* @memberof StrategyConfig
*/
'strategy_type': string;
/**
* Strategy id
* @type {string}
* @memberof StrategyConfig
*/
'strategy_id': string;
/**
* Strategy specific options
* @type {object}
* @memberof StrategyConfig
*/
'strategy_options'?: object;
/**
* Block height (block number or offset)
* @type {Array<BlockHeight>}
* @memberof StrategyConfig
*/
'block_height': Array<BlockHeight>;
}
/**
*
* @export
* @interface StrategyConfigCreate
*/
export interface StrategyConfigCreate {
/**
* Strategy id
* @type {string}
* @memberof StrategyConfigCreate
*/
'strategy_id': string;
/**
* Strategy specific options
* @type {object}
* @memberof StrategyConfigCreate
*/
'strategy_options'?: object;
/**
* Block height (block number or offset)
* @type {Array<BlockHeight>}
* @memberof StrategyConfigCreate
*/
'block_height': Array<BlockHeight>;
/**
* Strategy type
* @type {string}
* @memberof StrategyConfigCreate
*/
'strategy_type'?: string;
}
/**
*
* @export
* @interface StrategyRequestDto
*/
export interface StrategyRequestDto {
/**
* address to get voting power of
* @type {string}
* @memberof StrategyRequestDto
*/
'account_id'?: string;
/**
* user to get voting power of
* @type {Array<BlockHeight>}
* @memberof StrategyRequestDto
*/
'block_height'?: Array<BlockHeight>;
/**
* strategy specific options
* @type {object}
* @memberof StrategyRequestDto
*/
'strategy_options'?: object;
}
/**
*
* @export
* @interface StrategyResponseDto
*/
export interface StrategyResponseDto {
/**
* Strategy ID - (auto generated - hash of file name)
* @type {string}
* @memberof StrategyResponseDto
*/
'_id'?: string;
/**
* Strategy name
* @type {string}
* @memberof StrategyResponseDto
*/
'name': string;
/**
* Endpoint
* @type {string}
* @memberof StrategyResponseDto
*/
'endpoint': string;
/**
* Type of strategy
* @type {string}
* @memberof StrategyResponseDto
*/
'strategy_type': string;
/**
* Datetime when record was created
* @type {string}
* @memberof StrategyResponseDto
*/
'createdAt'?: string;
/**
* Datetime when record was last updated
* @type {string}
* @memberof StrategyResponseDto
*/
'updatedAt'?: string;
}
/**
*
* @export
* @interface Token
*/
export interface Token {
/**
* ERC20 token contract address
* @type {string}
* @memberof Token
*/
'contractAddress': string;
/**
* Chain Id
* @type {number}
* @memberof Token