cooptypes 0.1.0 → 0.3.1

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,15 +1,137 @@
1
- type IName$1 = string;
2
- type IUint64$1 = number | string;
3
- interface ICounts$1 extends ICountsBase$1 {
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 _member = "_member";
17
+ /**
18
+ * Обобщенное имя аккаунта администратора кооператива, которое должно быть заменено на реальное.
19
+ */
20
+ declare const _admin = "_admin";
21
+ /**
22
+ * Обобщенное имя аккаунта контракта, которое должно быть заменено на реальное.
23
+ */
24
+ declare const _contract = "_contract";
25
+ /**
26
+ * Системное имя коллективного аккаунта делегатов. Обычно это аккаунт "eosio".
27
+ */
28
+ declare const _system$1 = "_system";
29
+
30
+ declare const index$r__admin: typeof _admin;
31
+ declare const index$r__chairman: typeof _chairman;
32
+ declare const index$r__contract: typeof _contract;
33
+ declare const index$r__coopname: typeof _coopname;
34
+ declare const index$r__member: typeof _member;
35
+ declare const index$r__username: typeof _username;
36
+ declare namespace index$r {
37
+ export { index$r__admin as _admin, index$r__chairman as _chairman, index$r__contract as _contract, index$r__coopname as _coopname, index$r__member as _member, _system$1 as _system, index$r__username as _username };
4
38
  }
5
- interface ICountsBase$1 {
6
- key: IName$1;
7
- secondary_key: IName$1;
8
- value: IUint64$1;
39
+
40
+ declare const _draft: {
41
+ readonly production: "draft";
42
+ readonly testnet: "drafttest222";
43
+ };
44
+ declare const _fund: {
45
+ readonly production: "fund";
46
+ readonly testnet: "fundtest2222";
47
+ };
48
+ declare const _gateway: {
49
+ readonly production: "gateway";
50
+ readonly testnet: "gateway2222";
51
+ };
52
+ declare const _system: {
53
+ readonly production: "eosio";
54
+ readonly testnet: "eosio";
55
+ };
56
+ declare const _soviet: {
57
+ readonly production: "soviet";
58
+ readonly testnet: "soviettest22";
59
+ };
60
+ declare const _marketplace: {
61
+ readonly production: "marketplace";
62
+ readonly testnet: "markettest22";
63
+ };
64
+ declare const _registrator: {
65
+ readonly production: "registrator";
66
+ readonly testnet: "regtest22222";
67
+ };
68
+ declare const _token: {
69
+ readonly production: "eosio.token";
70
+ readonly testnet: "eosio.token";
71
+ };
72
+
73
+ declare const index$q__draft: typeof _draft;
74
+ declare const index$q__fund: typeof _fund;
75
+ declare const index$q__gateway: typeof _gateway;
76
+ declare const index$q__marketplace: typeof _marketplace;
77
+ declare const index$q__registrator: typeof _registrator;
78
+ declare const index$q__soviet: typeof _soviet;
79
+ declare const index$q__system: typeof _system;
80
+ declare const index$q__token: typeof _token;
81
+ declare namespace index$q {
82
+ export { index$q__draft as _draft, index$q__fund as _fund, index$q__gateway as _gateway, index$q__marketplace as _marketplace, index$q__registrator as _registrator, index$q__soviet as _soviet, index$q__system as _system, index$q__token as _token };
83
+ }
84
+
85
+ /**
86
+ * Активные разрешения прав доступа аккаунта для выполнения действий.
87
+ */
88
+ declare const active = "active";
89
+ /**
90
+ * Разрешения прав доступа владельца аккаунта для замены активных разрешений.
91
+ */
92
+ declare const owner = "owner";
93
+ /**
94
+ * Специальные разрешения прав доступа, которые выдаются советом кооператива аккаунту администратора с указанием контракта и имени действия, которые ему становятся доступны в кооперативе.
95
+ */
96
+ declare const special: {
97
+ readonly contract: "_contract";
98
+ readonly action: "actionName";
99
+ };
100
+ /**
101
+ * Интерфейс `Authorization` представляет собой модель авторизации в системе.
102
+ *
103
+ * @property {Array} permissions - Массив разрешений, которые могут быть активными, владельцами или специальными.
104
+ * @property {Actors} actor - Актор, который может быть пользователем, председателем, администратором, контрактом или системным аккаунтом.
105
+ */
106
+ interface Authorization {
107
+ permissions: (typeof active | typeof owner | typeof special)[];
108
+ actor: typeof _username | typeof _chairman | typeof _admin | typeof _contract | typeof _system$1;
109
+ }
110
+
111
+ type index$p_Authorization = Authorization;
112
+ declare const index$p_active: typeof active;
113
+ declare const index$p_owner: typeof owner;
114
+ declare const index$p_special: typeof special;
115
+ declare namespace index$p {
116
+ export { type index$p_Authorization as Authorization, index$p_active as active, index$p_owner as owner, index$p_special as special };
117
+ }
118
+
119
+ declare namespace index$o {
120
+ export { index$r as Actors, index$q as ContractNames, index$p as Permissions };
121
+ }
122
+
123
+ type IName$5 = string;
124
+ type IUint64$4 = number | string;
125
+ interface ICounts$3 extends ICountsBase$3 {
126
+ }
127
+ interface ICountsBase$3 {
128
+ key: IName$5;
129
+ secondary_key: IName$5;
130
+ value: IUint64$4;
9
131
  }
10
132
  interface ICreatedraft {
11
- registry_id: IUint64$1;
12
- lang: IName$1;
133
+ registry_id: IUint64$4;
134
+ lang: IName$5;
13
135
  title: string;
14
136
  description: string;
15
137
  context: string;
@@ -17,61 +139,58 @@ interface ICreatedraft {
17
139
  translation_data: string;
18
140
  }
19
141
  interface ICreatetrans {
20
- draft_id: IUint64$1;
21
- lang: IName$1;
142
+ draft_id: IUint64$4;
143
+ lang: IName$5;
22
144
  data: string;
23
145
  }
24
146
  interface IDeldraft {
25
- draft_id: IUint64$1;
147
+ draft_id: IUint64$4;
26
148
  }
27
149
  interface IDeltrans {
28
- translate_id: IUint64$1;
150
+ translate_id: IUint64$4;
29
151
  }
30
152
  interface IDrafts$1 {
31
- id: IUint64$1;
32
- registry_id: IUint64$1;
33
- creator: IName$1;
34
- actions: IName$1[];
35
- version: IUint64$1;
36
- default_translation_id: IUint64$1;
153
+ id: IUint64$4;
154
+ registry_id: IUint64$4;
155
+ creator: IName$5;
156
+ actions: IName$5[];
157
+ version: IUint64$4;
158
+ default_translation_id: IUint64$4;
37
159
  title: string;
38
160
  description: string;
39
161
  context: string;
40
162
  model: string;
41
163
  }
42
164
  interface IEdittrans {
43
- translate_id: IUint64$1;
165
+ translate_id: IUint64$4;
44
166
  data: string;
45
167
  }
46
168
  interface INewid {
47
- id: IUint64$1;
169
+ id: IUint64$4;
48
170
  }
49
171
  interface ITranslations$1 {
50
- id: IUint64$1;
51
- creator: IName$1;
52
- draft_id: IUint64$1;
53
- lang: IName$1;
172
+ id: IUint64$4;
173
+ creator: IName$5;
174
+ draft_id: IUint64$4;
175
+ lang: IName$5;
54
176
  data: string;
55
177
  is_published: boolean;
56
178
  is_approved: boolean;
57
179
  }
58
180
 
59
- type draft_ICreatedraft = ICreatedraft;
60
- type draft_ICreatetrans = ICreatetrans;
61
- type draft_IDeldraft = IDeldraft;
62
- type draft_IDeltrans = IDeltrans;
63
- type draft_IEdittrans = IEdittrans;
64
- type draft_INewid = INewid;
65
- declare namespace draft {
66
- export type { ICounts$1 as ICounts, ICountsBase$1 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$1 as IName, draft_INewid as INewid, ITranslations$1 as ITranslations, IUint64$1 as IUint64 };
181
+ type draft$1_ICreatedraft = ICreatedraft;
182
+ type draft$1_ICreatetrans = ICreatetrans;
183
+ type draft$1_IDeldraft = IDeldraft;
184
+ type draft$1_IDeltrans = IDeltrans;
185
+ type draft$1_IEdittrans = IEdittrans;
186
+ type draft$1_INewid = INewid;
187
+ declare namespace draft$1 {
188
+ export type { ICounts$3 as ICounts, ICountsBase$3 as ICountsBase, draft$1_ICreatedraft as ICreatedraft, draft$1_ICreatetrans as ICreatetrans, draft$1_IDeldraft as IDeldraft, draft$1_IDeltrans as IDeltrans, IDrafts$1 as IDrafts, draft$1_IEdittrans as IEdittrans, IName$5 as IName, draft$1_INewid as INewid, ITranslations$1 as ITranslations, IUint64$4 as IUint64 };
67
189
  }
68
190
 
69
- declare const authorizations$j: readonly [{
191
+ declare const authorizations$18: readonly [{
70
192
  readonly permissions: readonly ["active"];
71
193
  readonly actor: {
72
- /**
73
- * Имя действия
74
- */
75
194
  readonly production: "eosio";
76
195
  readonly testnet: "eosio";
77
196
  };
@@ -79,23 +198,20 @@ declare const authorizations$j: readonly [{
79
198
  /**
80
199
  * Имя действия
81
200
  */
82
- declare const actionName$j = "createtrans";
201
+ declare const actionName$18 = "createtrans";
83
202
  /**
84
203
  * @interface
85
204
  */
86
205
  type ICreateTranslation = ICreatetrans;
87
206
 
88
- type index$y_ICreateTranslation = ICreateTranslation;
89
- declare namespace index$y {
90
- export { type index$y_ICreateTranslation as ICreateTranslation, actionName$j as actionName, authorizations$j as authorizations };
207
+ type createTranslation_ICreateTranslation = ICreateTranslation;
208
+ declare namespace createTranslation {
209
+ export { type createTranslation_ICreateTranslation as ICreateTranslation, actionName$18 as actionName, authorizations$18 as authorizations };
91
210
  }
92
211
 
93
- declare const authorizations$i: readonly [{
212
+ declare const authorizations$17: readonly [{
94
213
  readonly permissions: readonly ["active"];
95
214
  readonly actor: {
96
- /**
97
- * Имя действия
98
- */
99
215
  readonly production: "eosio";
100
216
  readonly testnet: "eosio";
101
217
  };
@@ -103,23 +219,20 @@ declare const authorizations$i: readonly [{
103
219
  /**
104
220
  * Имя действия
105
221
  */
106
- declare const actionName$i = "createdraft";
222
+ declare const actionName$17 = "createdraft";
107
223
  /**
108
224
  * @interface
109
225
  */
110
226
  type ICreateDraft = ICreatedraft;
111
227
 
112
- type index$x_ICreateDraft = ICreateDraft;
113
- declare namespace index$x {
114
- export { type index$x_ICreateDraft as ICreateDraft, actionName$i as actionName, authorizations$i as authorizations };
228
+ type createDraft_ICreateDraft = ICreateDraft;
229
+ declare namespace createDraft {
230
+ export { type createDraft_ICreateDraft as ICreateDraft, actionName$17 as actionName, authorizations$17 as authorizations };
115
231
  }
116
232
 
117
- declare const authorizations$h: readonly [{
233
+ declare const authorizations$16: readonly [{
118
234
  readonly permissions: readonly ["active"];
119
235
  readonly actor: {
120
- /**
121
- * Имя действия
122
- */
123
236
  readonly production: "eosio";
124
237
  readonly testnet: "eosio";
125
238
  };
@@ -127,23 +240,20 @@ declare const authorizations$h: readonly [{
127
240
  /**
128
241
  * Имя действия
129
242
  */
130
- declare const actionName$h = "deldraft";
243
+ declare const actionName$16 = "deldraft";
131
244
  /**
132
245
  * @interface
133
246
  */
134
247
  type IDeleteDraft = IDeldraft;
135
248
 
136
- type index$w_IDeleteDraft = IDeleteDraft;
137
- declare namespace index$w {
138
- export { type index$w_IDeleteDraft as IDeleteDraft, actionName$h as actionName, authorizations$h as authorizations };
249
+ type deleteDraft_IDeleteDraft = IDeleteDraft;
250
+ declare namespace deleteDraft {
251
+ export { type deleteDraft_IDeleteDraft as IDeleteDraft, actionName$16 as actionName, authorizations$16 as authorizations };
139
252
  }
140
253
 
141
- declare const authorizations$g: readonly [{
254
+ declare const authorizations$15: readonly [{
142
255
  readonly permissions: readonly ["active"];
143
256
  readonly actor: {
144
- /**
145
- * Имя действия
146
- */
147
257
  readonly production: "eosio";
148
258
  readonly testnet: "eosio";
149
259
  };
@@ -151,18 +261,18 @@ declare const authorizations$g: readonly [{
151
261
  /**
152
262
  * Имя действия
153
263
  */
154
- declare const actionName$g = "edittrans";
264
+ declare const actionName$15 = "edittrans";
155
265
  /**
156
266
  * @interface
157
267
  */
158
268
  type IEditTranslation = IEdittrans;
159
269
 
160
- type index$v_IEditTranslation = IEditTranslation;
161
- declare namespace index$v {
162
- export { type index$v_IEditTranslation as IEditTranslation, actionName$g as actionName, authorizations$g as authorizations };
270
+ type editTranslation_IEditTranslation = IEditTranslation;
271
+ declare namespace editTranslation {
272
+ export { type editTranslation_IEditTranslation as IEditTranslation, actionName$15 as actionName, authorizations$15 as authorizations };
163
273
  }
164
274
 
165
- declare const authorizations$f: readonly [{
275
+ declare const authorizations$14: readonly [{
166
276
  readonly permissions: readonly ["active"];
167
277
  readonly actor: {
168
278
  readonly production: "draft";
@@ -172,244 +282,241 @@ declare const authorizations$f: readonly [{
172
282
  /**
173
283
  * Имя действия
174
284
  */
175
- declare const actionName$f = "newid";
285
+ declare const actionName$14 = "newid";
176
286
  /**
177
287
  * @interface
178
288
  * Действие вызывается контрактом в процессе исполнения для возврата идентификатора черновика.
179
289
  */
180
290
  type INewId = INewid;
181
291
 
182
- type index$u_INewId = INewId;
183
- declare namespace index$u {
184
- export { type index$u_INewId as INewId, actionName$f as actionName, authorizations$f as authorizations };
292
+ type newId_INewId = INewId;
293
+ declare namespace newId {
294
+ export { type newId_INewId as INewId, actionName$14 as actionName, authorizations$14 as authorizations };
185
295
  }
186
296
 
187
- declare namespace index$t {
188
- export { index$x as createDraft, index$y as createTranslation, index$w as deleteDraft, index$v as editTranslation, index$u as newId };
297
+ declare const index$n_createDraft: typeof createDraft;
298
+ declare const index$n_createTranslation: typeof createTranslation;
299
+ declare const index$n_deleteDraft: typeof deleteDraft;
300
+ declare const index$n_editTranslation: typeof editTranslation;
301
+ declare const index$n_newId: typeof newId;
302
+ declare namespace index$n {
303
+ export { index$n_createDraft as createDraft, index$n_createTranslation as createTranslation, index$n_deleteDraft as deleteDraft, index$n_editTranslation as editTranslation, index$n_newId as newId };
189
304
  }
190
305
 
191
306
  /**
192
307
  * Имя таблицы
193
308
  */
194
- declare const tableName$5 = "translations";
309
+ declare const tableName$o = "drafts";
195
310
  /**
196
- * Область хранения в памяти
311
+ * Таблица хранится в {@link Actors._contract | области памяти контракта}.
197
312
  */
198
- declare const scope$5 = "_contract";
313
+ declare const scope$o = "_contract";
199
314
  /**
200
315
  * @interface
201
316
  * Таблица содержит переводы черновиков документов.
202
317
  */
203
- type ITranslations = ITranslations$1;
318
+ type IDrafts = IDrafts$1;
204
319
 
205
- type index$s_ITranslations = ITranslations;
206
- declare namespace index$s {
207
- export { type index$s_ITranslations as ITranslations, scope$5 as scope, tableName$5 as tableName };
320
+ type drafts_IDrafts = IDrafts;
321
+ declare namespace drafts {
322
+ export { type drafts_IDrafts as IDrafts, scope$o as scope, tableName$o as tableName };
208
323
  }
209
324
 
210
325
  /**
211
326
  * Имя таблицы
212
327
  */
213
- declare const tableName$4 = "drafts";
328
+ declare const tableName$n = "translations";
214
329
  /**
215
- * Таблица хранится в {@link Actors._contract | области памяти контракта}.
330
+ * Область хранения в памяти
216
331
  */
217
- declare const scope$4 = "_contract";
332
+ declare const scope$n = "_contract";
218
333
  /**
219
334
  * @interface
220
335
  * Таблица содержит переводы черновиков документов.
221
336
  */
222
- type IDrafts = IDrafts$1;
337
+ type ITranslations = ITranslations$1;
223
338
 
224
- type index$r_IDrafts = IDrafts;
225
- declare namespace index$r {
226
- export { type index$r_IDrafts as IDrafts, scope$4 as scope, tableName$4 as tableName };
339
+ type translations_ITranslations = ITranslations;
340
+ declare namespace translations {
341
+ export { type translations_ITranslations as ITranslations, scope$n as scope, tableName$n as tableName };
227
342
  }
228
343
 
229
- declare namespace index$q {
230
- export { index$s as Drafts, index$r as Translations };
344
+ declare namespace index$m {
345
+ export { drafts as Drafts, translations as Translations };
231
346
  }
232
347
 
233
- declare const contractName$1: {
348
+ declare const contractName$5: {
234
349
  readonly production: "draft";
235
350
  readonly testnet: "drafttest222";
236
351
  };
237
352
 
238
- declare namespace index$p {
239
- export { index$t as Actions, draft as Interfaces, index$q as Tables, contractName$1 as contractName };
353
+ declare namespace index$l {
354
+ export { index$n as Actions, draft$1 as Interfaces, index$m as Tables, contractName$5 as contractName };
240
355
  }
241
356
 
242
- type IAsset = string;
243
- type IName = string;
244
- type ITimePointSec = string;
245
- type IUint64 = number | string;
357
+ type IAsset$4 = string;
358
+ type IName$4 = string;
359
+ type ITimePointSec$3 = string;
360
+ type IUint64$3 = number | string;
246
361
  interface IAccfunds {
247
- id: IUint64;
248
- coopname: IName;
249
- contract: IName;
362
+ id: IUint64$3;
363
+ coopname: IName$4;
364
+ contract: IName$4;
250
365
  name: string;
251
366
  description: string;
252
- percent: IUint64;
253
- available: IAsset;
254
- withdrawed: IAsset;
367
+ percent: IUint64$3;
368
+ available: IAsset$4;
369
+ withdrawed: IAsset$4;
255
370
  }
256
371
  interface IAddaccum {
257
- coopname: IName;
258
- fund_id: IUint64;
259
- quantity: IAsset;
372
+ coopname: IName$4;
373
+ fund_id: IUint64$3;
374
+ quantity: IAsset$4;
260
375
  }
261
376
  interface IAddcirculate {
262
- coopname: IName;
263
- quantity: IAsset;
377
+ coopname: IName$4;
378
+ quantity: IAsset$4;
264
379
  }
265
380
  interface IAddexpense {
266
- coopname: IName;
267
- fund_id: IUint64;
268
- quantity: IAsset;
381
+ coopname: IName$4;
382
+ fund_id: IUint64$3;
383
+ quantity: IAsset$4;
269
384
  }
270
- interface IAuthorize$1 {
271
- coopname: IName;
272
- type: IName;
273
- withdraw_id: IUint64;
385
+ interface IAuthorize$3 {
386
+ coopname: IName$4;
387
+ type: IName$4;
388
+ withdraw_id: IUint64$3;
274
389
  }
275
390
  interface IComplete {
276
- coopname: IName;
277
- username: IName;
278
- withdraw_id: IUint64;
391
+ coopname: IName$4;
392
+ username: IName$4;
393
+ withdraw_id: IUint64$3;
279
394
  }
280
- interface ICounts extends ICountsBase {
395
+ interface ICounts$2 extends ICountsBase$2 {
281
396
  }
282
- interface ICountsBase {
283
- key: IName;
284
- secondary_key: IName;
285
- value: IUint64;
397
+ interface ICountsBase$2 {
398
+ key: IName$4;
399
+ secondary_key: IName$4;
400
+ value: IUint64$3;
286
401
  }
287
402
  interface ICreatefund {
288
- coopname: IName;
289
- username: IName;
290
- type: IName;
291
- contract: IName;
403
+ coopname: IName$4;
404
+ username: IName$4;
405
+ type: IName$4;
406
+ contract: IName$4;
292
407
  name: string;
293
408
  description: string;
294
- percent: IUint64;
409
+ percent: IUint64$3;
295
410
  }
296
411
  interface IDelfund {
297
- coopname: IName;
298
- username: IName;
299
- type: IName;
300
- fund_id: IUint64;
412
+ coopname: IName$4;
413
+ username: IName$4;
414
+ type: IName$4;
415
+ fund_id: IUint64$3;
301
416
  }
302
- interface IDocument {
417
+ interface IDocument$3 {
303
418
  hash: string;
304
419
  pkey: string;
305
420
  sign: string;
306
421
  meta: string;
307
422
  }
308
423
  interface IEditfund {
309
- coopname: IName;
310
- username: IName;
311
- type: IName;
312
- fund_id: IUint64;
313
- contract: IName;
424
+ coopname: IName$4;
425
+ username: IName$4;
426
+ type: IName$4;
427
+ fund_id: IUint64$3;
428
+ contract: IName$4;
314
429
  name: string;
315
430
  description: string;
316
- percent: IUint64;
431
+ percent: IUint64$3;
317
432
  }
318
433
  interface IExpfunds {
319
- id: IUint64;
320
- coopname: IName;
321
- contract: IName;
434
+ id: IUint64$3;
435
+ coopname: IName$4;
436
+ contract: IName$4;
322
437
  name: string;
323
438
  description: string;
324
- expended: IAsset;
439
+ expended: IAsset$4;
325
440
  }
326
441
  interface IFundwallet {
327
- id: IUint64;
328
- coopname: IName;
329
- circulating: IAsset;
330
- membership: IAsset;
331
- accumulated: IAsset;
332
- withdrawed: IAsset;
333
- available: IAsset;
334
- expended: IAsset;
335
- }
336
- interface IFundwithdraw {
337
- coopname: IName;
338
- username: IName;
339
- type: IName;
340
- fund_id: IUint64;
341
- document: IDocument;
342
- quantity: IAsset;
442
+ id: IUint64$3;
443
+ coopname: IName$4;
444
+ circulating: IAsset$4;
445
+ membership: IAsset$4;
446
+ accumulated: IAsset$4;
447
+ withdrawed: IAsset$4;
448
+ available: IAsset$4;
449
+ expended: IAsset$4;
450
+ }
451
+ interface IFundwithdraw$1 {
452
+ coopname: IName$4;
453
+ username: IName$4;
454
+ type: IName$4;
455
+ fund_id: IUint64$3;
456
+ document: IDocument$3;
457
+ quantity: IAsset$4;
343
458
  bank_data_id: string;
344
459
  }
345
460
  interface IFwithdraws {
346
- id: IUint64;
347
- coopname: IName;
348
- username: IName;
349
- status: IName;
350
- type: IName;
351
- fund_id: IUint64;
352
- quantity: IAsset;
353
- document: IDocument;
461
+ id: IUint64$3;
462
+ coopname: IName$4;
463
+ username: IName$4;
464
+ status: IName$4;
465
+ type: IName$4;
466
+ fund_id: IUint64$3;
467
+ quantity: IAsset$4;
468
+ document: IDocument$3;
354
469
  bank_data_id: string;
355
- expired_at: ITimePointSec;
470
+ expired_at: ITimePointSec$3;
356
471
  }
357
472
  interface IInit$1 {
358
- coopname: IName;
359
- initial: IAsset;
473
+ coopname: IName$4;
474
+ initial: IAsset$4;
360
475
  }
361
476
  interface INewfund$1 {
362
- coopname: IName;
363
- type: IName;
364
- id: IUint64;
477
+ coopname: IName$4;
478
+ type: IName$4;
479
+ id: IUint64$3;
365
480
  }
366
481
  interface INewwithdraw {
367
- coopname: IName;
368
- type: IName;
369
- id: IUint64;
482
+ coopname: IName$4;
483
+ type: IName$4;
484
+ id: IUint64$3;
370
485
  }
371
486
  interface ISpreadamount {
372
- coopname: IName;
373
- quantity: IAsset;
487
+ coopname: IName$4;
488
+ quantity: IAsset$4;
374
489
  }
375
490
  interface ISubaccum {
376
- coopname: IName;
377
- fund_id: IUint64;
378
- quantity: IAsset;
491
+ coopname: IName$4;
492
+ fund_id: IUint64$3;
493
+ quantity: IAsset$4;
379
494
  }
380
495
  interface ISubcirculate {
381
- coopname: IName;
382
- quantity: IAsset;
496
+ coopname: IName$4;
497
+ quantity: IAsset$4;
383
498
  }
384
499
 
385
500
  type fund_IAccfunds = IAccfunds;
386
501
  type fund_IAddaccum = IAddaccum;
387
502
  type fund_IAddcirculate = IAddcirculate;
388
503
  type fund_IAddexpense = IAddexpense;
389
- type fund_IAsset = IAsset;
390
504
  type fund_IComplete = IComplete;
391
- type fund_ICounts = ICounts;
392
- type fund_ICountsBase = ICountsBase;
393
505
  type fund_ICreatefund = ICreatefund;
394
506
  type fund_IDelfund = IDelfund;
395
- type fund_IDocument = IDocument;
396
507
  type fund_IEditfund = IEditfund;
397
508
  type fund_IExpfunds = IExpfunds;
398
509
  type fund_IFundwallet = IFundwallet;
399
- type fund_IFundwithdraw = IFundwithdraw;
400
510
  type fund_IFwithdraws = IFwithdraws;
401
- type fund_IName = IName;
402
511
  type fund_INewwithdraw = INewwithdraw;
403
512
  type fund_ISpreadamount = ISpreadamount;
404
513
  type fund_ISubaccum = ISubaccum;
405
514
  type fund_ISubcirculate = ISubcirculate;
406
- type fund_ITimePointSec = ITimePointSec;
407
- type fund_IUint64 = IUint64;
408
515
  declare namespace fund {
409
- export type { fund_IAccfunds as IAccfunds, fund_IAddaccum as IAddaccum, fund_IAddcirculate as IAddcirculate, fund_IAddexpense as IAddexpense, fund_IAsset as IAsset, IAuthorize$1 as IAuthorize, fund_IComplete as IComplete, fund_ICounts as ICounts, fund_ICountsBase as ICountsBase, fund_ICreatefund as ICreatefund, fund_IDelfund as IDelfund, fund_IDocument 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, fund_IName as IName, INewfund$1 as INewfund, fund_INewwithdraw as INewwithdraw, fund_ISpreadamount as ISpreadamount, fund_ISubaccum as ISubaccum, fund_ISubcirculate as ISubcirculate, fund_ITimePointSec as ITimePointSec, fund_IUint64 as IUint64 };
516
+ export type { fund_IAccfunds as IAccfunds, fund_IAddaccum as IAddaccum, fund_IAddcirculate as IAddcirculate, fund_IAddexpense as IAddexpense, IAsset$4 as IAsset, IAuthorize$3 as IAuthorize, fund_IComplete as IComplete, ICounts$2 as ICounts, ICountsBase$2 as ICountsBase, fund_ICreatefund as ICreatefund, fund_IDelfund as IDelfund, IDocument$3 as IDocument, fund_IEditfund as IEditfund, fund_IExpfunds as IExpfunds, fund_IFundwallet as IFundwallet, IFundwithdraw$1 as IFundwithdraw, fund_IFwithdraws as IFwithdraws, IInit$1 as IInit, IName$4 as IName, INewfund$1 as INewfund, fund_INewwithdraw as INewwithdraw, fund_ISpreadamount as ISpreadamount, fund_ISubaccum as ISubaccum, fund_ISubcirculate as ISubcirculate, ITimePointSec$3 as ITimePointSec, IUint64$3 as IUint64 };
410
517
  }
411
518
 
412
- declare const authorizations$e: readonly [{
519
+ declare const authorizations$13: readonly [{
413
520
  readonly permissions: readonly ["active"];
414
521
  readonly actor: {
415
522
  readonly production: "fund";
@@ -419,18 +526,18 @@ declare const authorizations$e: readonly [{
419
526
  /**
420
527
  * Имя действия
421
528
  */
422
- declare const actionName$e = "addaccum";
529
+ declare const actionName$13 = "addaccum";
423
530
  /**
424
531
  * @interface
425
532
  */
426
533
  type IAddAccumulation = IAddaccum;
427
534
 
428
- type index$o_IAddAccumulation = IAddAccumulation;
429
- declare namespace index$o {
430
- export { type index$o_IAddAccumulation as IAddAccumulation, actionName$e as actionName, authorizations$e as authorizations };
535
+ type addAccumulation_IAddAccumulation = IAddAccumulation;
536
+ declare namespace addAccumulation {
537
+ export { type addAccumulation_IAddAccumulation as IAddAccumulation, actionName$13 as actionName, authorizations$13 as authorizations };
431
538
  }
432
539
 
433
- declare const authorizations$d: readonly [{
540
+ declare const authorizations$12: readonly [{
434
541
  readonly permissions: readonly ["active"];
435
542
  readonly actor: {
436
543
  readonly production: "fund";
@@ -440,18 +547,18 @@ declare const authorizations$d: readonly [{
440
547
  /**
441
548
  * Имя действия
442
549
  */
443
- declare const actionName$d = "subaccum";
550
+ declare const actionName$12 = "subaccum";
444
551
  /**
445
552
  * @interface
446
553
  */
447
554
  type ISubAccumulation = ISubaccum;
448
555
 
449
- type index$n_ISubAccumulation = ISubAccumulation;
450
- declare namespace index$n {
451
- export { type index$n_ISubAccumulation as ISubAccumulation, actionName$d as actionName, authorizations$d as authorizations };
556
+ type subAccumulation_ISubAccumulation = ISubAccumulation;
557
+ declare namespace subAccumulation {
558
+ export { type subAccumulation_ISubAccumulation as ISubAccumulation, actionName$12 as actionName, authorizations$12 as authorizations };
452
559
  }
453
560
 
454
- declare const authorizations$c: readonly [{
561
+ declare const authorizations$11: readonly [{
455
562
  readonly permissions: readonly ["active"];
456
563
  readonly actor: {
457
564
  readonly production: "gateway";
@@ -461,18 +568,18 @@ declare const authorizations$c: readonly [{
461
568
  /**
462
569
  * Имя действия
463
570
  */
464
- declare const actionName$c = "addcirculate";
571
+ declare const actionName$11 = "addcirculate";
465
572
  /**
466
573
  * @interface
467
574
  */
468
575
  type IAddCirculation = IAddcirculate;
469
576
 
470
- type index$m_IAddCirculation = IAddCirculation;
471
- declare namespace index$m {
472
- export { type index$m_IAddCirculation as IAddCirculation, actionName$c as actionName, authorizations$c as authorizations };
577
+ type addCirculation_IAddCirculation = IAddCirculation;
578
+ declare namespace addCirculation {
579
+ export { type addCirculation_IAddCirculation as IAddCirculation, actionName$11 as actionName, authorizations$11 as authorizations };
473
580
  }
474
581
 
475
- declare const authorizations$b: readonly [{
582
+ declare const authorizations$10: readonly [{
476
583
  readonly permissions: readonly ["active"];
477
584
  readonly actor: {
478
585
  readonly production: "fund";
@@ -482,18 +589,18 @@ declare const authorizations$b: readonly [{
482
589
  /**
483
590
  * Имя действия
484
591
  */
485
- declare const actionName$b = "addexpense";
592
+ declare const actionName$10 = "addexpense";
486
593
  /**
487
594
  * @interface
488
595
  */
489
- type IAddExpence = IAddexpense;
596
+ type IAddExpense = IAddexpense;
490
597
 
491
- type index$l_IAddExpence = IAddExpence;
492
- declare namespace index$l {
493
- export { type index$l_IAddExpence as IAddExpence, actionName$b as actionName, authorizations$b as authorizations };
598
+ type addExpense_IAddExpense = IAddExpense;
599
+ declare namespace addExpense {
600
+ export { type addExpense_IAddExpense as IAddExpense, actionName$10 as actionName, authorizations$10 as authorizations };
494
601
  }
495
602
 
496
- declare const authorizations$a: readonly [{
603
+ declare const authorizations$$: readonly [{
497
604
  readonly permissions: readonly ["active"];
498
605
  readonly actor: {
499
606
  readonly production: "soviet";
@@ -503,18 +610,17 @@ declare const authorizations$a: readonly [{
503
610
  /**
504
611
  * Имя действия
505
612
  */
506
- declare const actionName$a = "authorize";
613
+ declare const actionName$$ = "authorize";
507
614
  /**
508
615
  * @interface
509
616
  */
510
- type IAuthorize = IAuthorize$1;
617
+ type IAuthorize$2 = IAuthorize$3;
511
618
 
512
- type index$k_IAuthorize = IAuthorize;
513
- declare namespace index$k {
514
- export { type index$k_IAuthorize as IAuthorize, actionName$a as actionName, authorizations$a as authorizations };
619
+ declare namespace authorizeWithdraw {
620
+ export { type IAuthorize$2 as IAuthorize, actionName$$ as actionName, authorizations$$ as authorizations };
515
621
  }
516
622
 
517
- declare const authorizations$9: readonly [{
623
+ declare const authorizations$_: readonly [{
518
624
  readonly permissions: readonly ["active", {
519
625
  readonly contract: "_contract";
520
626
  readonly action: "actionName";
@@ -524,18 +630,18 @@ declare const authorizations$9: readonly [{
524
630
  /**
525
631
  * Имя действия
526
632
  */
527
- declare const actionName$9 = "complete";
633
+ declare const actionName$_ = "complete";
528
634
  /**
529
635
  * @interface
530
636
  */
531
637
  type ICompleteWithdraw = IComplete;
532
638
 
533
- type index$j_ICompleteWithdraw = ICompleteWithdraw;
534
- declare namespace index$j {
535
- export { type index$j_ICompleteWithdraw as ICompleteWithdraw, actionName$9 as actionName, authorizations$9 as authorizations };
639
+ type completeWithdraw$1_ICompleteWithdraw = ICompleteWithdraw;
640
+ declare namespace completeWithdraw$1 {
641
+ export { type completeWithdraw$1_ICompleteWithdraw as ICompleteWithdraw, actionName$_ as actionName, authorizations$_ as authorizations };
536
642
  }
537
643
 
538
- declare const authorizations$8: readonly [{
644
+ declare const authorizations$Z: readonly [{
539
645
  readonly permissions: readonly ["active"];
540
646
  readonly actor: {
541
647
  readonly production: "fund";
@@ -545,69 +651,69 @@ declare const authorizations$8: readonly [{
545
651
  /**
546
652
  * Имя действия
547
653
  */
548
- declare const actionName$8 = "newfund";
654
+ declare const actionName$Z = "newfund";
549
655
  /**
550
656
  * @interface
551
657
  */
552
658
  type INewfund = INewfund$1;
553
659
 
554
- type index$i_INewfund = INewfund;
555
- declare namespace index$i {
556
- export { type index$i_INewfund as INewfund, actionName$8 as actionName, authorizations$8 as authorizations };
660
+ type newFund_INewfund = INewfund;
661
+ declare namespace newFund {
662
+ export { type newFund_INewfund as INewfund, actionName$Z as actionName, authorizations$Z as authorizations };
557
663
  }
558
664
 
559
- declare const authorizations$7: readonly [{
665
+ declare const authorizations$Y: readonly [{
560
666
  readonly permissions: readonly ["active"];
561
667
  readonly actor: "_chairman";
562
668
  }];
563
669
  /**
564
670
  * Имя действия
565
671
  */
566
- declare const actionName$7 = "createfund";
672
+ declare const actionName$Y = "createfund";
567
673
  /**
568
674
  * @interface
569
675
  */
570
676
  type ICreateFund = ICreatefund;
571
677
 
572
- type index$h_ICreateFund = ICreateFund;
573
- declare namespace index$h {
574
- export { type index$h_ICreateFund as ICreateFund, actionName$7 as actionName, authorizations$7 as authorizations };
678
+ type createFund_ICreateFund = ICreateFund;
679
+ declare namespace createFund {
680
+ export { type createFund_ICreateFund as ICreateFund, actionName$Y as actionName, authorizations$Y as authorizations };
575
681
  }
576
682
 
577
- declare const authorizations$6: readonly [{
683
+ declare const authorizations$X: readonly [{
578
684
  readonly permissions: readonly ["active"];
579
685
  readonly actor: "_chairman";
580
686
  }];
581
687
  /**
582
688
  * Имя действия
583
689
  */
584
- declare const actionName$6 = "delfund";
690
+ declare const actionName$X = "delfund";
585
691
  /**
586
692
  * @interface
587
693
  */
588
694
  type IDeleteFund = IDelfund;
589
695
 
590
- type index$g_IDeleteFund = IDeleteFund;
591
- declare namespace index$g {
592
- export { type index$g_IDeleteFund as IDeleteFund, actionName$6 as actionName, authorizations$6 as authorizations };
696
+ type deleteFund_IDeleteFund = IDeleteFund;
697
+ declare namespace deleteFund {
698
+ export { type deleteFund_IDeleteFund as IDeleteFund, actionName$X as actionName, authorizations$X as authorizations };
593
699
  }
594
700
 
595
- declare const authorizations$5: readonly [{
701
+ declare const authorizations$W: readonly [{
596
702
  readonly permissions: readonly ["active"];
597
703
  readonly actor: "_chairman";
598
704
  }];
599
705
  /**
600
706
  * Имя действия
601
707
  */
602
- declare const actionName$5 = "editfund";
708
+ declare const actionName$W = "editfund";
603
709
  /**
604
710
  * @interface
605
711
  */
606
712
  type IEditFund = IEditfund;
607
713
 
608
- type index$f_IEditFund = IEditFund;
609
- declare namespace index$f {
610
- export { type index$f_IEditFund as IEditFund, actionName$5 as actionName, authorizations$5 as authorizations };
714
+ type editFund_IEditFund = IEditFund;
715
+ declare namespace editFund {
716
+ export { type editFund_IEditFund as IEditFund, actionName$W as actionName, authorizations$W as authorizations };
611
717
  }
612
718
 
613
719
  /**
@@ -616,7 +722,7 @@ declare namespace index$f {
616
722
  * на совершение действия или авторизация любого {@link Actors._contract | контракта},
617
723
  * которому было передано управление фондом накопления или списания.
618
724
  */
619
- declare const authorizations$4: readonly [{
725
+ declare const authorizations$V: readonly [{
620
726
  readonly permissions: readonly ["active"];
621
727
  readonly actor: "_username";
622
728
  }, {
@@ -632,18 +738,18 @@ declare const authorizations$4: readonly [{
632
738
  /**
633
739
  * Имя действия
634
740
  */
635
- declare const actionName$4 = "fundwithdraw";
741
+ declare const actionName$V = "fundwithdraw";
636
742
  /**
637
743
  * @interface
638
744
  */
639
- type ICreateWithdraw = IFundwithdraw;
745
+ type ICreateWithdraw = IFundwithdraw$1;
640
746
 
641
- type index$e_ICreateWithdraw = ICreateWithdraw;
642
- declare namespace index$e {
643
- export { type index$e_ICreateWithdraw as ICreateWithdraw, actionName$4 as actionName, authorizations$4 as authorizations };
747
+ type createWithdraw$1_ICreateWithdraw = ICreateWithdraw;
748
+ declare namespace createWithdraw$1 {
749
+ export { type createWithdraw$1_ICreateWithdraw as ICreateWithdraw, actionName$V as actionName, authorizations$V as authorizations };
644
750
  }
645
751
 
646
- declare const authorizations$3: readonly [{
752
+ declare const authorizations$U: readonly [{
647
753
  readonly permissions: readonly ["active"];
648
754
  readonly actor: {
649
755
  readonly production: "soviet";
@@ -653,18 +759,18 @@ declare const authorizations$3: readonly [{
653
759
  /**
654
760
  * Имя действия
655
761
  */
656
- declare const actionName$3 = "init";
762
+ declare const actionName$U = "init";
657
763
  /**
658
764
  * @interface
659
765
  */
660
766
  type IInit = IInit$1;
661
767
 
662
- type index$d_IInit = IInit;
663
- declare namespace index$d {
664
- export { type index$d_IInit as IInit, actionName$3 as actionName, authorizations$3 as authorizations };
768
+ type init_IInit = IInit;
769
+ declare namespace init {
770
+ export { type init_IInit as IInit, actionName$U as actionName, authorizations$U as authorizations };
665
771
  }
666
772
 
667
- declare const authorizations$2: readonly [{
773
+ declare const authorizations$T: readonly [{
668
774
  readonly permissions: readonly ["active"];
669
775
  readonly actor: {
670
776
  readonly production: "fund";
@@ -674,18 +780,18 @@ declare const authorizations$2: readonly [{
674
780
  /**
675
781
  * Имя действия
676
782
  */
677
- declare const actionName$2 = "newwithdraw";
783
+ declare const actionName$T = "newwithdraw";
678
784
  /**
679
785
  * @interface
680
786
  */
681
787
  type INewWithdraw = INewwithdraw;
682
788
 
683
- type index$c_INewWithdraw = INewWithdraw;
684
- declare namespace index$c {
685
- export { type index$c_INewWithdraw as INewWithdraw, actionName$2 as actionName, authorizations$2 as authorizations };
789
+ type newWithdraw_INewWithdraw = INewWithdraw;
790
+ declare namespace newWithdraw {
791
+ export { type newWithdraw_INewWithdraw as INewWithdraw, actionName$T as actionName, authorizations$T as authorizations };
686
792
  }
687
793
 
688
- declare const authorizations$1: readonly [{
794
+ declare const authorizations$S: readonly [{
689
795
  readonly permissions: readonly ["active"];
690
796
  readonly actor: {
691
797
  readonly production: "marketplace";
@@ -701,18 +807,18 @@ declare const authorizations$1: readonly [{
701
807
  /**
702
808
  * Имя действия
703
809
  */
704
- declare const actionName$1 = "spreadamount";
810
+ declare const actionName$S = "spreadamount";
705
811
  /**
706
812
  * @interface
707
813
  */
708
814
  type ISpreadAmount = ISpreadamount;
709
815
 
710
- type index$b_ISpreadAmount = ISpreadAmount;
711
- declare namespace index$b {
712
- export { type index$b_ISpreadAmount as ISpreadAmount, actionName$1 as actionName, authorizations$1 as authorizations };
816
+ type spreadAmount_ISpreadAmount = ISpreadAmount;
817
+ declare namespace spreadAmount {
818
+ export { type spreadAmount_ISpreadAmount as ISpreadAmount, actionName$S as actionName, authorizations$S as authorizations };
713
819
  }
714
820
 
715
- declare const authorizations: readonly [{
821
+ declare const authorizations$R: readonly [{
716
822
  readonly permissions: readonly ["active"];
717
823
  readonly actor: {
718
824
  readonly production: "gateway";
@@ -722,17 +828,15 @@ declare const authorizations: readonly [{
722
828
  /**
723
829
  * Имя действия
724
830
  */
725
- declare const actionName = "subcirculate";
831
+ declare const actionName$R = "subcirculate";
726
832
  /**
727
833
  * @interface
728
834
  */
729
835
  type ISubCirculation = ISubcirculate;
730
836
 
731
- type index$a_ISubCirculation = ISubCirculation;
732
- declare const index$a_actionName: typeof actionName;
733
- declare const index$a_authorizations: typeof authorizations;
734
- declare namespace index$a {
735
- export { type index$a_ISubCirculation as ISubCirculation, index$a_actionName as actionName, index$a_authorizations as authorizations };
837
+ type subCirculation_ISubCirculation = ISubCirculation;
838
+ declare namespace subCirculation {
839
+ export { type subCirculation_ISubCirculation as ISubCirculation, actionName$R as actionName, authorizations$R as authorizations };
736
840
  }
737
841
 
738
842
  /**
@@ -740,18 +844,34 @@ declare namespace index$a {
740
844
  * Вызывается контрактом автоматически по ходу выполнения логики для прозрачного добавления фонда накопления.
741
845
  */
742
846
 
743
- declare namespace index$9 {
744
- export { index$o as addAccumulation, index$m as addCirculation, index$l as addExpence, index$k as authorizeWithdraw, index$j as completeWithdraw, index$h as createFund, index$e as createWithdraw, index$g as deleteFund, index$f as editFund, index$d as init, index$i as newFund, index$c as newWithdraw, index$b as spreadAmount, index$n as subAccumulation, index$a as subCirculation };
847
+ declare const index$k_addAccumulation: typeof addAccumulation;
848
+ declare const index$k_addCirculation: typeof addCirculation;
849
+ declare const index$k_addExpense: typeof addExpense;
850
+ declare const index$k_authorizeWithdraw: typeof authorizeWithdraw;
851
+ declare const index$k_createFund: typeof createFund;
852
+ declare const index$k_deleteFund: typeof deleteFund;
853
+ declare const index$k_editFund: typeof editFund;
854
+ declare const index$k_init: typeof init;
855
+ declare const index$k_newFund: typeof newFund;
856
+ declare const index$k_newWithdraw: typeof newWithdraw;
857
+ declare const index$k_spreadAmount: typeof spreadAmount;
858
+ declare const index$k_subAccumulation: typeof subAccumulation;
859
+ declare const index$k_subCirculation: typeof subCirculation;
860
+ declare namespace index$k {
861
+ export { index$k_addAccumulation as addAccumulation, index$k_addCirculation as addCirculation, index$k_addExpense as addExpense, index$k_authorizeWithdraw as authorizeWithdraw, completeWithdraw$1 as completeWithdraw, index$k_createFund as createFund, createWithdraw$1 as createWithdraw, index$k_deleteFund as deleteFund, index$k_editFund as editFund, index$k_init as init, index$k_newFund as newFund, index$k_newWithdraw as newWithdraw, index$k_spreadAmount as spreadAmount, index$k_subAccumulation as subAccumulation, index$k_subCirculation as subCirculation };
745
862
  }
746
863
 
747
864
  /**
748
865
  * Имя таблицы
749
866
  */
750
- declare const tableName$3 = "accfunds";
867
+ declare const tableName$m = "accfunds";
751
868
  /**
752
869
  * Таблица хранится в {@link ContractNames._fund | области памяти контракта}.
753
870
  */
754
- declare const scope$3: {
871
+ declare const scope$m: {
872
+ /**
873
+ * Имя таблицы
874
+ */
755
875
  readonly production: "fund";
756
876
  readonly testnet: "fundtest2222";
757
877
  };
@@ -761,19 +881,22 @@ declare const scope$3: {
761
881
  */
762
882
  type IAccumulatedFunds = IAccfunds;
763
883
 
764
- type index$8_IAccumulatedFunds = IAccumulatedFunds;
765
- declare namespace index$8 {
766
- export { type index$8_IAccumulatedFunds as IAccumulatedFunds, scope$3 as scope, tableName$3 as tableName };
884
+ type accumulationFunds_IAccumulatedFunds = IAccumulatedFunds;
885
+ declare namespace accumulationFunds {
886
+ export { type accumulationFunds_IAccumulatedFunds as IAccumulatedFunds, scope$m as scope, tableName$m as tableName };
767
887
  }
768
888
 
769
889
  /**
770
890
  * Имя таблицы
771
891
  */
772
- declare const tableName$2 = "expfunds";
892
+ declare const tableName$l = "expfunds";
773
893
  /**
774
894
  * Таблица хранится в {@link ContractNames._fund | области памяти контракта}.
775
895
  */
776
- declare const scope$2: {
896
+ declare const scope$l: {
897
+ /**
898
+ * Имя таблицы
899
+ */
777
900
  readonly production: "fund";
778
901
  readonly testnet: "fundtest2222";
779
902
  };
@@ -782,19 +905,22 @@ declare const scope$2: {
782
905
  */
783
906
  type IExpensedFunds = IExpfunds;
784
907
 
785
- type index$7_IExpensedFunds = IExpensedFunds;
786
- declare namespace index$7 {
787
- export { type index$7_IExpensedFunds as IExpensedFunds, scope$2 as scope, tableName$2 as tableName };
908
+ type expenseFunds_IExpensedFunds = IExpensedFunds;
909
+ declare namespace expenseFunds {
910
+ export { type expenseFunds_IExpensedFunds as IExpensedFunds, scope$l as scope, tableName$l as tableName };
788
911
  }
789
912
 
790
913
  /**
791
914
  * Имя таблицы
792
915
  */
793
- declare const tableName$1 = "fundwallet";
916
+ declare const tableName$k = "fundwallet";
794
917
  /**
795
918
  * Таблица хранится в {@link ContractNames._fund | области памяти контракта}.
796
919
  */
797
- declare const scope$1: {
920
+ declare const scope$k: {
921
+ /**
922
+ * Имя таблицы
923
+ */
798
924
  readonly production: "fund";
799
925
  readonly testnet: "fundtest2222";
800
926
  };
@@ -803,19 +929,22 @@ declare const scope$1: {
803
929
  */
804
930
  type IFundWallet = IFundwallet;
805
931
 
806
- type index$6_IFundWallet = IFundWallet;
807
- declare namespace index$6 {
808
- export { type index$6_IFundWallet as IFundWallet, scope$1 as scope, tableName$1 as tableName };
932
+ type fundWallet_IFundWallet = IFundWallet;
933
+ declare namespace fundWallet {
934
+ export { type fundWallet_IFundWallet as IFundWallet, scope$k as scope, tableName$k as tableName };
809
935
  }
810
936
 
811
937
  /**
812
938
  * Имя таблицы
813
939
  */
814
- declare const tableName = "fwithdraws";
940
+ declare const tableName$j = "fwithdraws";
815
941
  /**
816
942
  * Таблица хранится в {@link ContractNames._fund | области памяти контракта}.
817
943
  */
818
- declare const scope: {
944
+ declare const scope$j: {
945
+ /**
946
+ * Имя таблицы
947
+ */
819
948
  readonly production: "fund";
820
949
  readonly testnet: "fundtest2222";
821
950
  };
@@ -824,11 +953,9 @@ declare const scope: {
824
953
  */
825
954
  type IFundWithdraws = IFwithdraws;
826
955
 
827
- type index$5_IFundWithdraws = IFundWithdraws;
828
- declare const index$5_scope: typeof scope;
829
- declare const index$5_tableName: typeof tableName;
830
- declare namespace index$5 {
831
- export { type index$5_IFundWithdraws as IFundWithdraws, index$5_scope as scope, index$5_tableName as tableName };
956
+ type fundWithdraws_IFundWithdraws = IFundWithdraws;
957
+ declare namespace fundWithdraws {
958
+ export { type fundWithdraws_IFundWithdraws as IFundWithdraws, scope$j as scope, tableName$j as tableName };
832
959
  }
833
960
 
834
961
  /**
@@ -836,115 +963,2699 @@ declare namespace index$5 {
836
963
  *
837
964
  */
838
965
 
839
- declare namespace index$4 {
840
- export { index$8 as AccumulatedFunds, index$7 as ExpensedFunds, index$6 as FundWallet, index$5 as FundWithdraws };
966
+ declare namespace index$j {
967
+ export { accumulationFunds as AccumulatedFunds, expenseFunds as ExpensedFunds, fundWallet as FundWallet, fundWithdraws as FundWithdraws };
841
968
  }
842
969
 
843
- declare const contractName: {
970
+ declare const contractName$4: {
844
971
  readonly production: "fund";
845
972
  readonly testnet: "fundtest2222";
846
973
  };
847
974
 
848
- declare const index$3_contractName: typeof contractName;
849
- declare namespace index$3 {
850
- export { index$9 as Actions, fund as Interfaces, index$4 as Tables, index$3_contractName as contractName };
975
+ declare namespace index$i {
976
+ export { index$k as Actions, fund as Interfaces, index$j as Tables, contractName$4 as contractName };
977
+ }
978
+
979
+ /** Представляет значение актива */
980
+ type IAsset$3 = string;
981
+ /** Представляет значение имени */
982
+ type IName$3 = string;
983
+ /** Представляет значение времени в секундах */
984
+ type ITimePointSec$2 = string;
985
+ /** Представляет 64-битное беззнаковое целое число */
986
+ type IUint64$2 = number | string;
987
+ interface IBalances$1 extends IBalancesBase$1 {
988
+ }
989
+ interface IBalancesBase$1 {
990
+ /** Уникальный идентификатор баланса */
991
+ id: IUint64$2;
992
+ /** Имя контракта */
993
+ contract: IName$3;
994
+ /** Количество актива */
995
+ quantity: IAsset$3;
996
+ }
997
+ interface ICounts$1 extends ICountsBase$1 {
998
+ }
999
+ interface ICountsBase$1 {
1000
+ /** Значение ключа */
1001
+ key: IName$3;
1002
+ /** Значение вторичного ключа */
1003
+ secondary_key: IName$3;
1004
+ /** Значение, связанное с ключами */
1005
+ value: IUint64$2;
1006
+ }
1007
+ interface IDeposit {
1008
+ /** Имя кооператива */
1009
+ coopname: IName$3;
1010
+ /** Имя пользователя */
1011
+ username: IName$3;
1012
+ /** Тип депозита */
1013
+ type: IName$3;
1014
+ /** Количество актива */
1015
+ quantity: IAsset$3;
1016
+ }
1017
+ interface IDeposits$1 {
1018
+ /** Уникальный идентификатор депозита */
1019
+ id: IUint64$2;
1020
+ /** Имя пользователя */
1021
+ username: IName$3;
1022
+ /** Имя кооператива */
1023
+ coopname: IName$3;
1024
+ /** Тип депозита */
1025
+ type: IName$3;
1026
+ /** Имя контракта токена */
1027
+ token_contract: IName$3;
1028
+ /** Количество актива */
1029
+ quantity: IAsset$3;
1030
+ /** Статус депозита */
1031
+ status: IName$3;
1032
+ /** Связанная ссылка с депозитом */
1033
+ link: string;
1034
+ /** Дополнительное примечание для депозита */
1035
+ memo: string;
1036
+ /** Время истечения срока действия депозита */
1037
+ expired_at: ITimePointSec$2;
1038
+ }
1039
+ interface IDocument$2 {
1040
+ /** Хэш-значение документа */
1041
+ hash: string;
1042
+ /** Публичный ключ, связанный с документом */
1043
+ pkey: string;
1044
+ /** Подпись документа */
1045
+ sign: string;
1046
+ /** Метаданные документа */
1047
+ meta: string;
1048
+ }
1049
+ interface IDpcomplete {
1050
+ /** Имя кооператива */
1051
+ coopname: IName$3;
1052
+ /** Имя администратора */
1053
+ admin: IName$3;
1054
+ /** Уникальный идентификатор депозита */
1055
+ deposit_id: IUint64$2;
1056
+ /** Дополнительное примечание для завершения */
1057
+ memo: string;
1058
+ }
1059
+ interface IDpfail {
1060
+ /** Имя кооператива */
1061
+ coopname: IName$3;
1062
+ /** Имя администратора */
1063
+ admin: IName$3;
1064
+ /** Уникальный идентификатор депозита */
1065
+ deposit_id: IUint64$2;
1066
+ /** Дополнительное примечание для отказа */
1067
+ memo: string;
1068
+ }
1069
+ interface INewdepositid {
1070
+ /** Имя пользователя */
1071
+ username: IName$3;
1072
+ /** Уникальный идентификатор депозита */
1073
+ id: IUint64$2;
1074
+ }
1075
+ interface INewwithdrid {
1076
+ /** Имя пользователя */
1077
+ username: IName$3;
1078
+ /** Уникальный идентификатор вывода */
1079
+ id: IUint64$2;
1080
+ }
1081
+ interface IWithdraw$1 {
1082
+ /** Имя кооператива */
1083
+ coopname: IName$3;
1084
+ /** Имя пользователя */
1085
+ username: IName$3;
1086
+ /** Количество актива */
1087
+ quantity: IAsset$3;
1088
+ /** Документ, связанный с выводом */
1089
+ document: IDocument$2;
1090
+ /** Идентификатор банковских данных */
1091
+ bank_data_id: string;
1092
+ /** Дополнительное примечание для вывода */
1093
+ memo: string;
1094
+ }
1095
+ interface IWithdrawauth {
1096
+ /** Имя кооператива */
1097
+ coopname: IName$3;
1098
+ /** Уникальный идентификатор вывода */
1099
+ withdraw_id: IUint64$2;
1100
+ }
1101
+ interface IWithdraws$1 {
1102
+ /** Уникальный идентификатор вывода */
1103
+ id: IUint64$2;
1104
+ /** Имя пользователя */
1105
+ username: IName$3;
1106
+ /** Имя кооператива */
1107
+ coopname: IName$3;
1108
+ /** Идентификатор банковских данных */
1109
+ bank_data_id: string;
1110
+ /** Имя контракта токена */
1111
+ token_contract: IName$3;
1112
+ /** Количество актива */
1113
+ quantity: IAsset$3;
1114
+ /** Статус вывода */
1115
+ status: IName$3;
1116
+ /** Документ, связанный с выводом */
1117
+ document: IDocument$2;
1118
+ /** Дополнительное примечание для вывода */
1119
+ memo: string;
1120
+ /** Время создания вывода */
1121
+ created_at: ITimePointSec$2;
1122
+ }
1123
+ interface IWthdcomplete {
1124
+ /** Имя кооператива */
1125
+ coopname: IName$3;
1126
+ /** Имя администратора */
1127
+ admin: IName$3;
1128
+ /** Уникальный идентификатор вывода */
1129
+ withdraw_id: IUint64$2;
1130
+ /** Дополнительное примечание для завершения */
1131
+ memo: string;
1132
+ }
1133
+ interface IWthdfail {
1134
+ /** Имя кооператива */
1135
+ coopname: IName$3;
1136
+ /** Имя администратора */
1137
+ admin: IName$3;
1138
+ /** Уникальный идентификатор вывода */
1139
+ withdraw_id: IUint64$2;
1140
+ /** Дополнительное примечание для отказа */
1141
+ memo: string;
1142
+ }
1143
+
1144
+ type gateway_IDeposit = IDeposit;
1145
+ type gateway_IDpcomplete = IDpcomplete;
1146
+ type gateway_IDpfail = IDpfail;
1147
+ type gateway_INewdepositid = INewdepositid;
1148
+ type gateway_INewwithdrid = INewwithdrid;
1149
+ type gateway_IWithdrawauth = IWithdrawauth;
1150
+ type gateway_IWthdcomplete = IWthdcomplete;
1151
+ type gateway_IWthdfail = IWthdfail;
1152
+ declare namespace gateway {
1153
+ export type { IAsset$3 as IAsset, IBalances$1 as IBalances, IBalancesBase$1 as IBalancesBase, ICounts$1 as ICounts, ICountsBase$1 as ICountsBase, gateway_IDeposit as IDeposit, IDeposits$1 as IDeposits, IDocument$2 as IDocument, gateway_IDpcomplete as IDpcomplete, gateway_IDpfail as IDpfail, IName$3 as IName, gateway_INewdepositid as INewdepositid, gateway_INewwithdrid as INewwithdrid, ITimePointSec$2 as ITimePointSec, IUint64$2 as IUint64, IWithdraw$1 as IWithdraw, gateway_IWithdrawauth as IWithdrawauth, IWithdraws$1 as IWithdraws, gateway_IWthdcomplete as IWthdcomplete, gateway_IWthdfail as IWthdfail };
851
1154
  }
852
1155
 
853
1156
  /**
854
- * Обобщенное имя аккаунта пользователя, которое должно быть заменено на реальное.
1157
+ * Имя действия
1158
+ * Требуется авторизация {@link Actors._coopname | технического аккаунта кооператива} со специальным разрешением.
855
1159
  */
856
- declare const _username = "_username";
1160
+ declare const authorizations$Q: readonly [{
1161
+ readonly permissions: readonly ["active", {
1162
+ readonly contract: "_contract";
1163
+ readonly action: "actionName";
1164
+ }];
1165
+ readonly actor: "_coopname";
1166
+ }];
857
1167
  /**
858
- * Обобщенное имя аккаунта кооператива, которое должно быть заменено на реальное.
1168
+ * Имя действия
859
1169
  */
860
- declare const _coopname = "_coopname";
1170
+ declare const actionName$Q = "deposit";
861
1171
  /**
862
- * Обобщенное имя аккаунта председателя кооператива, которое должно быть заменено на реальное.
1172
+ * @interface
1173
+ * Действие для создания заявки на взнос в кошелёк, которое производится уполномоченным аккаунтом от кооператива с бэкенда.
1174
+ * Создает новую запись депозита в таблице.
1175
+ *
1176
+ * @prop coopname Имя аккаунта кооператива, в рамках которого создается депозит.
1177
+ * @prop username Имя пользователя, создающего запись.
1178
+ * @prop type Тип заявки на депозит ('registration' или 'deposit').
1179
+ * @prop quantity Количество в формате asset.
863
1180
  */
864
- declare const _chairman = "_chairman";
865
- /**
866
- * Обобщенное имя аккаунта администратора кооператива, которое должно быть заменено на реальное.
1181
+ type ICreateDeposit = IDeposit;
1182
+
1183
+ type createDeposit_ICreateDeposit = ICreateDeposit;
1184
+ declare namespace createDeposit {
1185
+ export { type createDeposit_ICreateDeposit as ICreateDeposit, actionName$Q as actionName, authorizations$Q as authorizations };
1186
+ }
1187
+
1188
+ /**
1189
+ * Имя действия
1190
+ * Требуется авторизация {@link Actors._admin | администратора кооператива} со специальным разрешением.
867
1191
  */
868
- declare const _admin = "_admin";
1192
+ declare const authorizations$P: readonly [{
1193
+ readonly permissions: readonly ["active", {
1194
+ readonly contract: "_contract";
1195
+ readonly action: "actionName";
1196
+ }];
1197
+ readonly actor: "_admin";
1198
+ }];
869
1199
  /**
870
- * Обобщенное имя аккаунта контракта, которое должно быть заменено на реальное.
1200
+ * Имя действия
871
1201
  */
872
- declare const _contract = "_contract";
1202
+ declare const actionName$P = "dpcomplete";
873
1203
  /**
874
- * Системное имя коллективного аккаунта делегатов. Обычно это аккаунт "eosio".
1204
+ * @interface
875
1205
  */
876
- declare const _system$1 = "_system";
1206
+ type ICompleteDeposit = IDpcomplete;
877
1207
 
878
- declare const index$2__admin: typeof _admin;
879
- declare const index$2__chairman: typeof _chairman;
880
- declare const index$2__contract: typeof _contract;
881
- declare const index$2__coopname: typeof _coopname;
882
- declare const index$2__username: typeof _username;
883
- declare namespace index$2 {
884
- export { index$2__admin as _admin, index$2__chairman as _chairman, index$2__contract as _contract, index$2__coopname as _coopname, _system$1 as _system, index$2__username as _username };
1208
+ type completeDeposit_ICompleteDeposit = ICompleteDeposit;
1209
+ declare namespace completeDeposit {
1210
+ export { type completeDeposit_ICompleteDeposit as ICompleteDeposit, actionName$P as actionName, authorizations$P as authorizations };
885
1211
  }
886
1212
 
887
- declare const _draft: {
888
- readonly production: "draft";
889
- readonly testnet: "drafttest222";
890
- };
891
- declare const _fund: {
892
- readonly production: "fund";
893
- readonly testnet: "fundtest2222";
894
- };
895
- declare const _gateway: {
1213
+ /**
1214
+ * Имя действия
1215
+ * Требуется авторизация {@link Actors._admin | администратором кооператива} со специальным разрешением.
1216
+ */
1217
+ declare const authorizations$O: 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$O = "dpfail";
1228
+ /**
1229
+ * @interface
1230
+ */
1231
+ type IFailDeposit$2 = IDpfail;
1232
+
1233
+ declare namespace failDeposit {
1234
+ export { type IFailDeposit$2 as IFailDeposit, actionName$O as actionName, authorizations$O as authorizations };
1235
+ }
1236
+
1237
+ /**
1238
+ * Имя действия
1239
+ * Требуется авторизация {@link ContractNames._gateway | аккаунта контракта шлюза}.
1240
+ */
1241
+ declare const authorizations$N: 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$N = "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$N as actionName, authorizations$N as authorizations };
1260
+ }
1261
+
1262
+ /**
1263
+ * Имя действия
1264
+ * Требуется авторизация {@link ContractNames._gateway | аккаунта контракта шлюза}.
1265
+ */
1266
+ declare const authorizations$M: 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$M = "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$M as actionName, authorizations$M as authorizations };
1285
+ }
1286
+
1287
+ /**
1288
+ * Имя действия
1289
+ * Требуется авторизация {@link Actors._username | пользователя}.
1290
+ */
1291
+ declare const authorizations$L: readonly [{
1292
+ readonly permissions: readonly ["active"];
1293
+ readonly actor: "_username";
1294
+ }];
1295
+ /**
1296
+ * Имя действия
1297
+ */
1298
+ declare const actionName$L = "withdraw";
1299
+ /**
1300
+ * @interface
1301
+ * Действие для создания заявки на возврат паевого взноса из кошелька.
1302
+ */
1303
+ type IFailDeposit$1 = IWithdraw$1;
1304
+
1305
+ declare namespace createWithdraw {
1306
+ export { type IFailDeposit$1 as IFailDeposit, actionName$L as actionName, authorizations$L as authorizations };
1307
+ }
1308
+
1309
+ /**
1310
+ * Имя действия
1311
+ * Требуется авторизация {@link Actors._admin | администратора}.
1312
+ */
1313
+ declare const authorizations$K: 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$K = "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$K as actionName, authorizations$K as authorizations };
1333
+ }
1334
+
1335
+ /**
1336
+ * Имя действия
1337
+ * Требуется авторизация {@link Actors._admin | администратора кооператива} со специальным разрешением.
1338
+ */
1339
+ declare const authorizations$J: 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$J = "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$J as actionName, authorizations$J as authorizations };
1358
+ }
1359
+
1360
+ /**
1361
+ * Вызывается техническим аккаунтом кооператива для создания объекта депозита со статусом платежа.
1362
+ */
1363
+
1364
+ declare const index$h_completeDeposit: typeof completeDeposit;
1365
+ declare const index$h_completeWithdraw: typeof completeWithdraw;
1366
+ declare const index$h_createDeposit: typeof createDeposit;
1367
+ declare const index$h_createWithdraw: typeof createWithdraw;
1368
+ declare const index$h_failDeposit: typeof failDeposit;
1369
+ declare const index$h_failWithdraw: typeof failWithdraw;
1370
+ declare const index$h_newDepositId: typeof newDepositId;
1371
+ declare const index$h_newWithdrawId: typeof newWithdrawId;
1372
+ declare namespace index$h {
1373
+ export { index$h_completeDeposit as completeDeposit, index$h_completeWithdraw as completeWithdraw, index$h_createDeposit as createDeposit, index$h_createWithdraw as createWithdraw, index$h_failDeposit as failDeposit, index$h_failWithdraw as failWithdraw, index$h_newDepositId as newDepositId, index$h_newWithdrawId as newWithdrawId };
1374
+ }
1375
+
1376
+ /**
1377
+ * Имя таблицы
1378
+ */
1379
+ declare const tableName$i = "deposits";
1380
+ /**
1381
+ * Таблица хранится в {@link ContractNames._gateway | области памяти контракта}.
1382
+ */
1383
+ /**
1384
+ * Этот файл содержит интерфейс для таблицы "deposits".
1385
+ */
1386
+ declare const scope$i: {
896
1387
  readonly production: "gateway";
897
1388
  readonly testnet: "gateway2222";
898
1389
  };
899
- declare const _system: {
900
- readonly production: "eosio";
901
- readonly testnet: "eosio";
902
- };
903
- declare const _soviet: {
904
- readonly production: "soviet";
905
- readonly testnet: "soviettest22";
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$i as scope, tableName$i as tableName };
1399
+ }
1400
+
1401
+ /**
1402
+ * Имя таблицы
1403
+ */
1404
+ declare const tableName$h = "withdraws";
1405
+ /**
1406
+ * Таблица хранится в {@link ContractNames._gateway | области памяти контракта}.
1407
+ */
1408
+ declare const scope$h: {
1409
+ readonly production: "gateway";
1410
+ readonly testnet: "gateway2222";
906
1411
  };
907
- declare const _marketplace: {
908
- readonly production: "marketplace";
909
- readonly testnet: "markettest22";
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$h as scope, tableName$h as tableName };
1421
+ }
1422
+
1423
+ declare namespace index$g {
1424
+ export { deposits as Deposits, withdraws as Withdrws };
1425
+ }
1426
+
1427
+ declare const contractName$3: {
1428
+ readonly production: "gateway";
1429
+ readonly testnet: "gateway2222";
910
1430
  };
911
1431
 
912
- declare const index$1__draft: typeof _draft;
913
- declare const index$1__fund: typeof _fund;
914
- declare const index$1__gateway: typeof _gateway;
915
- declare const index$1__marketplace: typeof _marketplace;
916
- declare const index$1__soviet: typeof _soviet;
917
- declare const index$1__system: typeof _system;
918
- declare namespace index$1 {
919
- export { index$1__draft as _draft, index$1__fund as _fund, index$1__gateway as _gateway, index$1__marketplace as _marketplace, index$1__soviet as _soviet, index$1__system as _system };
1432
+ declare namespace index$f {
1433
+ export { index$h as Actions, gateway as Interfaces, index$g as Tables, contractName$3 as contractName };
920
1434
  }
921
1435
 
1436
+ type IAsset$2 = string;
1437
+ type IName$2 = string;
1438
+ type IPublicKey = string;
1439
+ type ITimePointSec$1 = string;
1440
+ type IUint64$1 = number | string;
1441
+ interface IAccounts$1 {
1442
+ username: IName$2;
1443
+ referer: IName$2;
1444
+ registrator: IName$2;
1445
+ type: IName$2;
1446
+ status: IName$2;
1447
+ meta: string;
1448
+ reputation: IUint64$1;
1449
+ registration_amount: IAsset$2;
1450
+ registered_at: ITimePointSec$1;
1451
+ signature_expires_at: ITimePointSec$1;
1452
+ }
1453
+ interface IBalances extends IBalancesBase {
1454
+ }
1455
+ interface IBalancesBase {
1456
+ id: IUint64$1;
1457
+ contract: IName$2;
1458
+ quantity: IAsset$2;
1459
+ }
1460
+ interface IChangekey {
1461
+ username: IName$2;
1462
+ public_key: IPublicKey;
1463
+ }
1464
+ interface IConfirmreg {
1465
+ coopname: IName$2;
1466
+ member: IName$2;
1467
+ }
1468
+ interface IDocument$1 {
1469
+ hash: string;
1470
+ pkey: string;
1471
+ sign: string;
1472
+ meta: string;
1473
+ }
1474
+ interface IJoincoop$1 {
1475
+ coopname: IName$2;
1476
+ username: IName$2;
1477
+ document: IDocument$1;
1478
+ }
1479
+ interface INewaccount {
1480
+ registrator: IName$2;
1481
+ referer: IName$2;
1482
+ username: IName$2;
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$2;
1491
+ token_contract: IName$2;
1492
+ announce: string;
1493
+ description: string;
1494
+ initial: IAsset$2;
1495
+ minimum: IAsset$2;
1496
+ }
1497
+ interface IOrgs {
1498
+ username: IName$2;
1499
+ parent_username: IName$2;
1500
+ verifications: IVerification[];
1501
+ storages: IStorage[];
1502
+ is_cooperative: boolean;
1503
+ is_active: boolean;
1504
+ coop_type: IName$2;
1505
+ token_contract: IName$2;
1506
+ announce: string;
1507
+ description: string;
1508
+ registration: IAsset$2;
1509
+ initial: IAsset$2;
1510
+ minimum: IAsset$2;
1511
+ }
1512
+ interface IPlotData {
1513
+ storage: IStorage;
1514
+ announce: string;
1515
+ description: string;
1516
+ }
1517
+ interface IRegorg {
1518
+ coopname: IName$2;
1519
+ username: IName$2;
1520
+ params: IOrgData;
1521
+ }
1522
+ interface IRegplot {
1523
+ coopname: IName$2;
1524
+ username: IName$2;
1525
+ params: IPlotData;
1526
+ }
1527
+ interface IReguser {
1528
+ coopname: IName$2;
1529
+ username: IName$2;
1530
+ storage: IStorage;
1531
+ }
1532
+ interface IStorage {
1533
+ storage_username: IName$2;
1534
+ }
1535
+ interface IUpdate {
1536
+ username: IName$2;
1537
+ meta: string;
1538
+ }
1539
+ interface IUsers$2 {
1540
+ username: IName$2;
1541
+ is_active: boolean;
1542
+ storages: IStorage[];
1543
+ verifications: IVerification[];
1544
+ }
1545
+ interface IVerificate {
1546
+ username: IName$2;
1547
+ procedure: IName$2;
1548
+ }
1549
+ interface IVerification {
1550
+ verificator: IName$2;
1551
+ is_verified: boolean;
1552
+ procedure: IName$2;
1553
+ created_at: ITimePointSec$1;
1554
+ last_update: ITimePointSec$1;
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_INewaccount = INewaccount;
1563
+ type registrator_IOrgData = IOrgData;
1564
+ type registrator_IOrgs = IOrgs;
1565
+ type registrator_IPlotData = IPlotData;
1566
+ type registrator_IPublicKey = IPublicKey;
1567
+ type registrator_IRegorg = IRegorg;
1568
+ type registrator_IRegplot = IRegplot;
1569
+ type registrator_IReguser = IReguser;
1570
+ type registrator_IStorage = IStorage;
1571
+ type registrator_IUpdate = IUpdate;
1572
+ type registrator_IVerificate = IVerificate;
1573
+ type registrator_IVerification = IVerification;
1574
+ declare namespace registrator {
1575
+ export type { IAccounts$1 as IAccounts, IAsset$2 as IAsset, registrator_IBalances as IBalances, registrator_IBalancesBase as IBalancesBase, registrator_IChangekey as IChangekey, registrator_IConfirmreg as IConfirmreg, IDocument$1 as IDocument, IJoincoop$1 as IJoincoop, IName$2 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, ITimePointSec$1 as ITimePointSec, IUint64$1 as IUint64, registrator_IUpdate as IUpdate, IUsers$2 as IUsers, registrator_IVerificate as IVerificate, registrator_IVerification as IVerification };
1576
+ }
1577
+
1578
+ declare const authorizations$I: readonly [{
1579
+ readonly permissions: readonly ["active"];
1580
+ readonly actor: {
1581
+ readonly production: "eosio";
1582
+ readonly testnet: "eosio";
1583
+ };
1584
+ }];
922
1585
  /**
923
- * Активные разрешения прав доступа аккаунта для выполнения действий.
1586
+ * Имя действия
924
1587
  */
925
- declare const active = "active";
1588
+ declare const actionName$I = "verificate";
926
1589
  /**
927
- * Разрешения прав доступа владельца аккаунта для замены активных разрешений.
1590
+ * @interface
928
1591
  */
929
- declare const owner = "owner";
1592
+ type IVerificateAccount = IVerificate;
1593
+
1594
+ type verificateAccount_IVerificateAccount = IVerificateAccount;
1595
+ declare namespace verificateAccount {
1596
+ export { type verificateAccount_IVerificateAccount as IVerificateAccount, actionName$I as actionName, authorizations$I as authorizations };
1597
+ }
1598
+
1599
+ declare const authorizations$H: readonly [{
1600
+ readonly permissions: readonly ["active"];
1601
+ readonly actor: "_username";
1602
+ }];
930
1603
  /**
931
- * Специальные разрешения прав доступа, которые выдаются советом кооператива аккаунту администратора с указанием контракта и имени действия, которые ему становятся доступны в кооперативе.
1604
+ * Имя действия
932
1605
  */
933
- declare const special: {
934
- readonly contract: "_contract";
935
- readonly action: "actionName";
936
- };
937
- interface Authorization {
938
- permissions: (typeof active | typeof owner | typeof special)[];
939
- actor: typeof _username | typeof _coopname | typeof _chairman | typeof _admin | typeof _contract | typeof _system$1;
1606
+ declare const actionName$H = "update";
1607
+ /**
1608
+ * @interface
1609
+ */
1610
+ type IUpdateAccount = IUpdate;
1611
+
1612
+ type updateAccount_IUpdateAccount = IUpdateAccount;
1613
+ declare namespace updateAccount {
1614
+ export { type updateAccount_IUpdateAccount as IUpdateAccount, actionName$H as actionName, authorizations$H as authorizations };
940
1615
  }
941
1616
 
942
- type index_Authorization = Authorization;
943
- declare const index_active: typeof active;
944
- declare const index_owner: typeof owner;
945
- declare const index_special: typeof special;
1617
+ /**
1618
+ * Требуется авторизация аккаунта {@link Actors._admin | администратора} c позитивным балансом AXON для оплаты аренды ресурсов.
1619
+ */
1620
+ declare const authorizations$G: readonly [{
1621
+ readonly permissions: readonly ["active", {
1622
+ readonly contract: "_contract";
1623
+ readonly action: "actionName";
1624
+ }];
1625
+ readonly actor: "_admin";
1626
+ }];
1627
+ /**
1628
+ * Имя действия
1629
+ */
1630
+ declare const actionName$G = "newaccount";
1631
+ /**
1632
+ * @interface
1633
+ */
1634
+ type ICreateAccount = INewaccount;
1635
+
1636
+ type createAccount_ICreateAccount = ICreateAccount;
1637
+ declare namespace createAccount {
1638
+ export { type createAccount_ICreateAccount as ICreateAccount, actionName$G as actionName, authorizations$G as authorizations };
1639
+ }
1640
+
1641
+ declare const authorizations$F: readonly [{
1642
+ readonly permissions: readonly ["active", {
1643
+ readonly contract: "_contract";
1644
+ readonly action: "actionName";
1645
+ }];
1646
+ readonly actor: "_admin";
1647
+ }];
1648
+ /**
1649
+ * Имя действия
1650
+ */
1651
+ declare const actionName$F = "regorg";
1652
+ /**
1653
+ * @interface
1654
+ */
1655
+ type IRegisterOrganization = IRegorg;
1656
+
1657
+ type registerOrganization_IRegisterOrganization = IRegisterOrganization;
1658
+ declare namespace registerOrganization {
1659
+ export { type registerOrganization_IRegisterOrganization as IRegisterOrganization, actionName$F as actionName, authorizations$F as authorizations };
1660
+ }
1661
+
1662
+ declare const authorizations$E: readonly [{
1663
+ readonly permissions: readonly ["active"];
1664
+ readonly actor: {
1665
+ readonly production: "eosio";
1666
+ readonly testnet: "eosio";
1667
+ };
1668
+ }];
1669
+ /**
1670
+ * Имя действия
1671
+ */
1672
+ declare const actionName$E = "changekey";
1673
+ /**
1674
+ * @interface
1675
+ */
1676
+ type IChangeKey = IChangekey;
1677
+
1678
+ type changeKey_IChangeKey = IChangeKey;
1679
+ declare namespace changeKey {
1680
+ export { type changeKey_IChangeKey as IChangeKey, actionName$E as actionName, authorizations$E as authorizations };
1681
+ }
1682
+
1683
+ /**
1684
+ * Требуется авторизация администратора кооператива или пользователя.
1685
+ */
1686
+ declare const authorizations$D: readonly [{
1687
+ readonly permissions: readonly ["active", {
1688
+ readonly contract: "_contract";
1689
+ readonly action: "actionName";
1690
+ }];
1691
+ readonly actor: "_admin";
1692
+ }, {
1693
+ readonly permissions: readonly ["active"];
1694
+ readonly actor: "_username";
1695
+ }];
1696
+ /**
1697
+ * Имя действия
1698
+ */
1699
+ declare const actionName$D = "joincoop";
1700
+ /**
1701
+ * @interface
1702
+ */
1703
+ type IJoinCooperative = IJoincoop$1;
1704
+
1705
+ type joinCooperative_IJoinCooperative = IJoinCooperative;
1706
+ declare namespace joinCooperative {
1707
+ export { type joinCooperative_IJoinCooperative as IJoinCooperative, actionName$D as actionName, authorizations$D as authorizations };
1708
+ }
1709
+
1710
+ /**
1711
+ * Требуется подпись контракта {@link ContractNames._soviet | совета}, которая поставляется автоматически в момент исполнения решения совета о приёме нового пайщика.
1712
+ */
1713
+ declare const authorizations$C: readonly [{
1714
+ readonly permissions: readonly ["active"];
1715
+ readonly actor: {
1716
+ readonly production: "soviet";
1717
+ readonly testnet: "soviettest22";
1718
+ };
1719
+ }];
1720
+ /**
1721
+ * Имя действия
1722
+ */
1723
+ declare const actionName$C = "confirmreg";
1724
+ /**
1725
+ * @interface
1726
+ */
1727
+ type IConfirmJoin = IConfirmreg;
1728
+
1729
+ type confirmJoin_IConfirmJoin = IConfirmJoin;
1730
+ declare namespace confirmJoin {
1731
+ export { type confirmJoin_IConfirmJoin as IConfirmJoin, actionName$C as actionName, authorizations$C as authorizations };
1732
+ }
1733
+
1734
+ /**
1735
+ * Действие верификации аккаунта
1736
+ */
1737
+
1738
+ declare const index$e_changeKey: typeof changeKey;
1739
+ declare const index$e_confirmJoin: typeof confirmJoin;
1740
+ declare const index$e_createAccount: typeof createAccount;
1741
+ declare const index$e_joinCooperative: typeof joinCooperative;
1742
+ declare const index$e_registerOrganization: typeof registerOrganization;
1743
+ declare const index$e_updateAccount: typeof updateAccount;
1744
+ declare const index$e_verificateAccount: typeof verificateAccount;
1745
+ declare namespace index$e {
1746
+ export { index$e_changeKey as changeKey, index$e_confirmJoin as confirmJoin, index$e_createAccount as createAccount, index$e_joinCooperative as joinCooperative, index$e_registerOrganization as registerOrganization, index$e_updateAccount as updateAccount, index$e_verificateAccount as verificateAccount };
1747
+ }
1748
+
1749
+ /**
1750
+ * Имя таблицы
1751
+ */
1752
+ declare const tableName$g = "accounts";
1753
+ /**
1754
+ * Таблица хранится в {@link ContractNames._registrator | области памяти контракта}.
1755
+ */
1756
+ declare const scope$g: {
1757
+ readonly production: "registrator";
1758
+ readonly testnet: "regtest22222";
1759
+ };
1760
+ /**
1761
+ * @interface
1762
+ * Таблица содержит реестр аккаунтов системы.
1763
+ */
1764
+ type IAccounts = IAccounts$1;
1765
+
1766
+ type accounts_IAccounts = IAccounts;
1767
+ declare namespace accounts {
1768
+ export { type accounts_IAccounts as IAccounts, scope$g as scope, tableName$g as tableName };
1769
+ }
1770
+
1771
+ /**
1772
+ * Имя таблицы
1773
+ */
1774
+ declare const tableName$f = "orgs";
1775
+ /**
1776
+ * Таблица хранится в {@link ContractNames._registrator | области памяти контракта}.
1777
+ */
1778
+ declare const scope$f: {
1779
+ readonly production: "registrator";
1780
+ readonly testnet: "regtest22222";
1781
+ };
1782
+ /**
1783
+ * @interface
1784
+ * Таблица содержит реестр организаций-пайщиков кооператива.
1785
+ */
1786
+ type IUsers$1 = IOrgs;
1787
+
1788
+ declare namespace organizations {
1789
+ export { type IUsers$1 as IUsers, scope$f as scope, tableName$f as tableName };
1790
+ }
1791
+
1792
+ /**
1793
+ * Имя таблицы
1794
+ */
1795
+ declare const tableName$e = "users";
1796
+ /**
1797
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
1798
+ */
1799
+ declare const scope$e = "_coopname";
1800
+ /**
1801
+ * @interface
1802
+ * Таблица содержит реестр пользователей-пайщиков кооператива.
1803
+ */
1804
+ type IUsers = IUsers$2;
1805
+
1806
+ type users_IUsers = IUsers;
1807
+ declare namespace users {
1808
+ export { type users_IUsers as IUsers, scope$e as scope, tableName$e as tableName };
1809
+ }
1810
+
1811
+ /**
1812
+ * Таблица содержит реестр аккаунтов системы.
1813
+ *
1814
+ */
1815
+
1816
+ declare namespace index$d {
1817
+ export { accounts as Accounts, organizations as Organizations, users as Users };
1818
+ }
1819
+
1820
+ declare const contractName$2: {
1821
+ readonly production: "registrator";
1822
+ readonly testnet: "regtest22222";
1823
+ };
1824
+
1825
+ declare namespace index$c {
1826
+ export { index$e as Actions, registrator as Interfaces, index$d as Tables, contractName$2 as contractName };
1827
+ }
1828
+
1829
+ type IAsset$1 = string;
1830
+ type IName$1 = string;
1831
+ type ISymbol = string;
1832
+ interface IAccount {
1833
+ balance: IAsset$1;
1834
+ }
1835
+ interface IClose$1 {
1836
+ owner: IName$1;
1837
+ symbol: ISymbol;
1838
+ }
1839
+ interface ICreate$1 {
1840
+ issuer: IName$1;
1841
+ maximum_supply: IAsset$1;
1842
+ }
1843
+ interface ICurrencyStats$1 {
1844
+ supply: IAsset$1;
1845
+ max_supply: IAsset$1;
1846
+ issuer: IName$1;
1847
+ }
1848
+ interface IIssue$1 {
1849
+ to: IName$1;
1850
+ quantity: IAsset$1;
1851
+ memo: string;
1852
+ }
1853
+ interface IOpen$1 {
1854
+ owner: IName$1;
1855
+ symbol: ISymbol;
1856
+ ram_payer: IName$1;
1857
+ }
1858
+ interface IRetire$1 {
1859
+ quantity: IAsset$1;
1860
+ memo: string;
1861
+ }
1862
+ interface ITransfer$1 {
1863
+ from: IName$1;
1864
+ to: IName$1;
1865
+ quantity: IAsset$1;
1866
+ memo: string;
1867
+ }
1868
+
1869
+ type eosio_token_IAccount = IAccount;
1870
+ type eosio_token_ISymbol = ISymbol;
1871
+ declare namespace eosio_token {
1872
+ export type { eosio_token_IAccount as IAccount, IAsset$1 as IAsset, IClose$1 as IClose, ICreate$1 as ICreate, ICurrencyStats$1 as ICurrencyStats, IIssue$1 as IIssue, IName$1 as IName, IOpen$1 as IOpen, IRetire$1 as IRetire, eosio_token_ISymbol as ISymbol, ITransfer$1 as ITransfer };
1873
+ }
1874
+
1875
+ declare const authorizations$B: readonly [{
1876
+ readonly permissions: readonly ["active"];
1877
+ readonly actor: "_username";
1878
+ }];
1879
+ /**
1880
+ * Имя действия
1881
+ */
1882
+ declare const actionName$B = "transfer";
1883
+ /**
1884
+ * @interface
1885
+ */
1886
+ type ITransfer = ITransfer$1;
1887
+
1888
+ type transfer_ITransfer = ITransfer;
1889
+ declare namespace transfer {
1890
+ export { type transfer_ITransfer as ITransfer, actionName$B as actionName, authorizations$B as authorizations };
1891
+ }
1892
+
1893
+ declare const authorizations$A: readonly [{
1894
+ readonly permissions: readonly ["active"];
1895
+ readonly actor: "_username";
1896
+ }];
1897
+ /**
1898
+ * Имя действия
1899
+ */
1900
+ declare const actionName$A = "open";
1901
+ /**
1902
+ * @interface
1903
+ */
1904
+ type IOpen = IOpen$1;
1905
+
1906
+ type open_IOpen = IOpen;
1907
+ declare namespace open {
1908
+ export { type open_IOpen as IOpen, actionName$A as actionName, authorizations$A as authorizations };
1909
+ }
1910
+
1911
+ /**
1912
+ * Требуется авторизация владельца аккаунта, чей баланс закрывается.
1913
+ */
1914
+ declare const authorizations$z: readonly [{
1915
+ readonly permissions: readonly ["active"];
1916
+ readonly actor: "_username";
1917
+ }];
1918
+ /**
1919
+ * Имя действия
1920
+ */
1921
+ declare const actionName$z = "close";
1922
+ /**
1923
+ * @interface
1924
+ */
1925
+ type IClose = IClose$1;
1926
+
1927
+ type close_IClose = IClose;
1928
+ declare namespace close {
1929
+ export { type close_IClose as IClose, actionName$z as actionName, authorizations$z as authorizations };
1930
+ }
1931
+
1932
+ declare const authorizations$y: readonly [{
1933
+ readonly permissions: readonly ["active"];
1934
+ readonly actor: "_system";
1935
+ }];
1936
+ /**
1937
+ * Имя действия
1938
+ */
1939
+ declare const actionName$y = "create";
1940
+ /**
1941
+ * @interface
1942
+ */
1943
+ type ICreate = ICreate$1;
1944
+
1945
+ type create_ICreate = ICreate;
1946
+ declare namespace create {
1947
+ export { type create_ICreate as ICreate, actionName$y as actionName, authorizations$y as authorizations };
1948
+ }
1949
+
1950
+ /**
1951
+ * Для выпуска токенов требуется авторизация учетной записи эмитента, указанная {@link create.ICreate | при создании токена}.
1952
+ */
1953
+ declare const authorizations$x: readonly [{
1954
+ readonly permissions: readonly ["active"];
1955
+ readonly actor: "currencyStats.issuer";
1956
+ }];
1957
+ /**
1958
+ * Имя действия
1959
+ */
1960
+ declare const actionName$x = "issue";
1961
+ /**
1962
+ * @interface
1963
+ */
1964
+ type IIssue = IIssue$1;
1965
+
1966
+ type issue_IIssue = IIssue;
1967
+ declare namespace issue {
1968
+ export { type issue_IIssue as IIssue, actionName$x as actionName, authorizations$x as authorizations };
1969
+ }
1970
+
1971
+ /**
1972
+ * Для сжигания токенов требуется авторизация учетной записи эмитента, указанная {@link create.ICreate | при создании токена}.
1973
+ */
1974
+ declare const authorizations$w: readonly [{
1975
+ readonly permissions: readonly ["active"];
1976
+ readonly actor: "currencyStats.issuer";
1977
+ }];
1978
+ /**
1979
+ * Имя действия
1980
+ */
1981
+ declare const actionName$w = "retire";
1982
+ /**
1983
+ * @interface
1984
+ */
1985
+ type IRetire = IRetire$1;
1986
+
1987
+ type retire_IRetire = IRetire;
1988
+ declare namespace retire {
1989
+ export { type retire_IRetire as IRetire, actionName$w as actionName, authorizations$w as authorizations };
1990
+ }
1991
+
1992
+ /**
1993
+ * Действие совершения перевода токенов AXON между аккаунтами.
1994
+ */
1995
+
1996
+ declare const index$b_close: typeof close;
1997
+ declare const index$b_create: typeof create;
1998
+ declare const index$b_issue: typeof issue;
1999
+ declare const index$b_open: typeof open;
2000
+ declare const index$b_retire: typeof retire;
2001
+ declare const index$b_transfer: typeof transfer;
2002
+ declare namespace index$b {
2003
+ export { index$b_close as close, index$b_create as create, index$b_issue as issue, index$b_open as open, index$b_retire as retire, index$b_transfer as transfer };
2004
+ }
2005
+
2006
+ /**
2007
+ * Имя таблицы
2008
+ */
2009
+ declare const tableName$d = "accounts";
2010
+ /**
2011
+ * Таблица хранится в {@link Actors._username | области памяти пользователя}.
2012
+ */
2013
+ declare const scope$d = "_username";
2014
+ /**
2015
+ * @interface
2016
+ * Таблица содержит переводы черновиков документов.
2017
+ */
2018
+ type IAccountBalance = IAccount;
2019
+
2020
+ type accountBalance_IAccountBalance = IAccountBalance;
2021
+ declare namespace accountBalance {
2022
+ export { type accountBalance_IAccountBalance as IAccountBalance, scope$d as scope, tableName$d as tableName };
2023
+ }
2024
+
2025
+ /**
2026
+ * Имя таблицы
2027
+ */
2028
+ declare const tableName$c = "stat";
2029
+ /**
2030
+ * Таблица хранится в области памяти символа токена "AXON".
2031
+ */
2032
+ declare const scope$c = "AXON";
2033
+ /**
2034
+ * @interface
2035
+ * Таблица содержит переводы черновиков документов.
2036
+ */
2037
+ type ICurrencyStats = ICurrencyStats$1;
2038
+
2039
+ type currencyStats_ICurrencyStats = ICurrencyStats;
2040
+ declare namespace currencyStats {
2041
+ export { type currencyStats_ICurrencyStats as ICurrencyStats, scope$c as scope, tableName$c as tableName };
2042
+ }
2043
+
2044
+ /**
2045
+ * Таблица содержит информацию о балансе токенов пользователей
2046
+ */
2047
+
2048
+ declare namespace index$a {
2049
+ export { accountBalance as AccountBalance, currencyStats as CurrencyStats };
2050
+ }
2051
+
2052
+ declare const contractName$1: {
2053
+ readonly production: "eosio.token";
2054
+ readonly testnet: "eosio.token";
2055
+ };
2056
+
2057
+ declare namespace index$9 {
2058
+ export { index$b as Actions, eosio_token as Interfaces, index$a as Tables, contractName$1 as contractName };
2059
+ }
2060
+
2061
+ type IAsset = string;
2062
+ type IName = string;
2063
+ type ITimePointSec = string;
2064
+ type IUint64 = number | string;
2065
+ interface IAct$1 {
2066
+ coopname: IName;
2067
+ username: IName;
2068
+ action: IName;
2069
+ decision_id: IUint64;
2070
+ document: IDocument;
2071
+ }
2072
+ interface IAddbalance {
2073
+ coopname: IName;
2074
+ username: IName;
2075
+ quantity: IAsset;
2076
+ }
2077
+ interface IAddprogbal {
2078
+ coopname: IName;
2079
+ username: IName;
2080
+ program_id: IUint64;
2081
+ quantity: IAsset;
2082
+ }
2083
+ interface IAddress {
2084
+ latitude: string;
2085
+ longitude: string;
2086
+ country: string;
2087
+ state: string;
2088
+ city: string;
2089
+ district: string;
2090
+ street: string;
2091
+ house_number: string;
2092
+ building_section: string;
2093
+ unit_number: string;
2094
+ directions: string;
2095
+ phone_number: string;
2096
+ business_hours: string;
2097
+ }
2098
+ interface IAddresses$1 {
2099
+ id: IUint64;
2100
+ coopname: IName;
2101
+ cooplate: IName;
2102
+ data: IAddress;
2103
+ meta: string;
2104
+ }
2105
+ interface IAddstaff {
2106
+ coopname: IName;
2107
+ chairman: IName;
2108
+ username: IName;
2109
+ rights: IRight[];
2110
+ position_title: string;
2111
+ }
2112
+ interface IAuthorize$1 {
2113
+ coopname: IName;
2114
+ chairman: IName;
2115
+ decision_id: IUint64;
2116
+ document: IDocument;
2117
+ }
2118
+ interface IAutomate$1 {
2119
+ coopname: IName;
2120
+ board_id: IUint64;
2121
+ member: IName;
2122
+ action_type: IName;
2123
+ provider: IName;
2124
+ encrypted_private_key: string;
2125
+ }
2126
+ interface IAutomator {
2127
+ id: IUint64;
2128
+ coopname: IName;
2129
+ board_id: IUint64;
2130
+ member: IName;
2131
+ action_type: IName;
2132
+ permission_name: IName;
2133
+ encrypted_private_key: string;
2134
+ }
2135
+ interface IAutosigner {
2136
+ decision_id: IUint64;
2137
+ }
2138
+ interface IBatch$1 {
2139
+ coopname: IName;
2140
+ action: IName;
2141
+ batch_id: IUint64;
2142
+ }
2143
+ interface IBlockbal {
2144
+ coopname: IName;
2145
+ username: IName;
2146
+ quantity: IAsset;
2147
+ }
2148
+ interface IBoardMember {
2149
+ username: IName;
2150
+ is_voting: boolean;
2151
+ position_title: string;
2152
+ position: IName;
2153
+ }
2154
+ interface IBoards$1 {
2155
+ id: IUint64;
2156
+ type: IName;
2157
+ name: string;
2158
+ description: string;
2159
+ members: IBoardMember[];
2160
+ created_at: ITimePointSec;
2161
+ last_update: ITimePointSec;
2162
+ }
2163
+ interface ICancelorder {
2164
+ coopname: IName;
2165
+ username: IName;
2166
+ exchange_id: IUint64;
2167
+ }
2168
+ interface ICancelvote {
2169
+ coopname: IName;
2170
+ member: IName;
2171
+ decision_id: IUint64;
2172
+ }
2173
+ interface IChange {
2174
+ coopname: IName;
2175
+ parent_username: IName;
2176
+ username: IName;
2177
+ exchange_id: IUint64;
2178
+ money_contributor: IName;
2179
+ product_contributor: IName;
2180
+ }
2181
+ interface IChanges$1 {
2182
+ id: IUint64;
2183
+ exchange_id: IUint64;
2184
+ contribution_product_decision_id: IUint64;
2185
+ return_product_decision_id: IUint64;
2186
+ }
2187
+ interface ICompleted {
2188
+ coopname: IName;
2189
+ exchange_id: IUint64;
2190
+ }
2191
+ interface ICounts extends ICountsBase {
2192
+ }
2193
+ interface ICountsBase {
2194
+ key: IName;
2195
+ secondary_key: IName;
2196
+ value: IUint64;
2197
+ }
2198
+ interface ICreaddress {
2199
+ coopname: IName;
2200
+ chairman: IName;
2201
+ cooplate: IName;
2202
+ data: IAddress;
2203
+ meta: string;
2204
+ }
2205
+ interface ICreateboard$1 {
2206
+ coopname: IName;
2207
+ chairman: IName;
2208
+ type: IName;
2209
+ members: IBoardMember[];
2210
+ name: string;
2211
+ description: string;
2212
+ }
2213
+ interface ICreateprog {
2214
+ coopname: IName;
2215
+ chairman: IName;
2216
+ title: string;
2217
+ announce: string;
2218
+ description: string;
2219
+ preview: string;
2220
+ images: string;
2221
+ calculation_type: IName;
2222
+ fixed_membership_contribution: IAsset;
2223
+ membership_percent_fee: IUint64;
2224
+ }
2225
+ interface IDecision$1 {
2226
+ coopname: IName;
2227
+ username: IName;
2228
+ action: IName;
2229
+ decision_id: IUint64;
2230
+ document: IDocument;
2231
+ }
2232
+ interface IDecisions$1 {
2233
+ id: IUint64;
2234
+ coopname: IName;
2235
+ username: IName;
2236
+ type: IName;
2237
+ batch_id: IUint64;
2238
+ votes_for: IName[];
2239
+ votes_against: IName[];
2240
+ validated: boolean;
2241
+ approved: boolean;
2242
+ authorized: boolean;
2243
+ authorization: IDocument;
2244
+ created_at: ITimePointSec;
2245
+ }
2246
+ interface IDeladdress {
2247
+ coopname: IName;
2248
+ chairman: IName;
2249
+ address_id: IUint64;
2250
+ }
2251
+ interface IDisableprog {
2252
+ coopname: IName;
2253
+ id: IUint64;
2254
+ }
2255
+ interface IDisautomate$1 {
2256
+ coopname: IName;
2257
+ board_id: IUint64;
2258
+ member: IName;
2259
+ automation_id: IUint64;
2260
+ }
2261
+ interface IDocument {
2262
+ hash: string;
2263
+ pkey: string;
2264
+ sign: string;
2265
+ meta: string;
2266
+ }
2267
+ interface IDraft$1 {
2268
+ coopname: IName;
2269
+ username: IName;
2270
+ decision_id: IUint64;
2271
+ }
2272
+ interface IEditaddress {
2273
+ coopname: IName;
2274
+ chairman: IName;
2275
+ address_id: IUint64;
2276
+ cooplate: IName;
2277
+ data: IAddress;
2278
+ meta: string;
2279
+ }
2280
+ interface IEditprog {
2281
+ coopname: IName;
2282
+ id: IUint64;
2283
+ title: string;
2284
+ announce: string;
2285
+ description: string;
2286
+ preview: string;
2287
+ images: string;
2288
+ }
2289
+ interface IExec$1 {
2290
+ executer: IName;
2291
+ coopname: IName;
2292
+ decision_id: IUint64;
2293
+ }
2294
+ interface IFundwithdraw {
2295
+ coopname: IName;
2296
+ username: IName;
2297
+ type: IName;
2298
+ withdraw_id: IUint64;
2299
+ document: IDocument;
2300
+ }
2301
+ interface IJoincoop {
2302
+ coopname: IName;
2303
+ username: IName;
2304
+ document: IDocument;
2305
+ }
2306
+ interface IJoincoops {
2307
+ id: IUint64;
2308
+ username: IName;
2309
+ is_paid: boolean;
2310
+ statement: IDocument;
2311
+ notice: string;
2312
+ }
2313
+ interface IMcontribute {
2314
+ coopname: IName;
2315
+ username: IName;
2316
+ program_id: IUint64;
2317
+ type: IName;
2318
+ secondary_id: IUint64;
2319
+ }
2320
+ interface IParticipants$1 {
2321
+ username: IName;
2322
+ created_at: ITimePointSec;
2323
+ last_update: ITimePointSec;
2324
+ last_min_pay: ITimePointSec;
2325
+ status: IName;
2326
+ is_initial: boolean;
2327
+ is_minimum: boolean;
2328
+ has_vote: boolean;
2329
+ }
2330
+ interface IPcontribute {
2331
+ coopname: IName;
2332
+ username: IName;
2333
+ program_id: IUint64;
2334
+ type: IName;
2335
+ secondary_id: IUint64;
2336
+ }
2337
+ interface IProgcomarket {
2338
+ id: IUint64;
2339
+ coopname: IName;
2340
+ is_active: boolean;
2341
+ title: string;
2342
+ announce: string;
2343
+ description: string;
2344
+ preview: string;
2345
+ images: string;
2346
+ meta: string;
2347
+ calculation_type: IName;
2348
+ membership_percent_fee: IUint64;
2349
+ fixed_membership_contribution: IAsset;
2350
+ }
2351
+ interface IProgram {
2352
+ coopname: IName;
2353
+ program_id: IUint64;
2354
+ }
2355
+ interface IProgwallets {
2356
+ id: IUint64;
2357
+ coopname: IName;
2358
+ program_id: IUint64;
2359
+ username: IName;
2360
+ available: IAsset;
2361
+ }
2362
+ interface IRecieved {
2363
+ coopname: IName;
2364
+ exchange_id: IUint64;
2365
+ }
2366
+ interface IRegpaid {
2367
+ coopname: IName;
2368
+ username: IName;
2369
+ }
2370
+ interface IRight {
2371
+ contract: IName;
2372
+ action_name: IName;
2373
+ }
2374
+ interface IRmstaff {
2375
+ coopname: IName;
2376
+ chairman: IName;
2377
+ username: IName;
2378
+ }
2379
+ interface ISetrights {
2380
+ coopname: IName;
2381
+ chairman: IName;
2382
+ username: IName;
2383
+ rights: IRight[];
2384
+ }
2385
+ interface IStaff {
2386
+ username: IName;
2387
+ position_title: string;
2388
+ roles: IName[];
2389
+ rights: IRight[];
2390
+ created_at: ITimePointSec;
2391
+ updated_at: ITimePointSec;
2392
+ }
2393
+ interface IStatement$1 {
2394
+ coopname: IName;
2395
+ username: IName;
2396
+ action: IName;
2397
+ decision_id: IUint64;
2398
+ document: IDocument;
2399
+ }
2400
+ interface ISubbalance {
2401
+ coopname: IName;
2402
+ username: IName;
2403
+ quantity: IAsset;
2404
+ }
2405
+ interface ISubprogbal {
2406
+ coopname: IName;
2407
+ username: IName;
2408
+ program_id: IUint64;
2409
+ quantity: IAsset;
2410
+ }
2411
+ interface IUnblockbal {
2412
+ coopname: IName;
2413
+ username: IName;
2414
+ quantity: IAsset;
2415
+ }
2416
+ interface IUpdateboard {
2417
+ coopname: IName;
2418
+ chairman: IName;
2419
+ board_id: IUint64;
2420
+ members: IBoardMember[];
2421
+ name: string;
2422
+ description: string;
2423
+ }
2424
+ interface IValidate$1 {
2425
+ coopname: IName;
2426
+ username: IName;
2427
+ decision_id: IUint64;
2428
+ }
2429
+ interface IVoteagainst {
2430
+ coopname: IName;
2431
+ member: IName;
2432
+ decision_id: IUint64;
2433
+ }
2434
+ interface IVotefor {
2435
+ coopname: IName;
2436
+ member: IName;
2437
+ decision_id: IUint64;
2438
+ }
2439
+ interface IWallets$1 {
2440
+ username: IName;
2441
+ coopname: IName;
2442
+ available: IAsset;
2443
+ blocked: IAsset;
2444
+ minimum: IAsset;
2445
+ }
2446
+ interface IWithdraw {
2447
+ coopname: IName;
2448
+ username: IName;
2449
+ withdraw_id: IUint64;
2450
+ }
2451
+
2452
+ type soviet_IAddbalance = IAddbalance;
2453
+ type soviet_IAddprogbal = IAddprogbal;
2454
+ type soviet_IAddress = IAddress;
2455
+ type soviet_IAddstaff = IAddstaff;
2456
+ type soviet_IAsset = IAsset;
2457
+ type soviet_IAutomator = IAutomator;
2458
+ type soviet_IAutosigner = IAutosigner;
2459
+ type soviet_IBlockbal = IBlockbal;
2460
+ type soviet_IBoardMember = IBoardMember;
2461
+ type soviet_ICancelorder = ICancelorder;
2462
+ type soviet_ICancelvote = ICancelvote;
2463
+ type soviet_IChange = IChange;
2464
+ type soviet_ICompleted = ICompleted;
2465
+ type soviet_ICounts = ICounts;
2466
+ type soviet_ICountsBase = ICountsBase;
2467
+ type soviet_ICreaddress = ICreaddress;
2468
+ type soviet_ICreateprog = ICreateprog;
2469
+ type soviet_IDeladdress = IDeladdress;
2470
+ type soviet_IDisableprog = IDisableprog;
2471
+ type soviet_IDocument = IDocument;
2472
+ type soviet_IEditaddress = IEditaddress;
2473
+ type soviet_IEditprog = IEditprog;
2474
+ type soviet_IFundwithdraw = IFundwithdraw;
2475
+ type soviet_IJoincoop = IJoincoop;
2476
+ type soviet_IJoincoops = IJoincoops;
2477
+ type soviet_IMcontribute = IMcontribute;
2478
+ type soviet_IName = IName;
2479
+ type soviet_IPcontribute = IPcontribute;
2480
+ type soviet_IProgcomarket = IProgcomarket;
2481
+ type soviet_IProgram = IProgram;
2482
+ type soviet_IProgwallets = IProgwallets;
2483
+ type soviet_IRecieved = IRecieved;
2484
+ type soviet_IRegpaid = IRegpaid;
2485
+ type soviet_IRight = IRight;
2486
+ type soviet_IRmstaff = IRmstaff;
2487
+ type soviet_ISetrights = ISetrights;
2488
+ type soviet_IStaff = IStaff;
2489
+ type soviet_ISubbalance = ISubbalance;
2490
+ type soviet_ISubprogbal = ISubprogbal;
2491
+ type soviet_ITimePointSec = ITimePointSec;
2492
+ type soviet_IUint64 = IUint64;
2493
+ type soviet_IUnblockbal = IUnblockbal;
2494
+ type soviet_IUpdateboard = IUpdateboard;
2495
+ type soviet_IVoteagainst = IVoteagainst;
2496
+ type soviet_IVotefor = IVotefor;
2497
+ type soviet_IWithdraw = IWithdraw;
2498
+ declare namespace soviet {
2499
+ export type { IAct$1 as IAct, soviet_IAddbalance as IAddbalance, soviet_IAddprogbal as IAddprogbal, soviet_IAddress as IAddress, IAddresses$1 as IAddresses, soviet_IAddstaff as IAddstaff, soviet_IAsset as IAsset, IAuthorize$1 as IAuthorize, IAutomate$1 as IAutomate, soviet_IAutomator as IAutomator, soviet_IAutosigner as IAutosigner, IBatch$1 as IBatch, soviet_IBlockbal as IBlockbal, soviet_IBoardMember as IBoardMember, IBoards$1 as IBoards, soviet_ICancelorder as ICancelorder, soviet_ICancelvote as ICancelvote, soviet_IChange as IChange, IChanges$1 as IChanges, soviet_ICompleted as ICompleted, soviet_ICounts as ICounts, soviet_ICountsBase as ICountsBase, soviet_ICreaddress as ICreaddress, ICreateboard$1 as ICreateboard, soviet_ICreateprog as ICreateprog, IDecision$1 as IDecision, IDecisions$1 as IDecisions, soviet_IDeladdress as IDeladdress, soviet_IDisableprog as IDisableprog, IDisautomate$1 as IDisautomate, soviet_IDocument as IDocument, IDraft$1 as IDraft, soviet_IEditaddress as IEditaddress, soviet_IEditprog as IEditprog, IExec$1 as IExec, soviet_IFundwithdraw as IFundwithdraw, soviet_IJoincoop as IJoincoop, soviet_IJoincoops as IJoincoops, soviet_IMcontribute as IMcontribute, soviet_IName as IName, IParticipants$1 as IParticipants, soviet_IPcontribute as IPcontribute, soviet_IProgcomarket as IProgcomarket, soviet_IProgram as IProgram, soviet_IProgwallets as IProgwallets, soviet_IRecieved as IRecieved, soviet_IRegpaid as IRegpaid, soviet_IRight as IRight, soviet_IRmstaff as IRmstaff, soviet_ISetrights as ISetrights, soviet_IStaff as IStaff, IStatement$1 as IStatement, soviet_ISubbalance as ISubbalance, soviet_ISubprogbal as ISubprogbal, soviet_ITimePointSec as ITimePointSec, soviet_IUint64 as IUint64, soviet_IUnblockbal as IUnblockbal, soviet_IUpdateboard as IUpdateboard, IValidate$1 as IValidate, soviet_IVoteagainst as IVoteagainst, soviet_IVotefor as IVotefor, IWallets$1 as IWallets, soviet_IWithdraw as IWithdraw };
2500
+ }
2501
+
2502
+ /**
2503
+ * Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
2504
+ */
2505
+ declare const authorizations$v: readonly [{
2506
+ readonly permissions: readonly ["active"];
2507
+ readonly actor: {
2508
+ readonly production: "soviet";
2509
+ readonly testnet: "soviettest22";
2510
+ };
2511
+ }];
2512
+ /**
2513
+ * Имя действия
2514
+ */
2515
+ declare const actionName$v = "draft";
2516
+ /**
2517
+ * @interface
2518
+ * Действие фиксирует документ в реестре перед отправкой в совет.
2519
+ */
2520
+ type IDraft = IDraft$1;
2521
+
2522
+ type draft_IDraft = IDraft;
2523
+ declare namespace draft {
2524
+ export { type draft_IDraft as IDraft, actionName$v as actionName, authorizations$v as authorizations };
2525
+ }
2526
+
2527
+ /**
2528
+ * Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
2529
+ */
2530
+ declare const authorizations$u: readonly [{
2531
+ readonly permissions: readonly ["active"];
2532
+ readonly actor: {
2533
+ readonly production: "soviet";
2534
+ readonly testnet: "soviettest22";
2535
+ };
2536
+ }];
2537
+ /**
2538
+ * Имя действия
2539
+ */
2540
+ declare const actionName$u = "batch";
2541
+ /**
2542
+ * @interface
2543
+ * Действие фиксирует связанную группу подписанных документов, которые отправляются в совет на голосование.
2544
+ */
2545
+ type IBatch = IBatch$1;
2546
+
2547
+ type batch_IBatch = IBatch;
2548
+ declare namespace batch {
2549
+ export { type batch_IBatch as IBatch, actionName$u as actionName, authorizations$u as authorizations };
2550
+ }
2551
+
2552
+ /**
2553
+ * Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
2554
+ */
2555
+ declare const authorizations$t: readonly [{
2556
+ readonly permissions: readonly ["active"];
2557
+ readonly actor: {
2558
+ readonly production: "soviet";
2559
+ readonly testnet: "soviettest22";
2560
+ };
2561
+ }];
2562
+ /**
2563
+ * Имя действия
2564
+ */
2565
+ declare const actionName$t = "statement";
2566
+ /**
2567
+ * @interface
2568
+ * Действие фиксирует принятое заявление в реестре после принятия решения советом кооператива.
2569
+ * @private
2570
+ */
2571
+ type IStatement = IStatement$1;
2572
+
2573
+ type statement_IStatement = IStatement;
2574
+ declare namespace statement {
2575
+ export { type statement_IStatement as IStatement, actionName$t as actionName, authorizations$t as authorizations };
2576
+ }
2577
+
2578
+ /**
2579
+ * Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
2580
+ */
2581
+ declare const authorizations$s: readonly [{
2582
+ readonly permissions: readonly ["active"];
2583
+ readonly actor: {
2584
+ readonly production: "soviet";
2585
+ readonly testnet: "soviettest22";
2586
+ };
2587
+ }];
2588
+ /**
2589
+ * Имя действия
2590
+ */
2591
+ declare const actionName$s = "act";
2592
+ /**
2593
+ * @interface
2594
+ * Действие фиксирует в реестре подписанные акты приёма-передачи имущества.
2595
+ */
2596
+ type IAct = IAct$1;
2597
+
2598
+ type act_IAct = IAct;
2599
+ declare namespace act {
2600
+ export { type act_IAct as IAct, actionName$s as actionName, authorizations$s as authorizations };
2601
+ }
2602
+
2603
+ /**
2604
+ * Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
2605
+ */
2606
+ declare const authorizations$r: readonly [{
2607
+ readonly permissions: readonly ["active"];
2608
+ readonly actor: {
2609
+ readonly production: "soviet";
2610
+ readonly testnet: "soviettest22";
2611
+ };
2612
+ }];
2613
+ /**
2614
+ * Имя действия
2615
+ */
2616
+ declare const actionName$r = "decision";
2617
+ /**
2618
+ * @interface
2619
+ * Действие фиксирует в реестре принятое решение совета.
2620
+ */
2621
+ type IDecision = IDecision$1;
2622
+
2623
+ type decision_IDecision = IDecision;
2624
+ declare namespace decision {
2625
+ export { type decision_IDecision as IDecision, actionName$r as actionName, authorizations$r as authorizations };
2626
+ }
2627
+
2628
+ /**
2629
+ * Действие фиксирует документ в реестре перед отправкой в совет на голосование.
2630
+ * @private
2631
+ */
2632
+
2633
+ declare const index$8_act: typeof act;
2634
+ declare const index$8_batch: typeof batch;
2635
+ declare const index$8_decision: typeof decision;
2636
+ declare const index$8_draft: typeof draft;
2637
+ declare const index$8_statement: typeof statement;
2638
+ declare namespace index$8 {
2639
+ export { index$8_act as act, index$8_batch as batch, index$8_decision as decision, index$8_draft as draft, index$8_statement as statement };
2640
+ }
2641
+
2642
+ /**
2643
+ * Действие выполняется за подписью {@link Actors._chairman | председателя}.
2644
+ */
2645
+ declare const authorizations$q: readonly [{
2646
+ readonly permissions: readonly ["active"];
2647
+ readonly actor: "_chairman";
2648
+ }];
2649
+ /**
2650
+ * Имя действия
2651
+ */
2652
+ declare const actionName$q = "creaddress";
2653
+ /**
2654
+ * @interface
2655
+ * Действие создаёт новый адрес.
2656
+ */
2657
+ type ICreateAddress = ICreaddress;
2658
+
2659
+ type createAddress_ICreateAddress = ICreateAddress;
2660
+ declare namespace createAddress {
2661
+ export { type createAddress_ICreateAddress as ICreateAddress, actionName$q as actionName, authorizations$q as authorizations };
2662
+ }
2663
+
2664
+ /**
2665
+ * Действие выполняется за подписью {@link Actors._chairman | председателя}.
2666
+ */
2667
+ declare const authorizations$p: readonly [{
2668
+ readonly permissions: readonly ["active"];
2669
+ readonly actor: "_chairman";
2670
+ }];
2671
+ /**
2672
+ * Имя действия
2673
+ */
2674
+ declare const actionName$p = "deladdress";
2675
+ /**
2676
+ * @interface
2677
+ * Действие удаляет адресс.
2678
+ */
2679
+ type IDeleteAddress = IDeladdress;
2680
+
2681
+ type deleteAddress_IDeleteAddress = IDeleteAddress;
2682
+ declare namespace deleteAddress {
2683
+ export { type deleteAddress_IDeleteAddress as IDeleteAddress, actionName$p as actionName, authorizations$p as authorizations };
2684
+ }
2685
+
2686
+ /**
2687
+ * Действие выполняется за подписью {@link Actors._chairman | председателя}.
2688
+ */
2689
+ declare const authorizations$o: readonly [{
2690
+ readonly permissions: readonly ["active"];
2691
+ readonly actor: "_chairman";
2692
+ }];
2693
+ /**
2694
+ * Имя действия
2695
+ */
2696
+ declare const actionName$o = "editaddress";
2697
+ /**
2698
+ * @interface
2699
+ * Действие редактирует адресс.
2700
+ */
2701
+ type IEditAddress = IEditaddress;
2702
+
2703
+ type editAddress_IEditAddress = IEditAddress;
2704
+ declare namespace editAddress {
2705
+ export { type editAddress_IEditAddress as IEditAddress, actionName$o as actionName, authorizations$o as authorizations };
2706
+ }
2707
+
2708
+ /**
2709
+ * Действие создаёт новый адрес.
2710
+ */
2711
+
2712
+ declare const index$7_createAddress: typeof createAddress;
2713
+ declare const index$7_deleteAddress: typeof deleteAddress;
2714
+ declare const index$7_editAddress: typeof editAddress;
2715
+ declare namespace index$7 {
2716
+ export { index$7_createAddress as createAddress, index$7_deleteAddress as deleteAddress, index$7_editAddress as editAddress };
2717
+ }
2718
+
2719
+ /**
2720
+ * Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета}, {@link ContractNames._gateway | шлюза} или {@link ContractNames._marketplace | маркетплейса}.
2721
+ */
2722
+ declare const authorizations$n: readonly [{
2723
+ readonly permissions: readonly ["active"];
2724
+ readonly actor: {
2725
+ readonly production: "soviet";
2726
+ readonly testnet: "soviettest22";
2727
+ };
2728
+ }, {
2729
+ readonly permissions: readonly ["active"];
2730
+ readonly actor: {
2731
+ readonly production: "gateway";
2732
+ readonly testnet: "gateway2222";
2733
+ };
2734
+ }, {
2735
+ readonly permissions: readonly ["active"];
2736
+ readonly actor: {
2737
+ readonly production: "marketplace";
2738
+ readonly testnet: "markettest22";
2739
+ };
2740
+ }];
2741
+ /**
2742
+ * Имя действия
2743
+ */
2744
+ declare const actionName$n = "addbalance";
2745
+ /**
2746
+ * @interface
2747
+ * Действие добавляет баланс токенов учёта паевого взноса в кошелёк пользователя.
2748
+ * @private
2749
+ */
2750
+ type IAddBalance = IAddbalance;
2751
+
2752
+ type addBalance_IAddBalance = IAddBalance;
2753
+ declare namespace addBalance {
2754
+ export { type addBalance_IAddBalance as IAddBalance, actionName$n as actionName, authorizations$n as authorizations };
2755
+ }
2756
+
2757
+ /**
2758
+ * Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета}, {@link ContractNames._gateway | шлюза} или {@link ContractNames._marketplace | маркетплейса}.
2759
+ */
2760
+ declare const authorizations$m: readonly [{
2761
+ readonly permissions: readonly ["active"];
2762
+ readonly actor: {
2763
+ readonly production: "soviet";
2764
+ readonly testnet: "soviettest22";
2765
+ };
2766
+ }, {
2767
+ readonly permissions: readonly ["active"];
2768
+ readonly actor: {
2769
+ readonly production: "gateway";
2770
+ readonly testnet: "gateway2222";
2771
+ };
2772
+ }, {
2773
+ readonly permissions: readonly ["active"];
2774
+ readonly actor: {
2775
+ readonly production: "marketplace";
2776
+ readonly testnet: "markettest22";
2777
+ };
2778
+ }];
2779
+ /**
2780
+ * Имя действия
2781
+ */
2782
+ declare const actionName$m = "subbalance";
2783
+ /**
2784
+ * @interface
2785
+ * @private
2786
+ * Действие списывает баланс токенов учёта паевого взноса из кошелька пользователя.
2787
+ */
2788
+ type ISubBalance = ISubbalance;
2789
+
2790
+ type subBalance_ISubBalance = ISubBalance;
2791
+ declare namespace subBalance {
2792
+ export { type subBalance_ISubBalance as ISubBalance, actionName$m as actionName, authorizations$m as authorizations };
2793
+ }
2794
+
2795
+ /**
2796
+ * Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета}, {@link ContractNames._gateway | шлюза} или {@link ContractNames._marketplace | маркетплейса}.
2797
+ */
2798
+ declare const authorizations$l: readonly [{
2799
+ readonly permissions: readonly ["active"];
2800
+ readonly actor: {
2801
+ readonly production: "soviet";
2802
+ readonly testnet: "soviettest22";
2803
+ };
2804
+ }, {
2805
+ readonly permissions: readonly ["active"];
2806
+ readonly actor: {
2807
+ readonly production: "gateway";
2808
+ readonly testnet: "gateway2222";
2809
+ };
2810
+ }, {
2811
+ readonly permissions: readonly ["active"];
2812
+ readonly actor: {
2813
+ readonly production: "marketplace";
2814
+ readonly testnet: "markettest22";
2815
+ };
2816
+ }];
2817
+ /**
2818
+ * Имя действия
2819
+ */
2820
+ declare const actionName$l = "blockbal";
2821
+ /**
2822
+ * @interface
2823
+ * @private
2824
+ * Действие блокирует баланс токенов учёта паевого взноса в кошельке пользователя. Вызывается смарт-контрактами при входе пайщика в целевую программу, в процессе возврата паевого взноса до момента фактической выплаты, и т.д.
2825
+ */
2826
+ type IBlockBalance = IBlockbal;
2827
+
2828
+ type blockBalance_IBlockBalance = IBlockBalance;
2829
+ declare namespace blockBalance {
2830
+ export { type blockBalance_IBlockBalance as IBlockBalance, actionName$l as actionName, authorizations$l as authorizations };
2831
+ }
2832
+
2833
+ /**
2834
+ * Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета}, {@link ContractNames._gateway | шлюза} или {@link ContractNames._marketplace | маркетплейса}.
2835
+ */
2836
+ declare const authorizations$k: readonly [{
2837
+ readonly permissions: readonly ["active"];
2838
+ readonly actor: {
2839
+ readonly production: "soviet";
2840
+ readonly testnet: "soviettest22";
2841
+ };
2842
+ }, {
2843
+ readonly permissions: readonly ["active"];
2844
+ readonly actor: {
2845
+ readonly production: "gateway";
2846
+ readonly testnet: "gateway2222";
2847
+ };
2848
+ }, {
2849
+ readonly permissions: readonly ["active"];
2850
+ readonly actor: {
2851
+ readonly production: "marketplace";
2852
+ readonly testnet: "markettest22";
2853
+ };
2854
+ }];
2855
+ /**
2856
+ * Имя действия
2857
+ */
2858
+ declare const actionName$k = "unblockbal";
2859
+ /**
2860
+ * @interface
2861
+ * @private
2862
+ * Действие разблокирует баланс токенов учёта паевого взноса в кошельке пользователя.
2863
+ */
2864
+ type IUnblockBal = IUnblockbal;
2865
+
2866
+ type unblockBalance_IUnblockBal = IUnblockBal;
2867
+ declare namespace unblockBalance {
2868
+ export { type unblockBalance_IUnblockBal as IUnblockBal, actionName$k as actionName, authorizations$k as authorizations };
2869
+ }
2870
+
2871
+ /**
2872
+ * Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета} или {@link ContractNames._marketplace | маркетплейса}.
2873
+ */
2874
+ declare const authorizations$j: readonly [{
2875
+ readonly permissions: readonly ["active"];
2876
+ readonly actor: {
2877
+ readonly production: "soviet";
2878
+ readonly testnet: "soviettest22";
2879
+ };
2880
+ }, {
2881
+ readonly permissions: readonly ["active"];
2882
+ readonly actor: {
2883
+ readonly production: "marketplace";
2884
+ readonly testnet: "markettest22";
2885
+ };
2886
+ }];
2887
+ /**
2888
+ * Имя действия
2889
+ */
2890
+ declare const actionName$j = "addprogbal";
2891
+ /**
2892
+ * @interface
2893
+ * @private
2894
+ * Действие добавляет баланс токенов учёта в целевую потребительскую программу кооператива.
2895
+ */
2896
+ type IAddProgramBalance = IAddprogbal;
2897
+
2898
+ type addProgramBalance_IAddProgramBalance = IAddProgramBalance;
2899
+ declare namespace addProgramBalance {
2900
+ export { type addProgramBalance_IAddProgramBalance as IAddProgramBalance, actionName$j as actionName, authorizations$j as authorizations };
2901
+ }
2902
+
2903
+ /**
2904
+ * Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета} или {@link ContractNames._marketplace | маркетплейса}.
2905
+ */
2906
+ declare const authorizations$i: readonly [{
2907
+ readonly permissions: readonly ["active"];
2908
+ readonly actor: {
2909
+ readonly production: "soviet";
2910
+ readonly testnet: "soviettest22";
2911
+ };
2912
+ }, {
2913
+ readonly permissions: readonly ["active"];
2914
+ readonly actor: {
2915
+ readonly production: "marketplace";
2916
+ readonly testnet: "markettest22";
2917
+ };
2918
+ }];
2919
+ /**
2920
+ * Имя действия
2921
+ */
2922
+ declare const actionName$i = "subprogbal";
2923
+ /**
2924
+ * @interface
2925
+ * @private
2926
+ * Действие списывает баланс токенов учёта из целевой потребительской программы кооператива.
2927
+ */
2928
+ type ISubProgramBalance = ISubprogbal;
2929
+
2930
+ type subProgramBalance_ISubProgramBalance = ISubProgramBalance;
2931
+ declare namespace subProgramBalance {
2932
+ export { type subProgramBalance_ISubProgramBalance as ISubProgramBalance, actionName$i as actionName, authorizations$i as authorizations };
2933
+ }
2934
+
2935
+ /**
2936
+ * Действие добавляет баланс токенов учёта паевого взноса в кошелёк пользователя.
2937
+ * @private
2938
+ */
2939
+
2940
+ declare const index$6_addBalance: typeof addBalance;
2941
+ declare const index$6_addProgramBalance: typeof addProgramBalance;
2942
+ declare const index$6_blockBalance: typeof blockBalance;
2943
+ declare const index$6_subBalance: typeof subBalance;
2944
+ declare const index$6_subProgramBalance: typeof subProgramBalance;
2945
+ declare const index$6_unblockBalance: typeof unblockBalance;
2946
+ declare namespace index$6 {
2947
+ export { index$6_addBalance as addBalance, index$6_addProgramBalance as addProgramBalance, index$6_blockBalance as blockBalance, index$6_subBalance as subBalance, index$6_subProgramBalance as subProgramBalance, index$6_unblockBalance as unblockBalance };
2948
+ }
2949
+
2950
+ /**
2951
+ * Действие выполняется за подписью {@link Actors._chairman | председателя}.
2952
+ */
2953
+ declare const authorizations$h: readonly [{
2954
+ readonly permissions: readonly ["active"];
2955
+ readonly actor: "_chairman";
2956
+ }];
2957
+ /**
2958
+ * Имя действия
2959
+ */
2960
+ declare const actionName$h = "createprog";
2961
+ /**
2962
+ * @interface
2963
+ * Действие редактирует целевую потребительскую программу маркетплейса.
2964
+ */
2965
+ type ICreateMarketProgram = ICreateprog;
2966
+
2967
+ type createMarketProgram_ICreateMarketProgram = ICreateMarketProgram;
2968
+ declare namespace createMarketProgram {
2969
+ export { type createMarketProgram_ICreateMarketProgram as ICreateMarketProgram, actionName$h as actionName, authorizations$h as authorizations };
2970
+ }
2971
+
2972
+ /**
2973
+ * Действие выполняется за подписью {@link Actors._chairman | председателя}.
2974
+ */
2975
+ declare const authorizations$g: readonly [{
2976
+ readonly permissions: readonly ["active"];
2977
+ readonly actor: "_chairman";
2978
+ }];
2979
+ /**
2980
+ * Имя действия
2981
+ */
2982
+ declare const actionName$g = "editprog";
2983
+ /**
2984
+ * @interface
2985
+ * Действие редактирует целевую потребительскую программу маркетплейса.
2986
+ */
2987
+ type IEditMarketProgram = IEditprog;
2988
+
2989
+ type editMarketProgram_IEditMarketProgram = IEditMarketProgram;
2990
+ declare namespace editMarketProgram {
2991
+ export { type editMarketProgram_IEditMarketProgram as IEditMarketProgram, actionName$g as actionName, authorizations$g as authorizations };
2992
+ }
2993
+
2994
+ /**
2995
+ * Действие выполняется за подписью {@link Actors._chairman | председателя}.
2996
+ */
2997
+ declare const authorizations$f: readonly [{
2998
+ readonly permissions: readonly ["active"];
2999
+ readonly actor: "_chairman";
3000
+ }];
3001
+ /**
3002
+ * Имя действия
3003
+ */
3004
+ declare const actionName$f = "disableprog";
3005
+ /**
3006
+ * @interface
3007
+ * Действие отключает целевую потребительскую программу маркетплейса.
3008
+ */
3009
+ type IDisableMarketProgram = IDisableprog;
3010
+
3011
+ type disableMarketProgram_IDisableMarketProgram = IDisableMarketProgram;
3012
+ declare namespace disableMarketProgram {
3013
+ export { type disableMarketProgram_IDisableMarketProgram as IDisableMarketProgram, actionName$f as actionName, authorizations$f as authorizations };
3014
+ }
3015
+
3016
+ /**
3017
+ * Действие создаёт целевую потребительскую программу маркетплейса.
3018
+ */
3019
+
3020
+ declare const index$5_createMarketProgram: typeof createMarketProgram;
3021
+ declare const index$5_disableMarketProgram: typeof disableMarketProgram;
3022
+ declare const index$5_editMarketProgram: typeof editMarketProgram;
3023
+ declare namespace index$5 {
3024
+ export { index$5_createMarketProgram as createMarketProgram, index$5_disableMarketProgram as disableMarketProgram, index$5_editMarketProgram as editMarketProgram };
3025
+ }
3026
+
3027
+ /**
3028
+ * Действие выполняется за подписью {@link Actors._member | члена совета}.
3029
+ */
3030
+ declare const authorizations$e: readonly [{
3031
+ readonly permissions: readonly ["active"];
3032
+ readonly actor: "_member";
3033
+ }];
3034
+ /**
3035
+ * Имя действия
3036
+ */
3037
+ declare const actionName$e = "voteagainst";
3038
+ /**
3039
+ * @interface
3040
+ * Принимает голос "ПРОТИВ" от члена совета по повестке собрания.
3041
+ */
3042
+ type IVoteAgainstDecision$1 = IVoteagainst;
3043
+
3044
+ declare namespace voteAgainst {
3045
+ export { type IVoteAgainstDecision$1 as IVoteAgainstDecision, actionName$e as actionName, authorizations$e as authorizations };
3046
+ }
3047
+
3048
+ /**
3049
+ * Действие выполняется за подписью {@link Actors._member | члена совета}.
3050
+ */
3051
+ declare const authorizations$d: readonly [{
3052
+ readonly permissions: readonly ["active"];
3053
+ readonly actor: "_member";
3054
+ }];
3055
+ /**
3056
+ * Имя действия
3057
+ */
3058
+ declare const actionName$d = "votefor";
3059
+ /**
3060
+ * @interface
3061
+ * Принимает голос "ПРОТИВ" от члена совета по повестке собрания.
3062
+ */
3063
+ type IVoteForDecision = IVotefor;
3064
+
3065
+ type voteFor_IVoteForDecision = IVoteForDecision;
3066
+ declare namespace voteFor {
3067
+ export { type voteFor_IVoteForDecision as IVoteForDecision, actionName$d as actionName, authorizations$d as authorizations };
3068
+ }
3069
+
3070
+ /**
3071
+ * Действие выполняется за подписью {@link Actors._member | члена совета}.
3072
+ */
3073
+ declare const authorizations$c: readonly [{
3074
+ readonly permissions: readonly ["active"];
3075
+ readonly actor: "_member";
3076
+ }];
3077
+ /**
3078
+ * Имя действия
3079
+ */
3080
+ declare const actionName$c = "cancelvote";
3081
+ /**
3082
+ * @interface
3083
+ * Принимает отмену голоса. Метод позволяет члену совета отменить свой голос, если решение еще не принято.
3084
+ */
3085
+ type IVoteAgainstDecision = IVoteagainst;
3086
+
3087
+ type cancelVote_IVoteAgainstDecision = IVoteAgainstDecision;
3088
+ declare namespace cancelVote {
3089
+ export { type cancelVote_IVoteAgainstDecision as IVoteAgainstDecision, actionName$c as actionName, authorizations$c as authorizations };
3090
+ }
3091
+
3092
+ /**
3093
+ * Действие выполняется за подписью {@link Actors._chairman | председателя}.
3094
+ */
3095
+ declare const authorizations$b: readonly [{
3096
+ readonly permissions: readonly ["active"];
3097
+ readonly actor: "_chairman";
3098
+ }];
3099
+ /**
3100
+ * Имя действия
3101
+ */
3102
+ declare const actionName$b = "authorize";
3103
+ /**
3104
+ * @interface
3105
+ * Действие утверждения принятого советом решения.
3106
+ */
3107
+ type IAuthorize = IAuthorize$1;
3108
+
3109
+ type authorize_IAuthorize = IAuthorize;
3110
+ declare namespace authorize {
3111
+ export { type authorize_IAuthorize as IAuthorize, actionName$b as actionName, authorizations$b as authorizations };
3112
+ }
3113
+
3114
+ /**
3115
+ * Действие выполняется за подписью любого {@link Actors._username | пользователя}.
3116
+ */
3117
+ declare const authorizations$a: readonly [{
3118
+ readonly permissions: readonly ["active"];
3119
+ readonly actor: "_username";
3120
+ }];
3121
+ /**
3122
+ * Имя действия
3123
+ */
3124
+ declare const actionName$a = "exec";
3125
+ /**
3126
+ * @interface
3127
+ * Действие исполнения принятого решения.
3128
+ * Обычно вызывается председателем сразу после утверждения решения,
3129
+ * чтобы оно вступило в силу и контракты исполнили его.
3130
+ * Однако, любой пользователь/кооператив может вызвать исполнение решения после того,
3131
+ * как оно было принято советом, если председатель по-какой-либо причине не исполнил его сам.
3132
+ */
3133
+ type IExec = IExec$1;
3134
+
3135
+ type exec_IExec = IExec;
3136
+ declare namespace exec {
3137
+ export { type exec_IExec as IExec, actionName$a as actionName, authorizations$a as authorizations };
3138
+ }
3139
+
3140
+ /**
3141
+ * Действие выполняется автоматически за подписью контракта {@link ContractNames._marketplace | маркетплейса}.
3142
+ */
3143
+ declare const authorizations$9: readonly [{
3144
+ readonly permissions: readonly ["active"];
3145
+ readonly actor: {
3146
+ readonly production: "marketplace";
3147
+ readonly testnet: "markettest22";
3148
+ };
3149
+ }];
3150
+ /**
3151
+ * Имя действия
3152
+ */
3153
+ declare const actionName$9 = "change";
3154
+ /**
3155
+ * @interface
3156
+ * Действие поставляет в совет на голосование заявления на взнос и возврат взноса двух пайщиков целевой потребительской программы маркетплейса.
3157
+ * @private
3158
+ */
3159
+ type IMarketDecision = IChange;
3160
+
3161
+ type marketDecision_IMarketDecision = IMarketDecision;
3162
+ declare namespace marketDecision {
3163
+ export { type marketDecision_IMarketDecision as IMarketDecision, actionName$9 as actionName, authorizations$9 as authorizations };
3164
+ }
3165
+
3166
+ /**
3167
+ * Действие выполняется автоматически за подписью контракта {@link ContractNames._gateway | шлюза}.
3168
+ */
3169
+ declare const authorizations$8: readonly [{
3170
+ readonly permissions: readonly ["active"];
3171
+ readonly actor: {
3172
+ readonly production: "gateway";
3173
+ readonly testnet: "gateway2222";
3174
+ };
3175
+ }];
3176
+ /**
3177
+ * Имя действия
3178
+ */
3179
+ declare const actionName$8 = "withdraw";
3180
+ /**
3181
+ * @interface
3182
+ * Действие поставляет в совет на голосование заявление на возврат паевого взноса.
3183
+ * @private
3184
+ */
3185
+ type IWithdrawDecision = IWithdraw;
3186
+
3187
+ type withdrawDecision_IWithdrawDecision = IWithdrawDecision;
3188
+ declare namespace withdrawDecision {
3189
+ export { type withdrawDecision_IWithdrawDecision as IWithdrawDecision, actionName$8 as actionName, authorizations$8 as authorizations };
3190
+ }
3191
+
3192
+ /**
3193
+ * Действие выполняется автоматически за подписью контракта {@link ContractNames._fund | фондов}.
3194
+ */
3195
+ declare const authorizations$7: readonly [{
3196
+ readonly permissions: readonly ["active"];
3197
+ readonly actor: {
3198
+ readonly production: "fund";
3199
+ readonly testnet: "fundtest2222";
3200
+ };
3201
+ }];
3202
+ /**
3203
+ * Имя действия
3204
+ */
3205
+ declare const actionName$7 = "fundwithdraw";
3206
+ /**
3207
+ * @interface
3208
+ * Действие поставляет в совет на голосование документ о необходимости использования средств фондов кооператива (кроме паевого).
3209
+ * @private
3210
+ */
3211
+ type IFundWithdrawDecision = IFundwithdraw;
3212
+
3213
+ type fundWithdrawDecision_IFundWithdrawDecision = IFundWithdrawDecision;
3214
+ declare namespace fundWithdrawDecision {
3215
+ export { type fundWithdrawDecision_IFundWithdrawDecision as IFundWithdrawDecision, actionName$7 as actionName, authorizations$7 as authorizations };
3216
+ }
3217
+
3218
+ /**
3219
+ * Действие выполняется автоматически за подписью контракта {@link ContractNames._registrator | шлюза}.
3220
+ */
3221
+ declare const authorizations$6: readonly [{
3222
+ readonly permissions: readonly ["active"];
3223
+ readonly actor: {
3224
+ readonly production: "registrator";
3225
+ readonly testnet: "regtest22222";
3226
+ };
3227
+ }];
3228
+ /**
3229
+ * Имя действия
3230
+ */
3231
+ declare const actionName$6 = "joincoop";
3232
+ /**
3233
+ * @interface
3234
+ * Действие поставляет в совет на голосование заявление на вступление в кооператив.
3235
+ * @private
3236
+ */
3237
+ type IJoinCoopDecision = IJoincoop;
3238
+
3239
+ type joinCoopDecision_IJoinCoopDecision = IJoinCoopDecision;
3240
+ declare namespace joinCoopDecision {
3241
+ export { type joinCoopDecision_IJoinCoopDecision as IJoinCoopDecision, actionName$6 as actionName, authorizations$6 as authorizations };
3242
+ }
3243
+
3244
+ /**
3245
+ * Действие выполняется автоматически за подписью контракта {@link ContractNames._marketplace | маркетплейса}.
3246
+ */
3247
+ declare const authorizations$5: readonly [{
3248
+ readonly permissions: readonly ["active"];
3249
+ readonly actor: {
3250
+ readonly production: "marketplace";
3251
+ readonly testnet: "markettest22";
3252
+ };
3253
+ }];
3254
+ /**
3255
+ * Имя действия
3256
+ */
3257
+ declare const actionName$5 = "recieved";
3258
+ /**
3259
+ * @interface
3260
+ * Действие поставляет в совет информацию о завершении процесса клиринга и инициирует выпуск закрывающих документов в реестр.
3261
+ * @private
3262
+ */
3263
+ type IProductRecieved = IRecieved;
3264
+
3265
+ type productRecieved_IProductRecieved = IProductRecieved;
3266
+ declare namespace productRecieved {
3267
+ export { type productRecieved_IProductRecieved as IProductRecieved, actionName$5 as actionName, authorizations$5 as authorizations };
3268
+ }
3269
+
3270
+ /**
3271
+ * Действие выполняется за подписью {@link Actors._admin | администратора}.
3272
+ */
3273
+ declare const authorizations$4: readonly [{
3274
+ readonly permissions: readonly ["active", {
3275
+ readonly contract: "_contract";
3276
+ readonly action: "actionName";
3277
+ }];
3278
+ readonly actor: "_admin";
3279
+ }];
3280
+ /**
3281
+ * Имя действия
3282
+ */
3283
+ declare const actionName$4 = "validated";
3284
+ /**
3285
+ * @interface
3286
+ * Действие валидации документов, поданных на голосование в совет.
3287
+ */
3288
+ type IValidate = IValidate$1;
3289
+
3290
+ type validate_IValidate = IValidate;
3291
+ declare namespace validate {
3292
+ export { type validate_IValidate as IValidate, actionName$4 as actionName, authorizations$4 as authorizations };
3293
+ }
3294
+
3295
+ /**
3296
+ * Действие выполняется за подписью {@link Actors._member | члена совета}.
3297
+ */
3298
+ declare const authorizations$3: readonly [{
3299
+ readonly permissions: readonly ["active"];
3300
+ readonly actor: "_member";
3301
+ }];
3302
+ /**
3303
+ * Имя действия
3304
+ */
3305
+ declare const actionName$3 = "automate";
3306
+ /**
3307
+ * @interface
3308
+ * Подключает автоматизацию принятия решений по указанным типам вопросов на повестке для члена совета.
3309
+ */
3310
+ type IAutomate = IAutomate$1;
3311
+
3312
+ type automate_IAutomate = IAutomate;
3313
+ declare namespace automate {
3314
+ export { type automate_IAutomate as IAutomate, actionName$3 as actionName, authorizations$3 as authorizations };
3315
+ }
3316
+
3317
+ /**
3318
+ * Действие выполняется за подписью {@link Actors._member | члена совета}.
3319
+ */
3320
+ declare const authorizations$2: readonly [{
3321
+ readonly permissions: readonly ["active"];
3322
+ readonly actor: "_member";
3323
+ }];
3324
+ /**
3325
+ * Имя действия
3326
+ */
3327
+ declare const actionName$2 = "disautomate";
3328
+ /**
3329
+ * @interface
3330
+ * Отключает автоматизацию принятия решений по указанным типам вопросов на повестке для члена совета.
3331
+ */
3332
+ type IDisautomate = IDisautomate$1;
3333
+
3334
+ type disautomate_IDisautomate = IDisautomate;
3335
+ declare namespace disautomate {
3336
+ export { type disautomate_IDisautomate as IDisautomate, actionName$2 as actionName, authorizations$2 as authorizations };
3337
+ }
3338
+
3339
+ /**
3340
+ * Принимает голос "ПРОТИВ" от члена совета по повестке собрания.
3341
+ */
3342
+
3343
+ declare const index$4_authorize: typeof authorize;
3344
+ declare const index$4_automate: typeof automate;
3345
+ declare const index$4_cancelVote: typeof cancelVote;
3346
+ declare const index$4_disautomate: typeof disautomate;
3347
+ declare const index$4_exec: typeof exec;
3348
+ declare const index$4_fundWithdrawDecision: typeof fundWithdrawDecision;
3349
+ declare const index$4_joinCoopDecision: typeof joinCoopDecision;
3350
+ declare const index$4_marketDecision: typeof marketDecision;
3351
+ declare const index$4_productRecieved: typeof productRecieved;
3352
+ declare const index$4_validate: typeof validate;
3353
+ declare const index$4_voteAgainst: typeof voteAgainst;
3354
+ declare const index$4_voteFor: typeof voteFor;
3355
+ declare const index$4_withdrawDecision: typeof withdrawDecision;
3356
+ declare namespace index$4 {
3357
+ export { index$4_authorize as authorize, index$4_automate as automate, index$4_cancelVote as cancelVote, index$4_disautomate as disautomate, index$4_exec as exec, index$4_fundWithdrawDecision as fundWithdrawDecision, index$4_joinCoopDecision as joinCoopDecision, index$4_marketDecision as marketDecision, index$4_productRecieved as productRecieved, index$4_validate as validate, index$4_voteAgainst as voteAgainst, index$4_voteFor as voteFor, index$4_withdrawDecision as withdrawDecision };
3358
+ }
3359
+
3360
+ declare const authorizations$1: readonly [{
3361
+ readonly permissions: readonly ["active"];
3362
+ readonly actor: "_chairman";
3363
+ }];
3364
+ /**
3365
+ * Имя действия
3366
+ */
3367
+ declare const actionName$1 = "createboard";
3368
+ /**
3369
+ * @interface
3370
+ */
3371
+ type ICreateboard = ICreateboard$1;
3372
+
3373
+ type createBoard_ICreateboard = ICreateboard;
3374
+ declare namespace createBoard {
3375
+ export { type createBoard_ICreateboard as ICreateboard, actionName$1 as actionName, authorizations$1 as authorizations };
3376
+ }
3377
+
3378
+ declare const authorizations: readonly [{
3379
+ readonly permissions: readonly ["active"];
3380
+ readonly actor: "_chairman";
3381
+ }];
3382
+ /**
3383
+ * Имя действия
3384
+ */
3385
+ declare const actionName = "updateboard";
3386
+ /**
3387
+ * @interface
3388
+ * Действие изменения данных доски совета.
3389
+ */
3390
+ type IUpdateBoard = IUpdateboard;
3391
+
3392
+ type updateBoard_IUpdateBoard = IUpdateBoard;
3393
+ declare const updateBoard_actionName: typeof actionName;
3394
+ declare const updateBoard_authorizations: typeof authorizations;
3395
+ declare namespace updateBoard {
3396
+ export { type updateBoard_IUpdateBoard as IUpdateBoard, updateBoard_actionName as actionName, updateBoard_authorizations as authorizations };
3397
+ }
3398
+
3399
+ declare const index$3_createBoard: typeof createBoard;
3400
+ declare const index$3_updateBoard: typeof updateBoard;
3401
+ declare namespace index$3 {
3402
+ export { index$3_createBoard as createBoard, index$3_updateBoard as updateBoard };
3403
+ }
3404
+
3405
+ /**
3406
+ * Пространство действий для работы с реестрами.
3407
+ * @private
3408
+ */
3409
+
3410
+ declare namespace index$2 {
3411
+ export { index$7 as Addresses, index$3 as Boards, index$4 as Decisions, index$5 as Programs, index$8 as Registry, index$6 as Wallet };
3412
+ }
3413
+
3414
+ /**
3415
+ * Имя таблицы
3416
+ */
3417
+ declare const tableName$b = "addresses";
3418
+ /**
3419
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
3420
+ */
3421
+ declare const scope$b = "_coopname";
3422
+ /**
3423
+ * @interface
3424
+ * Таблица хранит информацию о адресах кооператива.
3425
+ */
3426
+ type IAddresses = IAddresses$1;
3427
+
3428
+ type addresses_IAddresses = IAddresses;
3429
+ declare namespace addresses {
3430
+ export { type addresses_IAddresses as IAddresses, scope$b as scope, tableName$b as tableName };
3431
+ }
3432
+
3433
+ /**
3434
+ * Имя таблицы
3435
+ */
3436
+ declare const tableName$a = "staff";
3437
+ /**
3438
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
3439
+ */
3440
+ declare const scope$a = "_coopname";
3441
+ /**
3442
+ * @interface
3443
+ * Таблица содержит информацию о администраторах кооператива.
3444
+ */
3445
+ type IAdmins = IStaff;
3446
+
3447
+ type admins_IAdmins = IAdmins;
3448
+ declare namespace admins {
3449
+ export { type admins_IAdmins as IAdmins, scope$a as scope, tableName$a as tableName };
3450
+ }
3451
+
3452
+ /**
3453
+ * Имя таблицы
3454
+ */
3455
+ declare const tableName$9 = "autosigner";
3456
+ /**
3457
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
3458
+ */
3459
+ declare const scope$9 = "_coopname";
3460
+ /**
3461
+ * @interface
3462
+ * Таблица хранит очередь документов, которые ожидают автоматической подписи.
3463
+ */
3464
+ type IAutomationQueue = IAutosigner;
3465
+
3466
+ type automationQueue_IAutomationQueue = IAutomationQueue;
3467
+ declare namespace automationQueue {
3468
+ export { type automationQueue_IAutomationQueue as IAutomationQueue, scope$9 as scope, tableName$9 as tableName };
3469
+ }
3470
+
3471
+ /**
3472
+ * Имя таблицы
3473
+ */
3474
+ declare const tableName$8 = "automator";
3475
+ /**
3476
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
3477
+ */
3478
+ declare const scope$8 = "_coopname";
3479
+ /**
3480
+ * @interface
3481
+ * Таблица хранит автоматизации для голосований и решений совета.
3482
+ */
3483
+ type IAutomations = IAutomator;
3484
+
3485
+ type automations_IAutomations = IAutomations;
3486
+ declare namespace automations {
3487
+ export { type automations_IAutomations as IAutomations, scope$8 as scope, tableName$8 as tableName };
3488
+ }
3489
+
3490
+ /**
3491
+ * Имя таблицы
3492
+ */
3493
+ declare const tableName$7 = "boards";
3494
+ /**
3495
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
3496
+ */
3497
+ declare const scope$7 = "_coopname";
3498
+ /**
3499
+ * @interface
3500
+ * Таблица хранит информацию о советах кооператива.
3501
+ */
3502
+ type IBoards = IBoards$1;
3503
+
3504
+ type boards_IBoards = IBoards;
3505
+ declare namespace boards {
3506
+ export { type boards_IBoards as IBoards, scope$7 as scope, tableName$7 as tableName };
3507
+ }
3508
+
3509
+ /**
3510
+ * Имя таблицы
3511
+ */
3512
+ declare const tableName$6 = "changes";
3513
+ /**
3514
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
3515
+ */
3516
+ declare const scope$6 = "_coopname";
3517
+ /**
3518
+ * @interface
3519
+ * Зарегистрированные пары заявлений на взнос и возврат взносов через смарт-контракт маркетплейса.
3520
+ */
3521
+ type IChanges = IChanges$1;
3522
+
3523
+ type changes_IChanges = IChanges;
3524
+ declare namespace changes {
3525
+ export { type changes_IChanges as IChanges, scope$6 as scope, tableName$6 as tableName };
3526
+ }
3527
+
3528
+ /**
3529
+ * Имя таблицы
3530
+ */
3531
+ declare const tableName$5 = "decisions";
3532
+ /**
3533
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
3534
+ */
3535
+ declare const scope$5 = "_coopname";
3536
+ /**
3537
+ * @interface
3538
+ */
3539
+ type IDecisions = IDecisions$1;
3540
+
3541
+ type decisions_IDecisions = IDecisions;
3542
+ declare namespace decisions {
3543
+ export { type decisions_IDecisions as IDecisions, scope$5 as scope, tableName$5 as tableName };
3544
+ }
3545
+
3546
+ /**
3547
+ * Имя таблицы
3548
+ */
3549
+ declare const tableName$4 = "joincoops";
3550
+ /**
3551
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
3552
+ */
3553
+ declare const scope$4 = "_coopname";
3554
+ /**
3555
+ * @interface
3556
+ * Таблица хранит заявления на вступление в кооператив, ожидающие рассмотрения в совете.
3557
+ */
3558
+ type IJoinCoops = IJoincoops;
3559
+
3560
+ type joinCoops_IJoinCoops = IJoinCoops;
3561
+ declare namespace joinCoops {
3562
+ export { type joinCoops_IJoinCoops as IJoinCoops, scope$4 as scope, tableName$4 as tableName };
3563
+ }
3564
+
3565
+ /**
3566
+ * Имя таблицы
3567
+ */
3568
+ declare const tableName$3 = "progcomarket";
3569
+ /**
3570
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
3571
+ */
3572
+ declare const scope$3 = "_coopname";
3573
+ /**
3574
+ * @interface
3575
+ * Таблица хранит целевые потребительские программы контракта маркетплейса.
3576
+ */
3577
+ type IMarketPrograms = IProgcomarket;
3578
+
3579
+ type marketPrograms_IMarketPrograms = IMarketPrograms;
3580
+ declare namespace marketPrograms {
3581
+ export { type marketPrograms_IMarketPrograms as IMarketPrograms, scope$3 as scope, tableName$3 as tableName };
3582
+ }
3583
+
3584
+ /**
3585
+ * Имя таблицы
3586
+ */
3587
+ declare const tableName$2 = "participants";
3588
+ /**
3589
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
3590
+ */
3591
+ declare const scope$2 = "_coopname";
3592
+ /**
3593
+ * @interface
3594
+ * Таблица хранит публичную часть реестра пайщиков кооператива.
3595
+ */
3596
+ type IParticipants = IParticipants$1;
3597
+
3598
+ type participants_IParticipants = IParticipants;
3599
+ declare namespace participants {
3600
+ export { type participants_IParticipants as IParticipants, scope$2 as scope, tableName$2 as tableName };
3601
+ }
3602
+
3603
+ /**
3604
+ * Имя таблицы
3605
+ */
3606
+ declare const tableName$1 = "progwallets";
3607
+ /**
3608
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
3609
+ */
3610
+ declare const scope$1 = "_coopname";
3611
+ /**
3612
+ * @interface
3613
+ * Таблица хранит информацию о балансах пайщиков в целевых потребительских программах кооператива.
3614
+ */
3615
+ type IProgramWallets = IProgwallets;
3616
+
3617
+ type programWallets_IProgramWallets = IProgramWallets;
3618
+ declare namespace programWallets {
3619
+ export { type programWallets_IProgramWallets as IProgramWallets, scope$1 as scope, tableName$1 as tableName };
3620
+ }
3621
+
3622
+ /**
3623
+ * Имя таблицы
3624
+ */
3625
+ declare const tableName = "wallets";
3626
+ /**
3627
+ * Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
3628
+ */
3629
+ declare const scope = "_coopname";
3630
+ /**
3631
+ * @interface
3632
+ * Таблица содержит сводный баланс пайщиков кооператива.
3633
+ */
3634
+ type IWallets = IWallets$1;
3635
+
3636
+ type wallets_IWallets = IWallets;
3637
+ declare const wallets_scope: typeof scope;
3638
+ declare const wallets_tableName: typeof tableName;
3639
+ declare namespace wallets {
3640
+ export { type wallets_IWallets as IWallets, wallets_scope as scope, wallets_tableName as tableName };
3641
+ }
3642
+
3643
+ /**
3644
+ * Таблица хранит информацию о адресах кооператива.
3645
+ */
3646
+
3647
+ declare namespace index$1 {
3648
+ export { addresses as Addresses, admins as Admins, automationQueue as AutomationQueue, automations as Automations, boards as Boards, changes as Changes, decisions as Decisions, joinCoops as JoinCoops, marketPrograms as MarketPrograms, participants as Participants, programWallets as ProgramWallets, wallets as Wallets };
3649
+ }
3650
+
3651
+ declare const contractName: {
3652
+ readonly production: "soviet";
3653
+ readonly testnet: "soviettest22";
3654
+ };
3655
+
3656
+ declare const index_contractName: typeof contractName;
946
3657
  declare namespace index {
947
- export { type index_Authorization as Authorization, index_active as active, index_owner as owner, index_special as special };
3658
+ export { index$2 as Actions, soviet as Interfaces, index$1 as Tables, index_contractName as contractName };
948
3659
  }
949
3660
 
950
- export { index$2 as Actors, index$1 as ContractNames, index$p as DraftContract, index$3 as FundContract, index as Permissions };
3661
+ export { index$l as DraftContract, index$i as FundContract, index$f as GatewayContract, index$c as RegistratorContract, index as SovietContract, index$9 as TokenContract, index$o as _Common };