@sentio/sdk 1.26.2 → 1.26.3

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.
@@ -25,7 +25,7 @@ export declare class token extends aptos.AptosBaseProcessor {
25
25
  }
26
26
  export declare namespace token {
27
27
  class BurnTokenEvent {
28
- static TYPE_NAME: string;
28
+ static TYPE_QNAME: string;
29
29
  id: token.TokenId;
30
30
  amount: bigint;
31
31
  }
@@ -34,7 +34,7 @@ export declare namespace token {
34
34
  type_arguments: [];
35
35
  }
36
36
  class CollectionData {
37
- static TYPE_NAME: string;
37
+ static TYPE_QNAME: string;
38
38
  description: string;
39
39
  name: string;
40
40
  uri: string;
@@ -43,13 +43,13 @@ export declare namespace token {
43
43
  mutability_config: token.CollectionMutabilityConfig;
44
44
  }
45
45
  class CollectionMutabilityConfig {
46
- static TYPE_NAME: string;
46
+ static TYPE_QNAME: string;
47
47
  description: Boolean;
48
48
  uri: Boolean;
49
49
  maximum: Boolean;
50
50
  }
51
51
  class Collections {
52
- static TYPE_NAME: string;
52
+ static TYPE_QNAME: string;
53
53
  collection_data: table.Table<string, token.CollectionData>;
54
54
  token_data: table.Table<token.TokenDataId, token.TokenData>;
55
55
  create_collection_events: event.EventHandle<token.CreateCollectionEvent>;
@@ -57,7 +57,7 @@ export declare namespace token {
57
57
  mint_token_events: event.EventHandle<token.MintTokenEvent>;
58
58
  }
59
59
  class CreateCollectionEvent {
60
- static TYPE_NAME: string;
60
+ static TYPE_QNAME: string;
61
61
  creator: Address;
62
62
  collection_name: string;
63
63
  uri: string;
@@ -69,7 +69,7 @@ export declare namespace token {
69
69
  type_arguments: [];
70
70
  }
71
71
  class CreateTokenDataEvent {
72
- static TYPE_NAME: string;
72
+ static TYPE_QNAME: string;
73
73
  id: token.TokenDataId;
74
74
  description: string;
75
75
  maximum: bigint;
@@ -88,7 +88,7 @@ export declare namespace token {
88
88
  type_arguments: [];
89
89
  }
90
90
  class DepositEvent {
91
- static TYPE_NAME: string;
91
+ static TYPE_QNAME: string;
92
92
  id: token.TokenId;
93
93
  amount: bigint;
94
94
  }
@@ -97,7 +97,7 @@ export declare namespace token {
97
97
  type_arguments: [];
98
98
  }
99
99
  class MintTokenEvent {
100
- static TYPE_NAME: string;
100
+ static TYPE_QNAME: string;
101
101
  id: token.TokenDataId;
102
102
  amount: bigint;
103
103
  }
@@ -106,7 +106,7 @@ export declare namespace token {
106
106
  type_arguments: [];
107
107
  }
108
108
  class MutateTokenPropertyMapEvent {
109
- static TYPE_NAME: string;
109
+ static TYPE_QNAME: string;
110
110
  old_id: token.TokenId;
111
111
  new_id: token.TokenId;
112
112
  keys: string[];
@@ -118,19 +118,19 @@ export declare namespace token {
118
118
  type_arguments: [];
119
119
  }
120
120
  class Royalty {
121
- static TYPE_NAME: string;
121
+ static TYPE_QNAME: string;
122
122
  royalty_points_numerator: bigint;
123
123
  royalty_points_denominator: bigint;
124
124
  payee_address: Address;
125
125
  }
126
126
  class Token {
127
- static TYPE_NAME: string;
127
+ static TYPE_QNAME: string;
128
128
  id: token.TokenId;
129
129
  amount: bigint;
130
130
  token_properties: property_map.PropertyMap;
131
131
  }
132
132
  class TokenData {
133
- static TYPE_NAME: string;
133
+ static TYPE_QNAME: string;
134
134
  maximum: bigint;
135
135
  largest_property_version: bigint;
136
136
  supply: bigint;
@@ -142,18 +142,18 @@ export declare namespace token {
142
142
  mutability_config: token.TokenMutabilityConfig;
143
143
  }
144
144
  class TokenDataId {
145
- static TYPE_NAME: string;
145
+ static TYPE_QNAME: string;
146
146
  creator: Address;
147
147
  collection: string;
148
148
  name: string;
149
149
  }
150
150
  class TokenId {
151
- static TYPE_NAME: string;
151
+ static TYPE_QNAME: string;
152
152
  token_data_id: token.TokenDataId;
153
153
  property_version: bigint;
154
154
  }
155
155
  class TokenMutabilityConfig {
156
- static TYPE_NAME: string;
156
+ static TYPE_QNAME: string;
157
157
  maximum: Boolean;
158
158
  uri: Boolean;
159
159
  royalty: Boolean;
@@ -161,7 +161,7 @@ export declare namespace token {
161
161
  properties: Boolean;
162
162
  }
163
163
  class TokenStore {
164
- static TYPE_NAME: string;
164
+ static TYPE_QNAME: string;
165
165
  tokens: table.Table<token.TokenId, token.Token>;
166
166
  direct_transfer: Boolean;
167
167
  deposit_events: event.EventHandle<token.DepositEvent>;
@@ -170,14 +170,14 @@ export declare namespace token {
170
170
  mutate_token_property_events: event.EventHandle<token.MutateTokenPropertyMapEvent>;
171
171
  }
172
172
  class WithdrawCapability {
173
- static TYPE_NAME: string;
173
+ static TYPE_QNAME: string;
174
174
  token_owner: Address;
175
175
  token_id: token.TokenId;
176
176
  amount: bigint;
177
177
  expiration_sec: bigint;
178
178
  }
179
179
  class WithdrawEvent {
180
- static TYPE_NAME: string;
180
+ static TYPE_QNAME: string;
181
181
  id: token.TokenId;
182
182
  amount: bigint;
183
183
  }
@@ -299,11 +299,11 @@ export declare namespace token {
299
299
  }
300
300
  export declare namespace property_map {
301
301
  class PropertyMap {
302
- static TYPE_NAME: string;
302
+ static TYPE_QNAME: string;
303
303
  map: simple_map.SimpleMap<string, property_map.PropertyValue>;
304
304
  }
305
305
  class PropertyValue {
306
- static TYPE_NAME: string;
306
+ static TYPE_QNAME: string;
307
307
  value: string;
308
308
  type: string;
309
309
  }
@@ -321,17 +321,17 @@ export declare class token_coin_swap extends aptos.AptosBaseProcessor {
321
321
  }
322
322
  export declare namespace token_coin_swap {
323
323
  class TokenCoinSwap<T0> {
324
- static TYPE_NAME: string;
324
+ static TYPE_QNAME: string;
325
325
  token_amount: bigint;
326
326
  min_price_per_token: bigint;
327
327
  }
328
328
  class TokenEscrow {
329
- static TYPE_NAME: string;
329
+ static TYPE_QNAME: string;
330
330
  token: token.Token;
331
331
  locked_until_secs: bigint;
332
332
  }
333
333
  class TokenListingEvent {
334
- static TYPE_NAME: string;
334
+ static TYPE_QNAME: string;
335
335
  token_id: token.TokenId;
336
336
  amount: bigint;
337
337
  min_price: bigint;
@@ -343,17 +343,17 @@ export declare namespace token_coin_swap {
343
343
  type_arguments: [];
344
344
  }
345
345
  class TokenListings<T0> {
346
- static TYPE_NAME: string;
346
+ static TYPE_QNAME: string;
347
347
  listings: table.Table<token.TokenId, token_coin_swap.TokenCoinSwap<T0>>;
348
348
  listing_events: event.EventHandle<token_coin_swap.TokenListingEvent>;
349
349
  swap_events: event.EventHandle<token_coin_swap.TokenSwapEvent>;
350
350
  }
351
351
  class TokenStoreEscrow {
352
- static TYPE_NAME: string;
352
+ static TYPE_QNAME: string;
353
353
  token_escrows: table.Table<token.TokenId, token_coin_swap.TokenEscrow>;
354
354
  }
355
355
  class TokenSwapEvent {
356
- static TYPE_NAME: string;
356
+ static TYPE_QNAME: string;
357
357
  token_id: token.TokenId;
358
358
  token_buyer: Address;
359
359
  token_amount: bigint;
@@ -393,14 +393,14 @@ export declare class token_transfers extends aptos.AptosBaseProcessor {
393
393
  }
394
394
  export declare namespace token_transfers {
395
395
  class PendingClaims {
396
- static TYPE_NAME: string;
396
+ static TYPE_QNAME: string;
397
397
  pending_claims: table.Table<token_transfers.TokenOfferId, token.Token>;
398
398
  offer_events: event.EventHandle<token_transfers.TokenOfferEvent>;
399
399
  cancel_offer_events: event.EventHandle<token_transfers.TokenCancelOfferEvent>;
400
400
  claim_events: event.EventHandle<token_transfers.TokenClaimEvent>;
401
401
  }
402
402
  class TokenCancelOfferEvent {
403
- static TYPE_NAME: string;
403
+ static TYPE_QNAME: string;
404
404
  to_address: Address;
405
405
  token_id: token.TokenId;
406
406
  amount: bigint;
@@ -410,7 +410,7 @@ export declare namespace token_transfers {
410
410
  type_arguments: [];
411
411
  }
412
412
  class TokenClaimEvent {
413
- static TYPE_NAME: string;
413
+ static TYPE_QNAME: string;
414
414
  to_address: Address;
415
415
  token_id: token.TokenId;
416
416
  amount: bigint;
@@ -420,7 +420,7 @@ export declare namespace token_transfers {
420
420
  type_arguments: [];
421
421
  }
422
422
  class TokenOfferEvent {
423
- static TYPE_NAME: string;
423
+ static TYPE_QNAME: string;
424
424
  to_address: Address;
425
425
  token_id: token.TokenId;
426
426
  amount: bigint;
@@ -430,7 +430,7 @@ export declare namespace token_transfers {
430
430
  type_arguments: [];
431
431
  }
432
432
  class TokenOfferId {
433
- static TYPE_NAME: string;
433
+ static TYPE_QNAME: string;
434
434
  to_addr: Address;
435
435
  token_id: token.TokenId;
436
436
  }
@@ -130,13 +130,13 @@ class token extends sdk_1.aptos.AptosBaseProcessor {
130
130
  exports.token = token;
131
131
  (function (token) {
132
132
  class BurnTokenEvent {
133
- static TYPE_NAME = "0x3::token::BurnTokenEvent";
133
+ static TYPE_QNAME = "0x3::token::BurnTokenEvent";
134
134
  id;
135
135
  amount;
136
136
  }
137
137
  token.BurnTokenEvent = BurnTokenEvent;
138
138
  class CollectionData {
139
- static TYPE_NAME = "0x3::token::CollectionData";
139
+ static TYPE_QNAME = "0x3::token::CollectionData";
140
140
  description;
141
141
  name;
142
142
  uri;
@@ -146,14 +146,14 @@ exports.token = token;
146
146
  }
147
147
  token.CollectionData = CollectionData;
148
148
  class CollectionMutabilityConfig {
149
- static TYPE_NAME = "0x3::token::CollectionMutabilityConfig";
149
+ static TYPE_QNAME = "0x3::token::CollectionMutabilityConfig";
150
150
  description;
151
151
  uri;
152
152
  maximum;
153
153
  }
154
154
  token.CollectionMutabilityConfig = CollectionMutabilityConfig;
155
155
  class Collections {
156
- static TYPE_NAME = "0x3::token::Collections";
156
+ static TYPE_QNAME = "0x3::token::Collections";
157
157
  collection_data;
158
158
  token_data;
159
159
  create_collection_events;
@@ -162,7 +162,7 @@ exports.token = token;
162
162
  }
163
163
  token.Collections = Collections;
164
164
  class CreateCollectionEvent {
165
- static TYPE_NAME = "0x3::token::CreateCollectionEvent";
165
+ static TYPE_QNAME = "0x3::token::CreateCollectionEvent";
166
166
  creator;
167
167
  collection_name;
168
168
  uri;
@@ -171,7 +171,7 @@ exports.token = token;
171
171
  }
172
172
  token.CreateCollectionEvent = CreateCollectionEvent;
173
173
  class CreateTokenDataEvent {
174
- static TYPE_NAME = "0x3::token::CreateTokenDataEvent";
174
+ static TYPE_QNAME = "0x3::token::CreateTokenDataEvent";
175
175
  id;
176
176
  description;
177
177
  maximum;
@@ -187,19 +187,19 @@ exports.token = token;
187
187
  }
188
188
  token.CreateTokenDataEvent = CreateTokenDataEvent;
189
189
  class DepositEvent {
190
- static TYPE_NAME = "0x3::token::DepositEvent";
190
+ static TYPE_QNAME = "0x3::token::DepositEvent";
191
191
  id;
192
192
  amount;
193
193
  }
194
194
  token.DepositEvent = DepositEvent;
195
195
  class MintTokenEvent {
196
- static TYPE_NAME = "0x3::token::MintTokenEvent";
196
+ static TYPE_QNAME = "0x3::token::MintTokenEvent";
197
197
  id;
198
198
  amount;
199
199
  }
200
200
  token.MintTokenEvent = MintTokenEvent;
201
201
  class MutateTokenPropertyMapEvent {
202
- static TYPE_NAME = "0x3::token::MutateTokenPropertyMapEvent";
202
+ static TYPE_QNAME = "0x3::token::MutateTokenPropertyMapEvent";
203
203
  old_id;
204
204
  new_id;
205
205
  keys;
@@ -208,21 +208,21 @@ exports.token = token;
208
208
  }
209
209
  token.MutateTokenPropertyMapEvent = MutateTokenPropertyMapEvent;
210
210
  class Royalty {
211
- static TYPE_NAME = "0x3::token::Royalty";
211
+ static TYPE_QNAME = "0x3::token::Royalty";
212
212
  royalty_points_numerator;
213
213
  royalty_points_denominator;
214
214
  payee_address;
215
215
  }
216
216
  token.Royalty = Royalty;
217
217
  class Token {
218
- static TYPE_NAME = "0x3::token::Token";
218
+ static TYPE_QNAME = "0x3::token::Token";
219
219
  id;
220
220
  amount;
221
221
  token_properties;
222
222
  }
223
223
  token.Token = Token;
224
224
  class TokenData {
225
- static TYPE_NAME = "0x3::token::TokenData";
225
+ static TYPE_QNAME = "0x3::token::TokenData";
226
226
  maximum;
227
227
  largest_property_version;
228
228
  supply;
@@ -235,20 +235,20 @@ exports.token = token;
235
235
  }
236
236
  token.TokenData = TokenData;
237
237
  class TokenDataId {
238
- static TYPE_NAME = "0x3::token::TokenDataId";
238
+ static TYPE_QNAME = "0x3::token::TokenDataId";
239
239
  creator;
240
240
  collection;
241
241
  name;
242
242
  }
243
243
  token.TokenDataId = TokenDataId;
244
244
  class TokenId {
245
- static TYPE_NAME = "0x3::token::TokenId";
245
+ static TYPE_QNAME = "0x3::token::TokenId";
246
246
  token_data_id;
247
247
  property_version;
248
248
  }
249
249
  token.TokenId = TokenId;
250
250
  class TokenMutabilityConfig {
251
- static TYPE_NAME = "0x3::token::TokenMutabilityConfig";
251
+ static TYPE_QNAME = "0x3::token::TokenMutabilityConfig";
252
252
  maximum;
253
253
  uri;
254
254
  royalty;
@@ -257,7 +257,7 @@ exports.token = token;
257
257
  }
258
258
  token.TokenMutabilityConfig = TokenMutabilityConfig;
259
259
  class TokenStore {
260
- static TYPE_NAME = "0x3::token::TokenStore";
260
+ static TYPE_QNAME = "0x3::token::TokenStore";
261
261
  tokens;
262
262
  direct_transfer;
263
263
  deposit_events;
@@ -267,7 +267,7 @@ exports.token = token;
267
267
  }
268
268
  token.TokenStore = TokenStore;
269
269
  class WithdrawCapability {
270
- static TYPE_NAME = "0x3::token::WithdrawCapability";
270
+ static TYPE_QNAME = "0x3::token::WithdrawCapability";
271
271
  token_owner;
272
272
  token_id;
273
273
  amount;
@@ -275,7 +275,7 @@ exports.token = token;
275
275
  }
276
276
  token.WithdrawCapability = WithdrawCapability;
277
277
  class WithdrawEvent {
278
- static TYPE_NAME = "0x3::token::WithdrawEvent";
278
+ static TYPE_QNAME = "0x3::token::WithdrawEvent";
279
279
  id;
280
280
  amount;
281
281
  }
@@ -289,12 +289,12 @@ exports.token = token;
289
289
  var property_map;
290
290
  (function (property_map) {
291
291
  class PropertyMap {
292
- static TYPE_NAME = "0x3::property_map::PropertyMap";
292
+ static TYPE_QNAME = "0x3::property_map::PropertyMap";
293
293
  map;
294
294
  }
295
295
  property_map.PropertyMap = PropertyMap;
296
296
  class PropertyValue {
297
- static TYPE_NAME = "0x3::property_map::PropertyValue";
297
+ static TYPE_QNAME = "0x3::property_map::PropertyValue";
298
298
  value;
299
299
  type;
300
300
  }
@@ -345,19 +345,19 @@ class token_coin_swap extends sdk_1.aptos.AptosBaseProcessor {
345
345
  exports.token_coin_swap = token_coin_swap;
346
346
  (function (token_coin_swap) {
347
347
  class TokenCoinSwap {
348
- static TYPE_NAME = "0x3::token_coin_swap::TokenCoinSwap";
348
+ static TYPE_QNAME = "0x3::token_coin_swap::TokenCoinSwap";
349
349
  token_amount;
350
350
  min_price_per_token;
351
351
  }
352
352
  token_coin_swap.TokenCoinSwap = TokenCoinSwap;
353
353
  class TokenEscrow {
354
- static TYPE_NAME = "0x3::token_coin_swap::TokenEscrow";
354
+ static TYPE_QNAME = "0x3::token_coin_swap::TokenEscrow";
355
355
  token;
356
356
  locked_until_secs;
357
357
  }
358
358
  token_coin_swap.TokenEscrow = TokenEscrow;
359
359
  class TokenListingEvent {
360
- static TYPE_NAME = "0x3::token_coin_swap::TokenListingEvent";
360
+ static TYPE_QNAME = "0x3::token_coin_swap::TokenListingEvent";
361
361
  token_id;
362
362
  amount;
363
363
  min_price;
@@ -366,19 +366,19 @@ exports.token_coin_swap = token_coin_swap;
366
366
  }
367
367
  token_coin_swap.TokenListingEvent = TokenListingEvent;
368
368
  class TokenListings {
369
- static TYPE_NAME = "0x3::token_coin_swap::TokenListings";
369
+ static TYPE_QNAME = "0x3::token_coin_swap::TokenListings";
370
370
  listings;
371
371
  listing_events;
372
372
  swap_events;
373
373
  }
374
374
  token_coin_swap.TokenListings = TokenListings;
375
375
  class TokenStoreEscrow {
376
- static TYPE_NAME = "0x3::token_coin_swap::TokenStoreEscrow";
376
+ static TYPE_QNAME = "0x3::token_coin_swap::TokenStoreEscrow";
377
377
  token_escrows;
378
378
  }
379
379
  token_coin_swap.TokenStoreEscrow = TokenStoreEscrow;
380
380
  class TokenSwapEvent {
381
- static TYPE_NAME = "0x3::token_coin_swap::TokenSwapEvent";
381
+ static TYPE_QNAME = "0x3::token_coin_swap::TokenSwapEvent";
382
382
  token_id;
383
383
  token_buyer;
384
384
  token_amount;
@@ -452,7 +452,7 @@ class token_transfers extends sdk_1.aptos.AptosBaseProcessor {
452
452
  exports.token_transfers = token_transfers;
453
453
  (function (token_transfers) {
454
454
  class PendingClaims {
455
- static TYPE_NAME = "0x3::token_transfers::PendingClaims";
455
+ static TYPE_QNAME = "0x3::token_transfers::PendingClaims";
456
456
  pending_claims;
457
457
  offer_events;
458
458
  cancel_offer_events;
@@ -460,28 +460,28 @@ exports.token_transfers = token_transfers;
460
460
  }
461
461
  token_transfers.PendingClaims = PendingClaims;
462
462
  class TokenCancelOfferEvent {
463
- static TYPE_NAME = "0x3::token_transfers::TokenCancelOfferEvent";
463
+ static TYPE_QNAME = "0x3::token_transfers::TokenCancelOfferEvent";
464
464
  to_address;
465
465
  token_id;
466
466
  amount;
467
467
  }
468
468
  token_transfers.TokenCancelOfferEvent = TokenCancelOfferEvent;
469
469
  class TokenClaimEvent {
470
- static TYPE_NAME = "0x3::token_transfers::TokenClaimEvent";
470
+ static TYPE_QNAME = "0x3::token_transfers::TokenClaimEvent";
471
471
  to_address;
472
472
  token_id;
473
473
  amount;
474
474
  }
475
475
  token_transfers.TokenClaimEvent = TokenClaimEvent;
476
476
  class TokenOfferEvent {
477
- static TYPE_NAME = "0x3::token_transfers::TokenOfferEvent";
477
+ static TYPE_QNAME = "0x3::token_transfers::TokenOfferEvent";
478
478
  to_address;
479
479
  token_id;
480
480
  amount;
481
481
  }
482
482
  token_transfers.TokenOfferEvent = TokenOfferEvent;
483
483
  class TokenOfferId {
484
- static TYPE_NAME = "0x3::token_transfers::TokenOfferId";
484
+ static TYPE_QNAME = "0x3::token_transfers::TokenOfferId";
485
485
  to_addr;
486
486
  token_id;
487
487
  }