cooptypes 0.1.0 → 0.2.0

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