cooptypes 0.0.5 → 0.2.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.d.cts CHANGED
@@ -1,4 +1,2063 @@
1
- declare const one = 1;
2
- declare const two = 2;
1
+ /**
2
+ * Обобщенное имя аккаунта пользователя, которое должно быть заменено на реальное.
3
+ */
4
+ declare const _username = "_username";
5
+ /**
6
+ * Обобщенное имя аккаунта кооператива, которое должно быть заменено на реальное.
7
+ */
8
+ declare const _coopname = "_coopname";
9
+ /**
10
+ * Обобщенное имя аккаунта председателя кооператива, которое должно быть заменено на реальное.
11
+ */
12
+ declare const _chairman = "_chairman";
13
+ /**
14
+ * Обобщенное имя аккаунта администратора кооператива, которое должно быть заменено на реальное.
15
+ */
16
+ declare const _admin = "_admin";
17
+ /**
18
+ * Обобщенное имя аккаунта контракта, которое должно быть заменено на реальное.
19
+ */
20
+ declare const _contract = "_contract";
21
+ /**
22
+ * Системное имя коллективного аккаунта делегатов. Обычно это аккаунт "eosio".
23
+ */
24
+ declare const _system$1 = "_system";
3
25
 
4
- export { one, two };
26
+ declare const index$i__admin: typeof _admin;
27
+ declare const index$i__chairman: typeof _chairman;
28
+ declare const index$i__contract: typeof _contract;
29
+ declare const index$i__coopname: typeof _coopname;
30
+ declare const index$i__username: typeof _username;
31
+ declare namespace index$i {
32
+ export { index$i__admin as _admin, index$i__chairman as _chairman, index$i__contract as _contract, index$i__coopname as _coopname, _system$1 as _system, index$i__username as _username };
33
+ }
34
+
35
+ declare const _draft: {
36
+ readonly production: "draft";
37
+ readonly testnet: "drafttest222";
38
+ };
39
+ declare const _fund: {
40
+ readonly production: "fund";
41
+ readonly testnet: "fundtest2222";
42
+ };
43
+ declare const _gateway: {
44
+ readonly production: "gateway";
45
+ readonly testnet: "gateway2222";
46
+ };
47
+ declare const _system: {
48
+ readonly production: "eosio";
49
+ readonly testnet: "eosio";
50
+ };
51
+ declare const _soviet: {
52
+ readonly production: "soviet";
53
+ readonly testnet: "soviettest22";
54
+ };
55
+ declare const _marketplace: {
56
+ readonly production: "marketplace";
57
+ readonly testnet: "markettest22";
58
+ };
59
+ declare const _registrator: {
60
+ readonly production: "registrator";
61
+ readonly testnet: "regtest22222";
62
+ };
63
+ declare const _token: {
64
+ readonly production: "eosio.token";
65
+ readonly testnet: "eosio.token";
66
+ };
67
+
68
+ declare const index$h__draft: typeof _draft;
69
+ declare const index$h__fund: typeof _fund;
70
+ declare const index$h__gateway: typeof _gateway;
71
+ declare const index$h__marketplace: typeof _marketplace;
72
+ declare const index$h__registrator: typeof _registrator;
73
+ declare const index$h__soviet: typeof _soviet;
74
+ declare const index$h__system: typeof _system;
75
+ declare const index$h__token: typeof _token;
76
+ declare namespace index$h {
77
+ export { index$h__draft as _draft, index$h__fund as _fund, index$h__gateway as _gateway, index$h__marketplace as _marketplace, index$h__registrator as _registrator, index$h__soviet as _soviet, index$h__system as _system, index$h__token as _token };
78
+ }
79
+
80
+ /**
81
+ * Активные разрешения прав доступа аккаунта для выполнения действий.
82
+ */
83
+ declare const active = "active";
84
+ /**
85
+ * Разрешения прав доступа владельца аккаунта для замены активных разрешений.
86
+ */
87
+ declare const owner = "owner";
88
+ /**
89
+ * Специальные разрешения прав доступа, которые выдаются советом кооператива аккаунту администратора с указанием контракта и имени действия, которые ему становятся доступны в кооперативе.
90
+ */
91
+ declare const special: {
92
+ readonly contract: "_contract";
93
+ readonly action: "actionName";
94
+ };
95
+ /**
96
+ * Интерфейс `Authorization` представляет собой модель авторизации в системе.
97
+ *
98
+ * @property {Array} permissions - Массив разрешений, которые могут быть активными, владельцами или специальными.
99
+ * @property {Actors} actor - Актор, который может быть пользователем, председателем, администратором, контрактом или системным аккаунтом.
100
+ */
101
+ interface Authorization {
102
+ permissions: (typeof active | typeof owner | typeof special)[];
103
+ actor: typeof _username | typeof _chairman | typeof _admin | typeof _contract | typeof _system$1;
104
+ }
105
+
106
+ type index$g_Authorization = Authorization;
107
+ declare const index$g_active: typeof active;
108
+ declare const index$g_owner: typeof owner;
109
+ declare const index$g_special: typeof special;
110
+ declare namespace index$g {
111
+ export { type index$g_Authorization as Authorization, index$g_active as active, index$g_owner as owner, index$g_special as special };
112
+ }
113
+
114
+ declare namespace index$f {
115
+ export { index$i as Actors, index$h as ContractNames, index$g as Permissions };
116
+ }
117
+
118
+ type IName$4 = string;
119
+ type IUint64$3 = number | string;
120
+ interface ICounts$2 extends ICountsBase$2 {
121
+ }
122
+ interface ICountsBase$2 {
123
+ key: IName$4;
124
+ secondary_key: IName$4;
125
+ value: IUint64$3;
126
+ }
127
+ interface ICreatedraft {
128
+ registry_id: IUint64$3;
129
+ lang: IName$4;
130
+ title: string;
131
+ description: string;
132
+ context: string;
133
+ model: string;
134
+ translation_data: string;
135
+ }
136
+ interface ICreatetrans {
137
+ draft_id: IUint64$3;
138
+ lang: IName$4;
139
+ data: string;
140
+ }
141
+ interface IDeldraft {
142
+ draft_id: IUint64$3;
143
+ }
144
+ interface IDeltrans {
145
+ translate_id: IUint64$3;
146
+ }
147
+ interface IDrafts$1 {
148
+ id: IUint64$3;
149
+ registry_id: IUint64$3;
150
+ creator: IName$4;
151
+ actions: IName$4[];
152
+ version: IUint64$3;
153
+ default_translation_id: IUint64$3;
154
+ title: string;
155
+ description: string;
156
+ context: string;
157
+ model: string;
158
+ }
159
+ interface IEdittrans {
160
+ translate_id: IUint64$3;
161
+ data: string;
162
+ }
163
+ interface INewid {
164
+ id: IUint64$3;
165
+ }
166
+ interface ITranslations$1 {
167
+ id: IUint64$3;
168
+ creator: IName$4;
169
+ draft_id: IUint64$3;
170
+ lang: IName$4;
171
+ data: string;
172
+ is_published: boolean;
173
+ is_approved: boolean;
174
+ }
175
+
176
+ type draft_ICreatedraft = ICreatedraft;
177
+ type draft_ICreatetrans = ICreatetrans;
178
+ type draft_IDeldraft = IDeldraft;
179
+ type draft_IDeltrans = IDeltrans;
180
+ type draft_IEdittrans = IEdittrans;
181
+ type draft_INewid = INewid;
182
+ declare namespace draft {
183
+ export type { ICounts$2 as ICounts, ICountsBase$2 as ICountsBase, draft_ICreatedraft as ICreatedraft, draft_ICreatetrans as ICreatetrans, draft_IDeldraft as IDeldraft, draft_IDeltrans as IDeltrans, IDrafts$1 as IDrafts, draft_IEdittrans as IEdittrans, IName$4 as IName, draft_INewid as INewid, ITranslations$1 as ITranslations, IUint64$3 as IUint64 };
184
+ }
185
+
186
+ declare const authorizations$E: readonly [{
187
+ readonly permissions: readonly ["active"];
188
+ readonly actor: {
189
+ readonly production: "eosio";
190
+ readonly testnet: "eosio";
191
+ };
192
+ }];
193
+ /**
194
+ * Имя действия
195
+ */
196
+ declare const actionName$E = "createtrans";
197
+ /**
198
+ * @interface
199
+ */
200
+ type ICreateTranslation = ICreatetrans;
201
+
202
+ type createTranslation_ICreateTranslation = ICreateTranslation;
203
+ declare namespace createTranslation {
204
+ export { type createTranslation_ICreateTranslation as ICreateTranslation, actionName$E as actionName, authorizations$E as authorizations };
205
+ }
206
+
207
+ declare const authorizations$D: readonly [{
208
+ readonly permissions: readonly ["active"];
209
+ readonly actor: {
210
+ readonly production: "eosio";
211
+ readonly testnet: "eosio";
212
+ };
213
+ }];
214
+ /**
215
+ * Имя действия
216
+ */
217
+ declare const actionName$D = "createdraft";
218
+ /**
219
+ * @interface
220
+ */
221
+ type ICreateDraft = ICreatedraft;
222
+
223
+ type createDraft_ICreateDraft = ICreateDraft;
224
+ declare namespace createDraft {
225
+ export { type createDraft_ICreateDraft as ICreateDraft, actionName$D as actionName, authorizations$D as authorizations };
226
+ }
227
+
228
+ declare const authorizations$C: readonly [{
229
+ readonly permissions: readonly ["active"];
230
+ readonly actor: {
231
+ readonly production: "eosio";
232
+ readonly testnet: "eosio";
233
+ };
234
+ }];
235
+ /**
236
+ * Имя действия
237
+ */
238
+ declare const actionName$C = "deldraft";
239
+ /**
240
+ * @interface
241
+ */
242
+ type IDeleteDraft = IDeldraft;
243
+
244
+ type deleteDraft_IDeleteDraft = IDeleteDraft;
245
+ declare namespace deleteDraft {
246
+ export { type deleteDraft_IDeleteDraft as IDeleteDraft, actionName$C as actionName, authorizations$C as authorizations };
247
+ }
248
+
249
+ declare const authorizations$B: readonly [{
250
+ readonly permissions: readonly ["active"];
251
+ readonly actor: {
252
+ readonly production: "eosio";
253
+ readonly testnet: "eosio";
254
+ };
255
+ }];
256
+ /**
257
+ * Имя действия
258
+ */
259
+ declare const actionName$B = "edittrans";
260
+ /**
261
+ * @interface
262
+ */
263
+ type IEditTranslation = IEdittrans;
264
+
265
+ type editTranslation_IEditTranslation = IEditTranslation;
266
+ declare namespace editTranslation {
267
+ export { type editTranslation_IEditTranslation as IEditTranslation, actionName$B as actionName, authorizations$B as authorizations };
268
+ }
269
+
270
+ declare const authorizations$A: readonly [{
271
+ readonly permissions: readonly ["active"];
272
+ readonly actor: {
273
+ readonly production: "draft";
274
+ readonly testnet: "drafttest222";
275
+ };
276
+ }];
277
+ /**
278
+ * Имя действия
279
+ */
280
+ declare const actionName$A = "newid";
281
+ /**
282
+ * @interface
283
+ * Действие вызывается контрактом в процессе исполнения для возврата идентификатора черновика.
284
+ */
285
+ type INewId = INewid;
286
+
287
+ type newId_INewId = INewId;
288
+ declare namespace newId {
289
+ export { type newId_INewId as INewId, actionName$A as actionName, authorizations$A as authorizations };
290
+ }
291
+
292
+ declare const index$e_createDraft: typeof createDraft;
293
+ declare const index$e_createTranslation: typeof createTranslation;
294
+ declare const index$e_deleteDraft: typeof deleteDraft;
295
+ declare const index$e_editTranslation: typeof editTranslation;
296
+ declare const index$e_newId: typeof newId;
297
+ declare namespace index$e {
298
+ export { index$e_createDraft as createDraft, index$e_createTranslation as createTranslation, index$e_deleteDraft as deleteDraft, index$e_editTranslation as editTranslation, index$e_newId as newId };
299
+ }
300
+
301
+ /**
302
+ * Имя таблицы
303
+ */
304
+ declare const tableName$c = "drafts";
305
+ /**
306
+ * Таблица хранится в {@link Actors._contract | области памяти контракта}.
307
+ */
308
+ declare const scope$c = "_contract";
309
+ /**
310
+ * @interface
311
+ * Таблица содержит переводы черновиков документов.
312
+ */
313
+ type IDrafts = IDrafts$1;
314
+
315
+ type drafts_IDrafts = IDrafts;
316
+ declare namespace drafts {
317
+ export { type drafts_IDrafts as IDrafts, scope$c as scope, tableName$c as tableName };
318
+ }
319
+
320
+ /**
321
+ * Имя таблицы
322
+ */
323
+ declare const tableName$b = "translations";
324
+ /**
325
+ * Область хранения в памяти
326
+ */
327
+ declare const scope$b = "_contract";
328
+ /**
329
+ * @interface
330
+ * Таблица содержит переводы черновиков документов.
331
+ */
332
+ type ITranslations = ITranslations$1;
333
+
334
+ type translations_ITranslations = ITranslations;
335
+ declare namespace translations {
336
+ export { type translations_ITranslations as ITranslations, scope$b as scope, tableName$b as tableName };
337
+ }
338
+
339
+ declare namespace index$d {
340
+ export { drafts as Drafts, translations as Translations };
341
+ }
342
+
343
+ declare const contractName$4: {
344
+ readonly production: "draft";
345
+ readonly testnet: "drafttest222";
346
+ };
347
+
348
+ declare namespace index$c {
349
+ export { index$e as Actions, draft as Interfaces, index$d as Tables, contractName$4 as contractName };
350
+ }
351
+
352
+ type IAsset$3 = string;
353
+ type IName$3 = string;
354
+ type ITimePointSec$2 = string;
355
+ type IUint64$2 = number | string;
356
+ interface IAccfunds {
357
+ id: IUint64$2;
358
+ coopname: IName$3;
359
+ contract: IName$3;
360
+ name: string;
361
+ description: string;
362
+ percent: IUint64$2;
363
+ available: IAsset$3;
364
+ withdrawed: IAsset$3;
365
+ }
366
+ interface IAddaccum {
367
+ coopname: IName$3;
368
+ fund_id: IUint64$2;
369
+ quantity: IAsset$3;
370
+ }
371
+ interface IAddcirculate {
372
+ coopname: IName$3;
373
+ quantity: IAsset$3;
374
+ }
375
+ interface IAddexpense {
376
+ coopname: IName$3;
377
+ fund_id: IUint64$2;
378
+ quantity: IAsset$3;
379
+ }
380
+ interface IAuthorize$1 {
381
+ coopname: IName$3;
382
+ type: IName$3;
383
+ withdraw_id: IUint64$2;
384
+ }
385
+ interface IComplete {
386
+ coopname: IName$3;
387
+ username: IName$3;
388
+ withdraw_id: IUint64$2;
389
+ }
390
+ interface ICounts$1 extends ICountsBase$1 {
391
+ }
392
+ interface ICountsBase$1 {
393
+ key: IName$3;
394
+ secondary_key: IName$3;
395
+ value: IUint64$2;
396
+ }
397
+ interface ICreatefund {
398
+ coopname: IName$3;
399
+ username: IName$3;
400
+ type: IName$3;
401
+ contract: IName$3;
402
+ name: string;
403
+ description: string;
404
+ percent: IUint64$2;
405
+ }
406
+ interface IDelfund {
407
+ coopname: IName$3;
408
+ username: IName$3;
409
+ type: IName$3;
410
+ fund_id: IUint64$2;
411
+ }
412
+ interface IDocument$2 {
413
+ hash: string;
414
+ pkey: string;
415
+ sign: string;
416
+ meta: string;
417
+ }
418
+ interface IEditfund {
419
+ coopname: IName$3;
420
+ username: IName$3;
421
+ type: IName$3;
422
+ fund_id: IUint64$2;
423
+ contract: IName$3;
424
+ name: string;
425
+ description: string;
426
+ percent: IUint64$2;
427
+ }
428
+ interface IExpfunds {
429
+ id: IUint64$2;
430
+ coopname: IName$3;
431
+ contract: IName$3;
432
+ name: string;
433
+ description: string;
434
+ expended: IAsset$3;
435
+ }
436
+ interface IFundwallet {
437
+ id: IUint64$2;
438
+ coopname: IName$3;
439
+ circulating: IAsset$3;
440
+ membership: IAsset$3;
441
+ accumulated: IAsset$3;
442
+ withdrawed: IAsset$3;
443
+ available: IAsset$3;
444
+ expended: IAsset$3;
445
+ }
446
+ interface IFundwithdraw {
447
+ coopname: IName$3;
448
+ username: IName$3;
449
+ type: IName$3;
450
+ fund_id: IUint64$2;
451
+ document: IDocument$2;
452
+ quantity: IAsset$3;
453
+ bank_data_id: string;
454
+ }
455
+ interface IFwithdraws {
456
+ id: IUint64$2;
457
+ coopname: IName$3;
458
+ username: IName$3;
459
+ status: IName$3;
460
+ type: IName$3;
461
+ fund_id: IUint64$2;
462
+ quantity: IAsset$3;
463
+ document: IDocument$2;
464
+ bank_data_id: string;
465
+ expired_at: ITimePointSec$2;
466
+ }
467
+ interface IInit$1 {
468
+ coopname: IName$3;
469
+ initial: IAsset$3;
470
+ }
471
+ interface INewfund$1 {
472
+ coopname: IName$3;
473
+ type: IName$3;
474
+ id: IUint64$2;
475
+ }
476
+ interface INewwithdraw {
477
+ coopname: IName$3;
478
+ type: IName$3;
479
+ id: IUint64$2;
480
+ }
481
+ interface ISpreadamount {
482
+ coopname: IName$3;
483
+ quantity: IAsset$3;
484
+ }
485
+ interface ISubaccum {
486
+ coopname: IName$3;
487
+ fund_id: IUint64$2;
488
+ quantity: IAsset$3;
489
+ }
490
+ interface ISubcirculate {
491
+ coopname: IName$3;
492
+ quantity: IAsset$3;
493
+ }
494
+
495
+ type fund_IAccfunds = IAccfunds;
496
+ type fund_IAddaccum = IAddaccum;
497
+ type fund_IAddcirculate = IAddcirculate;
498
+ type fund_IAddexpense = IAddexpense;
499
+ type fund_IComplete = IComplete;
500
+ type fund_ICreatefund = ICreatefund;
501
+ type fund_IDelfund = IDelfund;
502
+ type fund_IEditfund = IEditfund;
503
+ type fund_IExpfunds = IExpfunds;
504
+ type fund_IFundwallet = IFundwallet;
505
+ type fund_IFundwithdraw = IFundwithdraw;
506
+ type fund_IFwithdraws = IFwithdraws;
507
+ type fund_INewwithdraw = INewwithdraw;
508
+ type fund_ISpreadamount = ISpreadamount;
509
+ type fund_ISubaccum = ISubaccum;
510
+ type fund_ISubcirculate = ISubcirculate;
511
+ declare namespace fund {
512
+ export type { fund_IAccfunds as IAccfunds, fund_IAddaccum as IAddaccum, fund_IAddcirculate as IAddcirculate, fund_IAddexpense as IAddexpense, IAsset$3 as IAsset, IAuthorize$1 as IAuthorize, fund_IComplete as IComplete, ICounts$1 as ICounts, ICountsBase$1 as ICountsBase, fund_ICreatefund as ICreatefund, fund_IDelfund as IDelfund, IDocument$2 as IDocument, fund_IEditfund as IEditfund, fund_IExpfunds as IExpfunds, fund_IFundwallet as IFundwallet, fund_IFundwithdraw as IFundwithdraw, fund_IFwithdraws as IFwithdraws, IInit$1 as IInit, IName$3 as IName, INewfund$1 as INewfund, fund_INewwithdraw as INewwithdraw, fund_ISpreadamount as ISpreadamount, fund_ISubaccum as ISubaccum, fund_ISubcirculate as ISubcirculate, ITimePointSec$2 as ITimePointSec, IUint64$2 as IUint64 };
513
+ }
514
+
515
+ declare const authorizations$z: readonly [{
516
+ readonly permissions: readonly ["active"];
517
+ readonly actor: {
518
+ readonly production: "fund";
519
+ readonly testnet: "fundtest2222";
520
+ };
521
+ }];
522
+ /**
523
+ * Имя действия
524
+ */
525
+ declare const actionName$z = "addaccum";
526
+ /**
527
+ * @interface
528
+ */
529
+ type IAddAccumulation = IAddaccum;
530
+
531
+ type addAccumulation_IAddAccumulation = IAddAccumulation;
532
+ declare namespace addAccumulation {
533
+ export { type addAccumulation_IAddAccumulation as IAddAccumulation, actionName$z as actionName, authorizations$z as authorizations };
534
+ }
535
+
536
+ declare const authorizations$y: readonly [{
537
+ readonly permissions: readonly ["active"];
538
+ readonly actor: {
539
+ readonly production: "fund";
540
+ readonly testnet: "fundtest2222";
541
+ };
542
+ }];
543
+ /**
544
+ * Имя действия
545
+ */
546
+ declare const actionName$y = "subaccum";
547
+ /**
548
+ * @interface
549
+ */
550
+ type ISubAccumulation = ISubaccum;
551
+
552
+ type subAccumulation_ISubAccumulation = ISubAccumulation;
553
+ declare namespace subAccumulation {
554
+ export { type subAccumulation_ISubAccumulation as ISubAccumulation, actionName$y as actionName, authorizations$y as authorizations };
555
+ }
556
+
557
+ declare const authorizations$x: readonly [{
558
+ readonly permissions: readonly ["active"];
559
+ readonly actor: {
560
+ readonly production: "gateway";
561
+ readonly testnet: "gateway2222";
562
+ };
563
+ }];
564
+ /**
565
+ * Имя действия
566
+ */
567
+ declare const actionName$x = "addcirculate";
568
+ /**
569
+ * @interface
570
+ */
571
+ type IAddCirculation = IAddcirculate;
572
+
573
+ type addCirculation_IAddCirculation = IAddCirculation;
574
+ declare namespace addCirculation {
575
+ export { type addCirculation_IAddCirculation as IAddCirculation, actionName$x as actionName, authorizations$x as authorizations };
576
+ }
577
+
578
+ declare const authorizations$w: readonly [{
579
+ readonly permissions: readonly ["active"];
580
+ readonly actor: {
581
+ readonly production: "fund";
582
+ readonly testnet: "fundtest2222";
583
+ };
584
+ }];
585
+ /**
586
+ * Имя действия
587
+ */
588
+ declare const actionName$w = "addexpense";
589
+ /**
590
+ * @interface
591
+ */
592
+ type IAddExpense = IAddexpense;
593
+
594
+ type addExpense_IAddExpense = IAddExpense;
595
+ declare namespace addExpense {
596
+ export { type addExpense_IAddExpense as IAddExpense, actionName$w as actionName, authorizations$w as authorizations };
597
+ }
598
+
599
+ declare const authorizations$v: readonly [{
600
+ readonly permissions: readonly ["active"];
601
+ readonly actor: {
602
+ readonly production: "soviet";
603
+ readonly testnet: "soviettest22";
604
+ };
605
+ }];
606
+ /**
607
+ * Имя действия
608
+ */
609
+ declare const actionName$v = "authorize";
610
+ /**
611
+ * @interface
612
+ */
613
+ type IAuthorize = IAuthorize$1;
614
+
615
+ type authorizeWithdraw_IAuthorize = IAuthorize;
616
+ declare namespace authorizeWithdraw {
617
+ export { type authorizeWithdraw_IAuthorize as IAuthorize, actionName$v as actionName, authorizations$v as authorizations };
618
+ }
619
+
620
+ declare const authorizations$u: readonly [{
621
+ readonly permissions: readonly ["active", {
622
+ readonly contract: "_contract";
623
+ readonly action: "actionName";
624
+ }];
625
+ readonly actor: "_admin";
626
+ }];
627
+ /**
628
+ * Имя действия
629
+ */
630
+ declare const actionName$u = "complete";
631
+ /**
632
+ * @interface
633
+ */
634
+ type ICompleteWithdraw = IComplete;
635
+
636
+ type completeWithdraw$1_ICompleteWithdraw = ICompleteWithdraw;
637
+ declare namespace completeWithdraw$1 {
638
+ export { type completeWithdraw$1_ICompleteWithdraw as ICompleteWithdraw, actionName$u as actionName, authorizations$u as authorizations };
639
+ }
640
+
641
+ declare const authorizations$t: readonly [{
642
+ readonly permissions: readonly ["active"];
643
+ readonly actor: {
644
+ readonly production: "fund";
645
+ readonly testnet: "fundtest2222";
646
+ };
647
+ }];
648
+ /**
649
+ * Имя действия
650
+ */
651
+ declare const actionName$t = "newfund";
652
+ /**
653
+ * @interface
654
+ */
655
+ type INewfund = INewfund$1;
656
+
657
+ type newFund_INewfund = INewfund;
658
+ declare namespace newFund {
659
+ export { type newFund_INewfund as INewfund, actionName$t as actionName, authorizations$t as authorizations };
660
+ }
661
+
662
+ declare const authorizations$s: readonly [{
663
+ readonly permissions: readonly ["active"];
664
+ readonly actor: "_chairman";
665
+ }];
666
+ /**
667
+ * Имя действия
668
+ */
669
+ declare const actionName$s = "createfund";
670
+ /**
671
+ * @interface
672
+ */
673
+ type ICreateFund = ICreatefund;
674
+
675
+ type createFund_ICreateFund = ICreateFund;
676
+ declare namespace createFund {
677
+ export { type createFund_ICreateFund as ICreateFund, actionName$s as actionName, authorizations$s as authorizations };
678
+ }
679
+
680
+ declare const authorizations$r: readonly [{
681
+ readonly permissions: readonly ["active"];
682
+ readonly actor: "_chairman";
683
+ }];
684
+ /**
685
+ * Имя действия
686
+ */
687
+ declare const actionName$r = "delfund";
688
+ /**
689
+ * @interface
690
+ */
691
+ type IDeleteFund = IDelfund;
692
+
693
+ type deleteFund_IDeleteFund = IDeleteFund;
694
+ declare namespace deleteFund {
695
+ export { type deleteFund_IDeleteFund as IDeleteFund, actionName$r as actionName, authorizations$r as authorizations };
696
+ }
697
+
698
+ declare const authorizations$q: readonly [{
699
+ readonly permissions: readonly ["active"];
700
+ readonly actor: "_chairman";
701
+ }];
702
+ /**
703
+ * Имя действия
704
+ */
705
+ declare const actionName$q = "editfund";
706
+ /**
707
+ * @interface
708
+ */
709
+ type IEditFund = IEditfund;
710
+
711
+ type editFund_IEditFund = IEditFund;
712
+ declare namespace editFund {
713
+ export { type editFund_IEditFund as IEditFund, actionName$q as actionName, authorizations$q as authorizations };
714
+ }
715
+
716
+ /**
717
+ * Требуется авторизация {@link Actors._username | аккаунта пользователя} для возврата паевого взноса,
718
+ * авторизация {@link Actors._admin | аккаунта администратора} со специальной доверенностью совета
719
+ * на совершение действия или авторизация любого {@link Actors._contract | контракта},
720
+ * которому было передано управление фондом накопления или списания.
721
+ */
722
+ declare const authorizations$p: readonly [{
723
+ readonly permissions: readonly ["active"];
724
+ readonly actor: "_username";
725
+ }, {
726
+ readonly permissions: readonly ["active", {
727
+ readonly contract: "_contract";
728
+ readonly action: "actionName";
729
+ }];
730
+ readonly actor: "_admin";
731
+ }, {
732
+ readonly permissions: readonly ["active"];
733
+ readonly actor: "_contract";
734
+ }];
735
+ /**
736
+ * Имя действия
737
+ */
738
+ declare const actionName$p = "fundwithdraw";
739
+ /**
740
+ * @interface
741
+ */
742
+ type ICreateWithdraw = IFundwithdraw;
743
+
744
+ type createWithdraw$1_ICreateWithdraw = ICreateWithdraw;
745
+ declare namespace createWithdraw$1 {
746
+ export { type createWithdraw$1_ICreateWithdraw as ICreateWithdraw, actionName$p as actionName, authorizations$p as authorizations };
747
+ }
748
+
749
+ declare const authorizations$o: readonly [{
750
+ readonly permissions: readonly ["active"];
751
+ readonly actor: {
752
+ readonly production: "soviet";
753
+ readonly testnet: "soviettest22";
754
+ };
755
+ }];
756
+ /**
757
+ * Имя действия
758
+ */
759
+ declare const actionName$o = "init";
760
+ /**
761
+ * @interface
762
+ */
763
+ type IInit = IInit$1;
764
+
765
+ type init_IInit = IInit;
766
+ declare namespace init {
767
+ export { type init_IInit as IInit, actionName$o as actionName, authorizations$o as authorizations };
768
+ }
769
+
770
+ declare const authorizations$n: readonly [{
771
+ readonly permissions: readonly ["active"];
772
+ readonly actor: {
773
+ readonly production: "fund";
774
+ readonly testnet: "fundtest2222";
775
+ };
776
+ }];
777
+ /**
778
+ * Имя действия
779
+ */
780
+ declare const actionName$n = "newwithdraw";
781
+ /**
782
+ * @interface
783
+ */
784
+ type INewWithdraw = INewwithdraw;
785
+
786
+ type newWithdraw_INewWithdraw = INewWithdraw;
787
+ declare namespace newWithdraw {
788
+ export { type newWithdraw_INewWithdraw as INewWithdraw, actionName$n as actionName, authorizations$n as authorizations };
789
+ }
790
+
791
+ declare const authorizations$m: readonly [{
792
+ readonly permissions: readonly ["active"];
793
+ readonly actor: {
794
+ readonly production: "marketplace";
795
+ readonly testnet: "markettest22";
796
+ };
797
+ }, {
798
+ readonly permissions: readonly ["active"];
799
+ readonly actor: {
800
+ readonly production: "gateway";
801
+ readonly testnet: "gateway2222";
802
+ };
803
+ }];
804
+ /**
805
+ * Имя действия
806
+ */
807
+ declare const actionName$m = "spreadamount";
808
+ /**
809
+ * @interface
810
+ */
811
+ type ISpreadAmount = ISpreadamount;
812
+
813
+ type spreadAmount_ISpreadAmount = ISpreadAmount;
814
+ declare namespace spreadAmount {
815
+ export { type spreadAmount_ISpreadAmount as ISpreadAmount, actionName$m as actionName, authorizations$m as authorizations };
816
+ }
817
+
818
+ declare const authorizations$l: readonly [{
819
+ readonly permissions: readonly ["active"];
820
+ readonly actor: {
821
+ readonly production: "gateway";
822
+ readonly testnet: "gateway2222";
823
+ };
824
+ }];
825
+ /**
826
+ * Имя действия
827
+ */
828
+ declare const actionName$l = "subcirculate";
829
+ /**
830
+ * @interface
831
+ */
832
+ type ISubCirculation = ISubcirculate;
833
+
834
+ type subCirculation_ISubCirculation = ISubCirculation;
835
+ declare namespace subCirculation {
836
+ export { type subCirculation_ISubCirculation as ISubCirculation, actionName$l as actionName, authorizations$l as authorizations };
837
+ }
838
+
839
+ /**
840
+ * @private
841
+ * Вызывается контрактом автоматически по ходу выполнения логики для прозрачного добавления фонда накопления.
842
+ */
843
+
844
+ declare const index$b_addAccumulation: typeof addAccumulation;
845
+ declare const index$b_addCirculation: typeof addCirculation;
846
+ declare const index$b_addExpense: typeof addExpense;
847
+ declare const index$b_authorizeWithdraw: typeof authorizeWithdraw;
848
+ declare const index$b_createFund: typeof createFund;
849
+ declare const index$b_deleteFund: typeof deleteFund;
850
+ declare const index$b_editFund: typeof editFund;
851
+ declare const index$b_init: typeof init;
852
+ declare const index$b_newFund: typeof newFund;
853
+ declare const index$b_newWithdraw: typeof newWithdraw;
854
+ declare const index$b_spreadAmount: typeof spreadAmount;
855
+ declare const index$b_subAccumulation: typeof subAccumulation;
856
+ declare const index$b_subCirculation: typeof subCirculation;
857
+ declare namespace index$b {
858
+ export { index$b_addAccumulation as addAccumulation, index$b_addCirculation as addCirculation, index$b_addExpense as addExpense, index$b_authorizeWithdraw as authorizeWithdraw, completeWithdraw$1 as completeWithdraw, index$b_createFund as createFund, createWithdraw$1 as createWithdraw, index$b_deleteFund as deleteFund, index$b_editFund as editFund, index$b_init as init, index$b_newFund as newFund, index$b_newWithdraw as newWithdraw, index$b_spreadAmount as spreadAmount, index$b_subAccumulation as subAccumulation, index$b_subCirculation as subCirculation };
859
+ }
860
+
861
+ /**
862
+ * Имя таблицы
863
+ */
864
+ declare const tableName$a = "accfunds";
865
+ /**
866
+ * Таблица хранится в {@link ContractNames._fund | области памяти контракта}.
867
+ */
868
+ declare const scope$a: {
869
+ /**
870
+ * Имя таблицы
871
+ */
872
+ readonly production: "fund";
873
+ readonly testnet: "fundtest2222";
874
+ };
875
+ /**
876
+ * @interface
877
+ * Таблица содержит переводы черновиков документов.
878
+ */
879
+ type IAccumulatedFunds = IAccfunds;
880
+
881
+ type accumulationFunds_IAccumulatedFunds = IAccumulatedFunds;
882
+ declare namespace accumulationFunds {
883
+ export { type accumulationFunds_IAccumulatedFunds as IAccumulatedFunds, scope$a as scope, tableName$a as tableName };
884
+ }
885
+
886
+ /**
887
+ * Имя таблицы
888
+ */
889
+ declare const tableName$9 = "expfunds";
890
+ /**
891
+ * Таблица хранится в {@link ContractNames._fund | области памяти контракта}.
892
+ */
893
+ declare const scope$9: {
894
+ /**
895
+ * Имя таблицы
896
+ */
897
+ readonly production: "fund";
898
+ readonly testnet: "fundtest2222";
899
+ };
900
+ /**
901
+ * @interface
902
+ */
903
+ type IExpensedFunds = IExpfunds;
904
+
905
+ type expenseFunds_IExpensedFunds = IExpensedFunds;
906
+ declare namespace expenseFunds {
907
+ export { type expenseFunds_IExpensedFunds as IExpensedFunds, scope$9 as scope, tableName$9 as tableName };
908
+ }
909
+
910
+ /**
911
+ * Имя таблицы
912
+ */
913
+ declare const tableName$8 = "fundwallet";
914
+ /**
915
+ * Таблица хранится в {@link ContractNames._fund | области памяти контракта}.
916
+ */
917
+ declare const scope$8: {
918
+ /**
919
+ * Имя таблицы
920
+ */
921
+ readonly production: "fund";
922
+ readonly testnet: "fundtest2222";
923
+ };
924
+ /**
925
+ * @interface
926
+ */
927
+ type IFundWallet = IFundwallet;
928
+
929
+ type fundWallet_IFundWallet = IFundWallet;
930
+ declare namespace fundWallet {
931
+ export { type fundWallet_IFundWallet as IFundWallet, scope$8 as scope, tableName$8 as tableName };
932
+ }
933
+
934
+ /**
935
+ * Имя таблицы
936
+ */
937
+ declare const tableName$7 = "fwithdraws";
938
+ /**
939
+ * Таблица хранится в {@link ContractNames._fund | области памяти контракта}.
940
+ */
941
+ declare const scope$7: {
942
+ /**
943
+ * Имя таблицы
944
+ */
945
+ readonly production: "fund";
946
+ readonly testnet: "fundtest2222";
947
+ };
948
+ /**
949
+ * @interface
950
+ */
951
+ type IFundWithdraws = IFwithdraws;
952
+
953
+ type fundWithdraws_IFundWithdraws = IFundWithdraws;
954
+ declare namespace fundWithdraws {
955
+ export { type fundWithdraws_IFundWithdraws as IFundWithdraws, scope$7 as scope, tableName$7 as tableName };
956
+ }
957
+
958
+ /**
959
+ * Таблица содержит информацию о фондах накопления и их балансах.
960
+ *
961
+ */
962
+
963
+ declare namespace index$a {
964
+ export { accumulationFunds as AccumulatedFunds, expenseFunds as ExpensedFunds, fundWallet as FundWallet, fundWithdraws as FundWithdraws };
965
+ }
966
+
967
+ declare const contractName$3: {
968
+ readonly production: "fund";
969
+ readonly testnet: "fundtest2222";
970
+ };
971
+
972
+ declare namespace index$9 {
973
+ export { index$b as Actions, fund as Interfaces, index$a as Tables, contractName$3 as contractName };
974
+ }
975
+
976
+ /** Представляет значение актива */
977
+ type IAsset$2 = string;
978
+ /** Представляет значение имени */
979
+ type IName$2 = string;
980
+ /** Представляет значение времени в секундах */
981
+ type ITimePointSec$1 = string;
982
+ /** Представляет 64-битное беззнаковое целое число */
983
+ type IUint64$1 = number | string;
984
+ interface IBalances$1 extends IBalancesBase$1 {
985
+ }
986
+ interface IBalancesBase$1 {
987
+ /** Уникальный идентификатор баланса */
988
+ id: IUint64$1;
989
+ /** Имя контракта */
990
+ contract: IName$2;
991
+ /** Количество актива */
992
+ quantity: IAsset$2;
993
+ }
994
+ interface ICounts extends ICountsBase {
995
+ }
996
+ interface ICountsBase {
997
+ /** Значение ключа */
998
+ key: IName$2;
999
+ /** Значение вторичного ключа */
1000
+ secondary_key: IName$2;
1001
+ /** Значение, связанное с ключами */
1002
+ value: IUint64$1;
1003
+ }
1004
+ interface IDeposit {
1005
+ /** Имя кооператива */
1006
+ coopname: IName$2;
1007
+ /** Имя пользователя */
1008
+ username: IName$2;
1009
+ /** Тип депозита */
1010
+ type: IName$2;
1011
+ /** Количество актива */
1012
+ quantity: IAsset$2;
1013
+ }
1014
+ interface IDeposits$1 {
1015
+ /** Уникальный идентификатор депозита */
1016
+ id: IUint64$1;
1017
+ /** Имя пользователя */
1018
+ username: IName$2;
1019
+ /** Имя кооператива */
1020
+ coopname: IName$2;
1021
+ /** Тип депозита */
1022
+ type: IName$2;
1023
+ /** Имя контракта токена */
1024
+ token_contract: IName$2;
1025
+ /** Количество актива */
1026
+ quantity: IAsset$2;
1027
+ /** Статус депозита */
1028
+ status: IName$2;
1029
+ /** Связанная ссылка с депозитом */
1030
+ link: string;
1031
+ /** Дополнительное примечание для депозита */
1032
+ memo: string;
1033
+ /** Время истечения срока действия депозита */
1034
+ expired_at: ITimePointSec$1;
1035
+ }
1036
+ interface IDocument$1 {
1037
+ /** Хэш-значение документа */
1038
+ hash: string;
1039
+ /** Публичный ключ, связанный с документом */
1040
+ pkey: string;
1041
+ /** Подпись документа */
1042
+ sign: string;
1043
+ /** Метаданные документа */
1044
+ meta: string;
1045
+ }
1046
+ interface IDpcomplete {
1047
+ /** Имя кооператива */
1048
+ coopname: IName$2;
1049
+ /** Имя администратора */
1050
+ admin: IName$2;
1051
+ /** Уникальный идентификатор депозита */
1052
+ deposit_id: IUint64$1;
1053
+ /** Дополнительное примечание для завершения */
1054
+ memo: string;
1055
+ }
1056
+ interface IDpfail {
1057
+ /** Имя кооператива */
1058
+ coopname: IName$2;
1059
+ /** Имя администратора */
1060
+ admin: IName$2;
1061
+ /** Уникальный идентификатор депозита */
1062
+ deposit_id: IUint64$1;
1063
+ /** Дополнительное примечание для отказа */
1064
+ memo: string;
1065
+ }
1066
+ interface INewdepositid {
1067
+ /** Имя пользователя */
1068
+ username: IName$2;
1069
+ /** Уникальный идентификатор депозита */
1070
+ id: IUint64$1;
1071
+ }
1072
+ interface INewwithdrid {
1073
+ /** Имя пользователя */
1074
+ username: IName$2;
1075
+ /** Уникальный идентификатор вывода */
1076
+ id: IUint64$1;
1077
+ }
1078
+ interface IWithdraw {
1079
+ /** Имя кооператива */
1080
+ coopname: IName$2;
1081
+ /** Имя пользователя */
1082
+ username: IName$2;
1083
+ /** Количество актива */
1084
+ quantity: IAsset$2;
1085
+ /** Документ, связанный с выводом */
1086
+ document: IDocument$1;
1087
+ /** Идентификатор банковских данных */
1088
+ bank_data_id: string;
1089
+ /** Дополнительное примечание для вывода */
1090
+ memo: string;
1091
+ }
1092
+ interface IWithdrawauth {
1093
+ /** Имя кооператива */
1094
+ coopname: IName$2;
1095
+ /** Уникальный идентификатор вывода */
1096
+ withdraw_id: IUint64$1;
1097
+ }
1098
+ interface IWithdraws$1 {
1099
+ /** Уникальный идентификатор вывода */
1100
+ id: IUint64$1;
1101
+ /** Имя пользователя */
1102
+ username: IName$2;
1103
+ /** Имя кооператива */
1104
+ coopname: IName$2;
1105
+ /** Идентификатор банковских данных */
1106
+ bank_data_id: string;
1107
+ /** Имя контракта токена */
1108
+ token_contract: IName$2;
1109
+ /** Количество актива */
1110
+ quantity: IAsset$2;
1111
+ /** Статус вывода */
1112
+ status: IName$2;
1113
+ /** Документ, связанный с выводом */
1114
+ document: IDocument$1;
1115
+ /** Дополнительное примечание для вывода */
1116
+ memo: string;
1117
+ /** Время создания вывода */
1118
+ created_at: ITimePointSec$1;
1119
+ }
1120
+ interface IWthdcomplete {
1121
+ /** Имя кооператива */
1122
+ coopname: IName$2;
1123
+ /** Имя администратора */
1124
+ admin: IName$2;
1125
+ /** Уникальный идентификатор вывода */
1126
+ withdraw_id: IUint64$1;
1127
+ /** Дополнительное примечание для завершения */
1128
+ memo: string;
1129
+ }
1130
+ interface IWthdfail {
1131
+ /** Имя кооператива */
1132
+ coopname: IName$2;
1133
+ /** Имя администратора */
1134
+ admin: IName$2;
1135
+ /** Уникальный идентификатор вывода */
1136
+ withdraw_id: IUint64$1;
1137
+ /** Дополнительное примечание для отказа */
1138
+ memo: string;
1139
+ }
1140
+
1141
+ type gateway_ICounts = ICounts;
1142
+ type gateway_ICountsBase = ICountsBase;
1143
+ type gateway_IDeposit = IDeposit;
1144
+ type gateway_IDpcomplete = IDpcomplete;
1145
+ type gateway_IDpfail = IDpfail;
1146
+ type gateway_INewdepositid = INewdepositid;
1147
+ type gateway_INewwithdrid = INewwithdrid;
1148
+ type gateway_IWithdraw = IWithdraw;
1149
+ type gateway_IWithdrawauth = IWithdrawauth;
1150
+ type gateway_IWthdcomplete = IWthdcomplete;
1151
+ type gateway_IWthdfail = IWthdfail;
1152
+ declare namespace gateway {
1153
+ export type { IAsset$2 as IAsset, IBalances$1 as IBalances, IBalancesBase$1 as IBalancesBase, gateway_ICounts as ICounts, gateway_ICountsBase as ICountsBase, gateway_IDeposit as IDeposit, IDeposits$1 as IDeposits, IDocument$1 as IDocument, gateway_IDpcomplete as IDpcomplete, gateway_IDpfail as IDpfail, IName$2 as IName, gateway_INewdepositid as INewdepositid, gateway_INewwithdrid as INewwithdrid, ITimePointSec$1 as ITimePointSec, IUint64$1 as IUint64, gateway_IWithdraw as IWithdraw, gateway_IWithdrawauth as IWithdrawauth, IWithdraws$1 as IWithdraws, gateway_IWthdcomplete as IWthdcomplete, gateway_IWthdfail as IWthdfail };
1154
+ }
1155
+
1156
+ /**
1157
+ * Имя действия
1158
+ * Требуется авторизация {@link Actors._coopname | технического аккаунта кооператива} со специальным разрешением.
1159
+ */
1160
+ declare const authorizations$k: readonly [{
1161
+ readonly permissions: readonly ["active", {
1162
+ readonly contract: "_contract";
1163
+ readonly action: "actionName";
1164
+ }];
1165
+ readonly actor: "_coopname";
1166
+ }];
1167
+ /**
1168
+ * Имя действия
1169
+ */
1170
+ declare const actionName$k = "deposit";
1171
+ /**
1172
+ * @interface
1173
+ * Действие для создания заявки на взнос в кошелёк, которое производится уполномоченным аккаунтом от кооператива с бэкенда.
1174
+ * Создает новую запись депозита в таблице.
1175
+ *
1176
+ * @prop coopname Имя аккаунта кооператива, в рамках которого создается депозит.
1177
+ * @prop username Имя пользователя, создающего запись.
1178
+ * @prop type Тип заявки на депозит ('registration' или 'deposit').
1179
+ * @prop quantity Количество в формате asset.
1180
+ */
1181
+ type ICreateDeposit = IDeposit;
1182
+
1183
+ type createDeposit_ICreateDeposit = ICreateDeposit;
1184
+ declare namespace createDeposit {
1185
+ export { type createDeposit_ICreateDeposit as ICreateDeposit, actionName$k as actionName, authorizations$k as authorizations };
1186
+ }
1187
+
1188
+ /**
1189
+ * Имя действия
1190
+ * Требуется авторизация {@link Actors._admin | администратора кооператива} со специальным разрешением.
1191
+ */
1192
+ declare const authorizations$j: readonly [{
1193
+ readonly permissions: readonly ["active", {
1194
+ readonly contract: "_contract";
1195
+ readonly action: "actionName";
1196
+ }];
1197
+ readonly actor: "_admin";
1198
+ }];
1199
+ /**
1200
+ * Имя действия
1201
+ */
1202
+ declare const actionName$j = "dpcomplete";
1203
+ /**
1204
+ * @interface
1205
+ */
1206
+ type ICompleteDeposit = IDpcomplete;
1207
+
1208
+ type completeDeposit_ICompleteDeposit = ICompleteDeposit;
1209
+ declare namespace completeDeposit {
1210
+ export { type completeDeposit_ICompleteDeposit as ICompleteDeposit, actionName$j as actionName, authorizations$j as authorizations };
1211
+ }
1212
+
1213
+ /**
1214
+ * Имя действия
1215
+ * Требуется авторизация {@link Actors._admin | администратором кооператива} со специальным разрешением.
1216
+ */
1217
+ declare const authorizations$i: readonly [{
1218
+ readonly permissions: readonly ["active", {
1219
+ readonly contract: "_contract";
1220
+ readonly action: "actionName";
1221
+ }];
1222
+ readonly actor: "_admin";
1223
+ }];
1224
+ /**
1225
+ * Имя действия
1226
+ */
1227
+ declare const actionName$i = "dpfail";
1228
+ /**
1229
+ * @interface
1230
+ */
1231
+ type IFailDeposit$2 = IDpfail;
1232
+
1233
+ declare namespace failDeposit {
1234
+ export { type IFailDeposit$2 as IFailDeposit, actionName$i as actionName, authorizations$i as authorizations };
1235
+ }
1236
+
1237
+ /**
1238
+ * Имя действия
1239
+ * Требуется авторизация {@link ContractNames._gateway | аккаунта контракта шлюза}.
1240
+ */
1241
+ declare const authorizations$h: readonly [{
1242
+ readonly permissions: readonly ["active"];
1243
+ readonly actor: {
1244
+ readonly production: "gateway";
1245
+ readonly testnet: "gateway2222";
1246
+ };
1247
+ }];
1248
+ /**
1249
+ * Имя действия
1250
+ */
1251
+ declare const actionName$h = "newdepositid";
1252
+ /**
1253
+ * @interface
1254
+ */
1255
+ type NewDepositId = INewdepositid;
1256
+
1257
+ type newDepositId_NewDepositId = NewDepositId;
1258
+ declare namespace newDepositId {
1259
+ export { type newDepositId_NewDepositId as NewDepositId, actionName$h as actionName, authorizations$h as authorizations };
1260
+ }
1261
+
1262
+ /**
1263
+ * Имя действия
1264
+ * Требуется авторизация {@link ContractNames._gateway | аккаунта контракта шлюза}.
1265
+ */
1266
+ declare const authorizations$g: readonly [{
1267
+ readonly permissions: readonly ["active"];
1268
+ readonly actor: {
1269
+ readonly production: "gateway";
1270
+ readonly testnet: "gateway2222";
1271
+ };
1272
+ }];
1273
+ /**
1274
+ * Имя действия
1275
+ */
1276
+ declare const actionName$g = "newwithdrid";
1277
+ /**
1278
+ * @interface
1279
+ */
1280
+ type NewWithdrawId = INewwithdrid;
1281
+
1282
+ type newWithdrawId_NewWithdrawId = NewWithdrawId;
1283
+ declare namespace newWithdrawId {
1284
+ export { type newWithdrawId_NewWithdrawId as NewWithdrawId, actionName$g as actionName, authorizations$g as authorizations };
1285
+ }
1286
+
1287
+ /**
1288
+ * Имя действия
1289
+ * Требуется авторизация {@link Actors._username | пользователя}.
1290
+ */
1291
+ declare const authorizations$f: readonly [{
1292
+ readonly permissions: readonly ["active"];
1293
+ readonly actor: "_username";
1294
+ }];
1295
+ /**
1296
+ * Имя действия
1297
+ */
1298
+ declare const actionName$f = "withdraw";
1299
+ /**
1300
+ * @interface
1301
+ * Действие для создания заявки на возврат паевого взноса из кошелька.
1302
+ */
1303
+ type IFailDeposit$1 = IWithdraw;
1304
+
1305
+ declare namespace createWithdraw {
1306
+ export { type IFailDeposit$1 as IFailDeposit, actionName$f as actionName, authorizations$f as authorizations };
1307
+ }
1308
+
1309
+ /**
1310
+ * Имя действия
1311
+ * Требуется авторизация {@link Actors._admin | администратора}.
1312
+ */
1313
+ declare const authorizations$e: readonly [{
1314
+ readonly permissions: readonly ["active", {
1315
+ readonly contract: "_contract";
1316
+ readonly action: "actionName";
1317
+ }];
1318
+ readonly actor: "_admin";
1319
+ }];
1320
+ /**
1321
+ * Имя действия
1322
+ */
1323
+ declare const actionName$e = "wthdcomplete";
1324
+ /**
1325
+ * @interface
1326
+ * Действие для подтверждения платежа по возврату паевого взноса пользователю.
1327
+ */
1328
+ type IFailDeposit = IWthdcomplete;
1329
+
1330
+ type completeWithdraw_IFailDeposit = IFailDeposit;
1331
+ declare namespace completeWithdraw {
1332
+ export { type completeWithdraw_IFailDeposit as IFailDeposit, actionName$e as actionName, authorizations$e as authorizations };
1333
+ }
1334
+
1335
+ /**
1336
+ * Имя действия
1337
+ * Требуется авторизация {@link Actors._admin | администратора кооператива} со специальным разрешением.
1338
+ */
1339
+ declare const authorizations$d: readonly [{
1340
+ readonly permissions: readonly ["active", {
1341
+ readonly contract: "_contract";
1342
+ readonly action: "actionName";
1343
+ }];
1344
+ readonly actor: "_admin";
1345
+ }];
1346
+ /**
1347
+ * Имя действия
1348
+ */
1349
+ declare const actionName$d = "wthdfail";
1350
+ /**
1351
+ * @interface
1352
+ */
1353
+ type IFailWithdraw = IWthdfail;
1354
+
1355
+ type failWithdraw_IFailWithdraw = IFailWithdraw;
1356
+ declare namespace failWithdraw {
1357
+ export { type failWithdraw_IFailWithdraw as IFailWithdraw, actionName$d as actionName, authorizations$d as authorizations };
1358
+ }
1359
+
1360
+ /**
1361
+ * Вызывается техническим аккаунтом кооператива для создания объекта депозита со статусом платежа.
1362
+ */
1363
+
1364
+ declare const index$8_completeDeposit: typeof completeDeposit;
1365
+ declare const index$8_completeWithdraw: typeof completeWithdraw;
1366
+ declare const index$8_createDeposit: typeof createDeposit;
1367
+ declare const index$8_createWithdraw: typeof createWithdraw;
1368
+ declare const index$8_failDeposit: typeof failDeposit;
1369
+ declare const index$8_failWithdraw: typeof failWithdraw;
1370
+ declare const index$8_newDepositId: typeof newDepositId;
1371
+ declare const index$8_newWithdrawId: typeof newWithdrawId;
1372
+ declare namespace index$8 {
1373
+ export { index$8_completeDeposit as completeDeposit, index$8_completeWithdraw as completeWithdraw, index$8_createDeposit as createDeposit, index$8_createWithdraw as createWithdraw, index$8_failDeposit as failDeposit, index$8_failWithdraw as failWithdraw, index$8_newDepositId as newDepositId, index$8_newWithdrawId as newWithdrawId };
1374
+ }
1375
+
1376
+ /**
1377
+ * Имя таблицы
1378
+ */
1379
+ declare const tableName$6 = "deposits";
1380
+ /**
1381
+ * Таблица хранится в {@link ContractNames._gateway | области памяти контракта}.
1382
+ */
1383
+ /**
1384
+ * Этот файл содержит интерфейс для таблицы "deposits".
1385
+ */
1386
+ declare const scope$6: {
1387
+ readonly production: "gateway";
1388
+ readonly testnet: "gateway2222";
1389
+ };
1390
+ /**
1391
+ * @interface
1392
+ * Таблица содержит переводы черновиков документов.
1393
+ */
1394
+ type IDeposits = IDeposits$1;
1395
+
1396
+ type deposits_IDeposits = IDeposits;
1397
+ declare namespace deposits {
1398
+ export { type deposits_IDeposits as IDeposits, scope$6 as scope, tableName$6 as tableName };
1399
+ }
1400
+
1401
+ /**
1402
+ * Имя таблицы
1403
+ */
1404
+ declare const tableName$5 = "withdraws";
1405
+ /**
1406
+ * Таблица хранится в {@link ContractNames._gateway | области памяти контракта}.
1407
+ */
1408
+ declare const scope$5: {
1409
+ readonly production: "gateway";
1410
+ readonly testnet: "gateway2222";
1411
+ };
1412
+ /**
1413
+ * @interface
1414
+ * Таблица содержит переводы черновиков документов.
1415
+ */
1416
+ type IWithdraws = IWithdraws$1;
1417
+
1418
+ type withdraws_IWithdraws = IWithdraws;
1419
+ declare namespace withdraws {
1420
+ export { type withdraws_IWithdraws as IWithdraws, scope$5 as scope, tableName$5 as tableName };
1421
+ }
1422
+
1423
+ declare namespace index$7 {
1424
+ export { deposits as Deposits, withdraws as Withdrws };
1425
+ }
1426
+
1427
+ declare const contractName$2: {
1428
+ readonly production: "gateway";
1429
+ readonly testnet: "gateway2222";
1430
+ };
1431
+
1432
+ declare namespace index$6 {
1433
+ export { index$8 as Actions, gateway as Interfaces, index$7 as Tables, contractName$2 as contractName };
1434
+ }
1435
+
1436
+ type IAsset$1 = string;
1437
+ type IName$1 = string;
1438
+ type IPublicKey = string;
1439
+ type ITimePointSec = string;
1440
+ type IUint64 = number | string;
1441
+ interface IAccounts$1 {
1442
+ username: IName$1;
1443
+ referer: IName$1;
1444
+ registrator: IName$1;
1445
+ type: IName$1;
1446
+ status: IName$1;
1447
+ meta: string;
1448
+ reputation: IUint64;
1449
+ registration_amount: IAsset$1;
1450
+ registered_at: ITimePointSec;
1451
+ signature_expires_at: ITimePointSec;
1452
+ }
1453
+ interface IBalances extends IBalancesBase {
1454
+ }
1455
+ interface IBalancesBase {
1456
+ id: IUint64;
1457
+ contract: IName$1;
1458
+ quantity: IAsset$1;
1459
+ }
1460
+ interface IChangekey {
1461
+ username: IName$1;
1462
+ public_key: IPublicKey;
1463
+ }
1464
+ interface IConfirmreg {
1465
+ coopname: IName$1;
1466
+ member: IName$1;
1467
+ }
1468
+ interface IDocument {
1469
+ hash: string;
1470
+ pkey: string;
1471
+ sign: string;
1472
+ meta: string;
1473
+ }
1474
+ interface IJoincoop {
1475
+ coopname: IName$1;
1476
+ username: IName$1;
1477
+ document: IDocument;
1478
+ }
1479
+ interface INewaccount {
1480
+ registrator: IName$1;
1481
+ referer: IName$1;
1482
+ username: IName$1;
1483
+ public_key: IPublicKey;
1484
+ signature_hash: string;
1485
+ meta: string;
1486
+ }
1487
+ interface IOrgData {
1488
+ storage: IStorage;
1489
+ is_cooperative: boolean;
1490
+ coop_type: IName$1;
1491
+ token_contract: IName$1;
1492
+ announce: string;
1493
+ description: string;
1494
+ initial: IAsset$1;
1495
+ minimum: IAsset$1;
1496
+ }
1497
+ interface IOrgs {
1498
+ username: IName$1;
1499
+ parent_username: IName$1;
1500
+ verifications: IVerification[];
1501
+ storages: IStorage[];
1502
+ is_cooperative: boolean;
1503
+ is_active: boolean;
1504
+ coop_type: IName$1;
1505
+ token_contract: IName$1;
1506
+ announce: string;
1507
+ description: string;
1508
+ registration: IAsset$1;
1509
+ initial: IAsset$1;
1510
+ minimum: IAsset$1;
1511
+ }
1512
+ interface IPlotData {
1513
+ storage: IStorage;
1514
+ announce: string;
1515
+ description: string;
1516
+ }
1517
+ interface IRegorg {
1518
+ coopname: IName$1;
1519
+ username: IName$1;
1520
+ params: IOrgData;
1521
+ }
1522
+ interface IRegplot {
1523
+ coopname: IName$1;
1524
+ username: IName$1;
1525
+ params: IPlotData;
1526
+ }
1527
+ interface IReguser {
1528
+ coopname: IName$1;
1529
+ username: IName$1;
1530
+ storage: IStorage;
1531
+ }
1532
+ interface IStorage {
1533
+ storage_username: IName$1;
1534
+ }
1535
+ interface IUpdate {
1536
+ username: IName$1;
1537
+ meta: string;
1538
+ }
1539
+ interface IUsers$2 {
1540
+ username: IName$1;
1541
+ is_active: boolean;
1542
+ storages: IStorage[];
1543
+ verifications: IVerification[];
1544
+ }
1545
+ interface IVerificate {
1546
+ username: IName$1;
1547
+ procedure: IName$1;
1548
+ }
1549
+ interface IVerification {
1550
+ verificator: IName$1;
1551
+ is_verified: boolean;
1552
+ procedure: IName$1;
1553
+ created_at: ITimePointSec;
1554
+ last_update: ITimePointSec;
1555
+ notice: string;
1556
+ }
1557
+
1558
+ type registrator_IBalances = IBalances;
1559
+ type registrator_IBalancesBase = IBalancesBase;
1560
+ type registrator_IChangekey = IChangekey;
1561
+ type registrator_IConfirmreg = IConfirmreg;
1562
+ type registrator_IDocument = IDocument;
1563
+ type registrator_IJoincoop = IJoincoop;
1564
+ type registrator_INewaccount = INewaccount;
1565
+ type registrator_IOrgData = IOrgData;
1566
+ type registrator_IOrgs = IOrgs;
1567
+ type registrator_IPlotData = IPlotData;
1568
+ type registrator_IPublicKey = IPublicKey;
1569
+ type registrator_IRegorg = IRegorg;
1570
+ type registrator_IRegplot = IRegplot;
1571
+ type registrator_IReguser = IReguser;
1572
+ type registrator_IStorage = IStorage;
1573
+ type registrator_ITimePointSec = ITimePointSec;
1574
+ type registrator_IUint64 = IUint64;
1575
+ type registrator_IUpdate = IUpdate;
1576
+ type registrator_IVerificate = IVerificate;
1577
+ type registrator_IVerification = IVerification;
1578
+ declare namespace registrator {
1579
+ export type { IAccounts$1 as IAccounts, IAsset$1 as IAsset, registrator_IBalances as IBalances, registrator_IBalancesBase as IBalancesBase, registrator_IChangekey as IChangekey, registrator_IConfirmreg as IConfirmreg, registrator_IDocument as IDocument, registrator_IJoincoop as IJoincoop, IName$1 as IName, registrator_INewaccount as INewaccount, registrator_IOrgData as IOrgData, registrator_IOrgs as IOrgs, registrator_IPlotData as IPlotData, registrator_IPublicKey as IPublicKey, registrator_IRegorg as IRegorg, registrator_IRegplot as IRegplot, registrator_IReguser as IReguser, registrator_IStorage as IStorage, registrator_ITimePointSec as ITimePointSec, registrator_IUint64 as IUint64, registrator_IUpdate as IUpdate, IUsers$2 as IUsers, registrator_IVerificate as IVerificate, registrator_IVerification as IVerification };
1580
+ }
1581
+
1582
+ declare const authorizations$c: readonly [{
1583
+ readonly permissions: readonly ["active"];
1584
+ readonly actor: {
1585
+ readonly production: "eosio";
1586
+ readonly testnet: "eosio";
1587
+ };
1588
+ }];
1589
+ /**
1590
+ * Имя действия
1591
+ */
1592
+ declare const actionName$c = "verificate";
1593
+ /**
1594
+ * @interface
1595
+ */
1596
+ type IVerificateAccount = IVerificate;
1597
+
1598
+ type verificateAccount_IVerificateAccount = IVerificateAccount;
1599
+ declare namespace verificateAccount {
1600
+ export { type verificateAccount_IVerificateAccount as IVerificateAccount, actionName$c as actionName, authorizations$c as authorizations };
1601
+ }
1602
+
1603
+ declare const authorizations$b: readonly [{
1604
+ readonly permissions: readonly ["active"];
1605
+ readonly actor: "_username";
1606
+ }];
1607
+ /**
1608
+ * Имя действия
1609
+ */
1610
+ declare const actionName$b = "update";
1611
+ /**
1612
+ * @interface
1613
+ */
1614
+ type IUpdateAccount = IUpdate;
1615
+
1616
+ type updateAccount_IUpdateAccount = IUpdateAccount;
1617
+ declare namespace updateAccount {
1618
+ export { type updateAccount_IUpdateAccount as IUpdateAccount, actionName$b as actionName, authorizations$b as authorizations };
1619
+ }
1620
+
1621
+ /**
1622
+ * Требуется авторизация аккаунта {@link Actors._admin | администратора} c позитивным балансом AXON для оплаты аренды ресурсов.
1623
+ */
1624
+ declare const authorizations$a: readonly [{
1625
+ readonly permissions: readonly ["active"];
1626
+ readonly actor: "_admin";
1627
+ }];
1628
+ /**
1629
+ * Имя действия
1630
+ */
1631
+ declare const actionName$a = "newaccount";
1632
+ /**
1633
+ * @interface
1634
+ */
1635
+ type ICreateAccount = INewaccount;
1636
+
1637
+ type createAccount_ICreateAccount = ICreateAccount;
1638
+ declare namespace createAccount {
1639
+ export { type createAccount_ICreateAccount as ICreateAccount, actionName$a as actionName, authorizations$a as authorizations };
1640
+ }
1641
+
1642
+ declare const authorizations$9: readonly [{
1643
+ readonly permissions: readonly ["active"];
1644
+ readonly actor: "_admin";
1645
+ }];
1646
+ /**
1647
+ * Имя действия
1648
+ */
1649
+ declare const actionName$9 = "regorg";
1650
+ /**
1651
+ * @interface
1652
+ */
1653
+ type IRegisterOrganization = IRegorg;
1654
+
1655
+ type registerOrganization_IRegisterOrganization = IRegisterOrganization;
1656
+ declare namespace registerOrganization {
1657
+ export { type registerOrganization_IRegisterOrganization as IRegisterOrganization, actionName$9 as actionName, authorizations$9 as authorizations };
1658
+ }
1659
+
1660
+ declare const authorizations$8: readonly [{
1661
+ readonly permissions: readonly ["active"];
1662
+ readonly actor: {
1663
+ readonly production: "eosio";
1664
+ readonly testnet: "eosio";
1665
+ };
1666
+ }];
1667
+ /**
1668
+ * Имя действия
1669
+ */
1670
+ declare const actionName$8 = "changekey";
1671
+ /**
1672
+ * @interface
1673
+ */
1674
+ type IChangeKey = IChangekey;
1675
+
1676
+ type changeKey_IChangeKey = IChangeKey;
1677
+ declare namespace changeKey {
1678
+ export { type changeKey_IChangeKey as IChangeKey, actionName$8 as actionName, authorizations$8 as authorizations };
1679
+ }
1680
+
1681
+ /**
1682
+ * Требуется авторизация администратора кооператива или пользователя.
1683
+ */
1684
+ declare const authorizations$7: readonly [{
1685
+ readonly permissions: readonly ["active"];
1686
+ readonly actor: "_admin";
1687
+ }, {
1688
+ readonly permissions: readonly ["active"];
1689
+ readonly actor: "_username";
1690
+ }];
1691
+ /**
1692
+ * Имя действия
1693
+ */
1694
+ declare const actionName$7 = "joincoop";
1695
+ /**
1696
+ * @interface
1697
+ */
1698
+ type IJoinCooperative = IJoincoop;
1699
+
1700
+ type joinCooperative_IJoinCooperative = IJoinCooperative;
1701
+ declare namespace joinCooperative {
1702
+ export { type joinCooperative_IJoinCooperative as IJoinCooperative, actionName$7 as actionName, authorizations$7 as authorizations };
1703
+ }
1704
+
1705
+ /**
1706
+ * Требуется подпись контракта {@link ContractNames._soviet | совета}, которая поставляется автоматически в момент исполнения решения совета о приёме нового пайщика.
1707
+ */
1708
+ declare const authorizations$6: readonly [{
1709
+ readonly permissions: readonly ["active"];
1710
+ readonly actor: {
1711
+ readonly production: "soviet";
1712
+ readonly testnet: "soviettest22";
1713
+ };
1714
+ }];
1715
+ /**
1716
+ * Имя действия
1717
+ */
1718
+ declare const actionName$6 = "confirmreg";
1719
+ /**
1720
+ * @interface
1721
+ */
1722
+ type IConfirmJoin = IConfirmreg;
1723
+
1724
+ type confirmJoin_IConfirmJoin = IConfirmJoin;
1725
+ declare namespace confirmJoin {
1726
+ export { type confirmJoin_IConfirmJoin as IConfirmJoin, actionName$6 as actionName, authorizations$6 as authorizations };
1727
+ }
1728
+
1729
+ /**
1730
+ * Действие верификации аккаунта
1731
+ */
1732
+
1733
+ declare const index$5_changeKey: typeof changeKey;
1734
+ declare const index$5_confirmJoin: typeof confirmJoin;
1735
+ declare const index$5_createAccount: typeof createAccount;
1736
+ declare const index$5_joinCooperative: typeof joinCooperative;
1737
+ declare const index$5_registerOrganization: typeof registerOrganization;
1738
+ declare const index$5_updateAccount: typeof updateAccount;
1739
+ declare const index$5_verificateAccount: typeof verificateAccount;
1740
+ declare namespace index$5 {
1741
+ export { index$5_changeKey as changeKey, index$5_confirmJoin as confirmJoin, index$5_createAccount as createAccount, index$5_joinCooperative as joinCooperative, index$5_registerOrganization as registerOrganization, index$5_updateAccount as updateAccount, index$5_verificateAccount as verificateAccount };
1742
+ }
1743
+
1744
+ /**
1745
+ * Имя таблицы
1746
+ */
1747
+ declare const tableName$4 = "accounts";
1748
+ /**
1749
+ * Таблица хранится в {@link ContractNames._registrator | области памяти контракта}.
1750
+ */
1751
+ declare const scope$4: {
1752
+ readonly production: "registrator";
1753
+ readonly testnet: "regtest22222";
1754
+ };
1755
+ /**
1756
+ * @interface
1757
+ * Таблица содержит реестр аккаунтов системы.
1758
+ */
1759
+ type IAccounts = IAccounts$1;
1760
+
1761
+ type accounts_IAccounts = IAccounts;
1762
+ declare namespace accounts {
1763
+ export { type accounts_IAccounts as IAccounts, scope$4 as scope, tableName$4 as tableName };
1764
+ }
1765
+
1766
+ /**
1767
+ * Имя таблицы
1768
+ */
1769
+ declare const tableName$3 = "orgs";
1770
+ /**
1771
+ * Таблица хранится в {@link ContractNames._registrator | области памяти контракта}.
1772
+ */
1773
+ declare const scope$3: {
1774
+ readonly production: "registrator";
1775
+ readonly testnet: "regtest22222";
1776
+ };
1777
+ /**
1778
+ * @interface
1779
+ * Таблица содержит реестр организаций-пайщиков кооператива.
1780
+ */
1781
+ type IUsers$1 = IOrgs;
1782
+
1783
+ declare namespace organizations {
1784
+ export { type IUsers$1 as IUsers, scope$3 as scope, tableName$3 as tableName };
1785
+ }
1786
+
1787
+ /**
1788
+ * Имя таблицы
1789
+ */
1790
+ declare const tableName$2 = "users";
1791
+ /**
1792
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
1793
+ */
1794
+ declare const scope$2 = "_coopname";
1795
+ /**
1796
+ * @interface
1797
+ * Таблица содержит реестр пользователей-пайщиков кооператива.
1798
+ */
1799
+ type IUsers = IUsers$2;
1800
+
1801
+ type users_IUsers = IUsers;
1802
+ declare namespace users {
1803
+ export { type users_IUsers as IUsers, scope$2 as scope, tableName$2 as tableName };
1804
+ }
1805
+
1806
+ /**
1807
+ * Таблица содержит реестр аккаунтов системы.
1808
+ *
1809
+ */
1810
+
1811
+ declare namespace index$4 {
1812
+ export { accounts as Accounts, organizations as Organizations, users as Users };
1813
+ }
1814
+
1815
+ declare const contractName$1: {
1816
+ readonly production: "registrator";
1817
+ readonly testnet: "regtest22222";
1818
+ };
1819
+
1820
+ declare namespace index$3 {
1821
+ export { index$5 as Actions, registrator as Interfaces, index$4 as Tables, contractName$1 as contractName };
1822
+ }
1823
+
1824
+ type IAsset = string;
1825
+ type IName = string;
1826
+ type ISymbol = string;
1827
+ interface IAccount {
1828
+ balance: IAsset;
1829
+ }
1830
+ interface IClose$1 {
1831
+ owner: IName;
1832
+ symbol: ISymbol;
1833
+ }
1834
+ interface ICreate$1 {
1835
+ issuer: IName;
1836
+ maximum_supply: IAsset;
1837
+ }
1838
+ interface ICurrencyStats$1 {
1839
+ supply: IAsset;
1840
+ max_supply: IAsset;
1841
+ issuer: IName;
1842
+ }
1843
+ interface IIssue$1 {
1844
+ to: IName;
1845
+ quantity: IAsset;
1846
+ memo: string;
1847
+ }
1848
+ interface IOpen$1 {
1849
+ owner: IName;
1850
+ symbol: ISymbol;
1851
+ ram_payer: IName;
1852
+ }
1853
+ interface IRetire$1 {
1854
+ quantity: IAsset;
1855
+ memo: string;
1856
+ }
1857
+ interface ITransfer$1 {
1858
+ from: IName;
1859
+ to: IName;
1860
+ quantity: IAsset;
1861
+ memo: string;
1862
+ }
1863
+
1864
+ type eosio_token_IAccount = IAccount;
1865
+ type eosio_token_IAsset = IAsset;
1866
+ type eosio_token_IName = IName;
1867
+ type eosio_token_ISymbol = ISymbol;
1868
+ declare namespace eosio_token {
1869
+ export type { eosio_token_IAccount as IAccount, eosio_token_IAsset as IAsset, IClose$1 as IClose, ICreate$1 as ICreate, ICurrencyStats$1 as ICurrencyStats, IIssue$1 as IIssue, eosio_token_IName as IName, IOpen$1 as IOpen, IRetire$1 as IRetire, eosio_token_ISymbol as ISymbol, ITransfer$1 as ITransfer };
1870
+ }
1871
+
1872
+ declare const authorizations$5: readonly [{
1873
+ readonly permissions: readonly ["active"];
1874
+ readonly actor: "_username";
1875
+ }];
1876
+ /**
1877
+ * Имя действия
1878
+ */
1879
+ declare const actionName$5 = "transfer";
1880
+ /**
1881
+ * @interface
1882
+ */
1883
+ type ITransfer = ITransfer$1;
1884
+
1885
+ type transfer_ITransfer = ITransfer;
1886
+ declare namespace transfer {
1887
+ export { type transfer_ITransfer as ITransfer, actionName$5 as actionName, authorizations$5 as authorizations };
1888
+ }
1889
+
1890
+ declare const authorizations$4: readonly [{
1891
+ readonly permissions: readonly ["active"];
1892
+ readonly actor: "_username";
1893
+ }];
1894
+ /**
1895
+ * Имя действия
1896
+ */
1897
+ declare const actionName$4 = "open";
1898
+ /**
1899
+ * @interface
1900
+ */
1901
+ type IOpen = IOpen$1;
1902
+
1903
+ type open_IOpen = IOpen;
1904
+ declare namespace open {
1905
+ export { type open_IOpen as IOpen, actionName$4 as actionName, authorizations$4 as authorizations };
1906
+ }
1907
+
1908
+ /**
1909
+ * Требуется авторизация владельца аккаунта, чей баланс закрывается.
1910
+ */
1911
+ declare const authorizations$3: readonly [{
1912
+ readonly permissions: readonly ["active"];
1913
+ readonly actor: "_username";
1914
+ }];
1915
+ /**
1916
+ * Имя действия
1917
+ */
1918
+ declare const actionName$3 = "close";
1919
+ /**
1920
+ * @interface
1921
+ */
1922
+ type IClose = IClose$1;
1923
+
1924
+ type close_IClose = IClose;
1925
+ declare namespace close {
1926
+ export { type close_IClose as IClose, actionName$3 as actionName, authorizations$3 as authorizations };
1927
+ }
1928
+
1929
+ declare const authorizations$2: readonly [{
1930
+ readonly permissions: readonly ["active"];
1931
+ readonly actor: "_system";
1932
+ }];
1933
+ /**
1934
+ * Имя действия
1935
+ */
1936
+ declare const actionName$2 = "create";
1937
+ /**
1938
+ * @interface
1939
+ */
1940
+ type ICreate = ICreate$1;
1941
+
1942
+ type create_ICreate = ICreate;
1943
+ declare namespace create {
1944
+ export { type create_ICreate as ICreate, actionName$2 as actionName, authorizations$2 as authorizations };
1945
+ }
1946
+
1947
+ /**
1948
+ * Для выпуска токенов требуется авторизация учетной записи эмитента, указанная {@link create.ICreate | при создании токена}.
1949
+ */
1950
+ declare const authorizations$1: readonly [{
1951
+ readonly permissions: readonly ["active"];
1952
+ readonly actor: "currencyStats.issuer";
1953
+ }];
1954
+ /**
1955
+ * Имя действия
1956
+ */
1957
+ declare const actionName$1 = "issue";
1958
+ /**
1959
+ * @interface
1960
+ */
1961
+ type IIssue = IIssue$1;
1962
+
1963
+ type issue_IIssue = IIssue;
1964
+ declare namespace issue {
1965
+ export { type issue_IIssue as IIssue, actionName$1 as actionName, authorizations$1 as authorizations };
1966
+ }
1967
+
1968
+ /**
1969
+ * Для сжигания токенов требуется авторизация учетной записи эмитента, указанная {@link create.ICreate | при создании токена}.
1970
+ */
1971
+ declare const authorizations: readonly [{
1972
+ readonly permissions: readonly ["active"];
1973
+ readonly actor: "currencyStats.issuer";
1974
+ }];
1975
+ /**
1976
+ * Имя действия
1977
+ */
1978
+ declare const actionName = "retire";
1979
+ /**
1980
+ * @interface
1981
+ */
1982
+ type IRetire = IRetire$1;
1983
+
1984
+ type retire_IRetire = IRetire;
1985
+ declare const retire_actionName: typeof actionName;
1986
+ declare const retire_authorizations: typeof authorizations;
1987
+ declare namespace retire {
1988
+ export { type retire_IRetire as IRetire, retire_actionName as actionName, retire_authorizations as authorizations };
1989
+ }
1990
+
1991
+ /**
1992
+ * Действие совершения перевода токенов AXON между аккаунтами.
1993
+ */
1994
+
1995
+ declare const index$2_close: typeof close;
1996
+ declare const index$2_create: typeof create;
1997
+ declare const index$2_issue: typeof issue;
1998
+ declare const index$2_open: typeof open;
1999
+ declare const index$2_retire: typeof retire;
2000
+ declare const index$2_transfer: typeof transfer;
2001
+ declare namespace index$2 {
2002
+ export { index$2_close as close, index$2_create as create, index$2_issue as issue, index$2_open as open, index$2_retire as retire, index$2_transfer as transfer };
2003
+ }
2004
+
2005
+ /**
2006
+ * Имя таблицы
2007
+ */
2008
+ declare const tableName$1 = "accounts";
2009
+ /**
2010
+ * Таблица хранится в {@link Actors._username | области памяти пользователя}.
2011
+ */
2012
+ declare const scope$1 = "_username";
2013
+ /**
2014
+ * @interface
2015
+ * Таблица содержит переводы черновиков документов.
2016
+ */
2017
+ type IAccountBalance = IAccount;
2018
+
2019
+ type accountBalance_IAccountBalance = IAccountBalance;
2020
+ declare namespace accountBalance {
2021
+ export { type accountBalance_IAccountBalance as IAccountBalance, scope$1 as scope, tableName$1 as tableName };
2022
+ }
2023
+
2024
+ /**
2025
+ * Имя таблицы
2026
+ */
2027
+ declare const tableName = "stat";
2028
+ /**
2029
+ * Таблица хранится в области памяти символа токена "AXON".
2030
+ */
2031
+ declare const scope = "AXON";
2032
+ /**
2033
+ * @interface
2034
+ * Таблица содержит переводы черновиков документов.
2035
+ */
2036
+ type ICurrencyStats = ICurrencyStats$1;
2037
+
2038
+ type currencyStats_ICurrencyStats = ICurrencyStats;
2039
+ declare const currencyStats_scope: typeof scope;
2040
+ declare const currencyStats_tableName: typeof tableName;
2041
+ declare namespace currencyStats {
2042
+ export { type currencyStats_ICurrencyStats as ICurrencyStats, currencyStats_scope as scope, currencyStats_tableName as tableName };
2043
+ }
2044
+
2045
+ /**
2046
+ * Таблица содержит информацию о балансе токенов пользователей
2047
+ */
2048
+
2049
+ declare namespace index$1 {
2050
+ export { accountBalance as AccountBalance, currencyStats as CurrencyStats };
2051
+ }
2052
+
2053
+ declare const contractName: {
2054
+ readonly production: "eosio.token";
2055
+ readonly testnet: "eosio.token";
2056
+ };
2057
+
2058
+ declare const index_contractName: typeof contractName;
2059
+ declare namespace index {
2060
+ export { index$2 as Actions, eosio_token as Interfaces, index$1 as Tables, index_contractName as contractName };
2061
+ }
2062
+
2063
+ export { index$c as DraftContract, index$9 as FundContract, index$6 as GatewayContract, index$3 as RegistratorContract, index as TokenContract, index$f as _Common };