@sign-global/tokentable 0.4.3-beta.1 → 0.4.3-beta.2

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.
Files changed (27) hide show
  1. package/dist/cjs/airdrop/contracts/solana/AirdropSignatureClient.d.ts +3 -2
  2. package/dist/cjs/airdrop/contracts/solana/AirdropSignatureClient.js +10 -9
  3. package/dist/cjs/airdrop/contracts/solana/AirdropSignatureClient.js.map +1 -1
  4. package/dist/cjs/airdrop/contracts/solana/SignatureAirdropService.d.ts +1 -0
  5. package/dist/cjs/airdrop/contracts/solana/SignatureAirdropService.js.map +1 -1
  6. package/dist/cjs/airdrop/contracts/solana/eddsa_token_with_fees_distributor_solana.d.ts +1668 -0
  7. package/dist/cjs/airdrop/contracts/solana/eddsa_token_with_fees_distributor_solana.js +3 -0
  8. package/dist/cjs/airdrop/contracts/solana/eddsa_token_with_fees_distributor_solana.js.map +1 -0
  9. package/dist/cjs/airdrop/contracts/solana/{fungible_token_distributor_solana.json → eddsa_token_with_fees_distributor_solana.json} +127 -38
  10. package/dist/cjs/airdrop/contracts/solana/fee_collector.d.ts +149 -0
  11. package/dist/cjs/airdrop/contracts/solana/fee_collector.json +149 -0
  12. package/dist/cjs/airdrop/types/index.d.ts +2 -0
  13. package/dist/cjs/airdrop/types/index.js.map +1 -1
  14. package/dist/esm/airdrop/contracts/solana/AirdropSignatureClient.d.ts +3 -2
  15. package/dist/esm/airdrop/contracts/solana/AirdropSignatureClient.js +9 -8
  16. package/dist/esm/airdrop/contracts/solana/AirdropSignatureClient.js.map +1 -1
  17. package/dist/esm/airdrop/contracts/solana/SignatureAirdropService.d.ts +1 -0
  18. package/dist/esm/airdrop/contracts/solana/SignatureAirdropService.js.map +1 -1
  19. package/dist/esm/airdrop/contracts/solana/eddsa_token_with_fees_distributor_solana.d.ts +1668 -0
  20. package/dist/esm/airdrop/contracts/solana/eddsa_token_with_fees_distributor_solana.js +2 -0
  21. package/dist/esm/airdrop/contracts/solana/eddsa_token_with_fees_distributor_solana.js.map +1 -0
  22. package/dist/esm/airdrop/contracts/solana/{fungible_token_distributor_solana.json → eddsa_token_with_fees_distributor_solana.json} +127 -38
  23. package/dist/esm/airdrop/contracts/solana/fee_collector.d.ts +149 -0
  24. package/dist/esm/airdrop/contracts/solana/fee_collector.json +149 -0
  25. package/dist/esm/airdrop/types/index.d.ts +2 -0
  26. package/dist/esm/airdrop/types/index.js.map +1 -1
  27. package/package.json +1 -1
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=eddsa_token_with_fees_distributor_solana.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"eddsa_token_with_fees_distributor_solana.js","sourceRoot":"","sources":["../../../../../src/airdrop/contracts/solana/eddsa_token_with_fees_distributor_solana.ts"],"names":[],"mappings":""}
@@ -1,7 +1,7 @@
1
1
  {
2
- "address": "2fLgxHG1eCxQmfUMn8LYffxE7EQKWzeJhDpcAsyb1VKA",
2
+ "address": "CwjcZKhYZ69bEL7jkotHtmAqhNBNmxyZCLUdVwsK3fWV",
3
3
  "metadata": {
4
- "name": "fungible_token_distributor_solana",
4
+ "name": "eddsa_token_with_fees_distributor_solana",
5
5
  "version": "0.1.0",
6
6
  "spec": "0.1.0",
7
7
  "description": "Created with Anchor"
@@ -71,13 +71,16 @@
71
71
  }
72
72
  },
73
73
  {
74
- "name": "authority_ata",
74
+ "name": "recipient"
75
+ },
76
+ {
77
+ "name": "recipient_ata",
75
78
  "writable": true,
76
79
  "pda": {
77
80
  "seeds": [
78
81
  {
79
82
  "kind": "account",
80
- "path": "authority"
83
+ "path": "recipient"
81
84
  },
82
85
  {
83
86
  "kind": "account",
@@ -172,9 +175,7 @@
172
175
  "optional": true
173
176
  },
174
177
  {
175
- "name": "fee_collector",
176
- "optional": true,
177
- "address": "FCAaMMWdkNJnbFvz71rkXtsHPL1voheMHXdKucT3EUd8"
178
+ "name": "fee_collector"
178
179
  },
179
180
  {
180
181
  "name": "fee_token_mint",
@@ -215,6 +216,10 @@
215
216
  "name": "project_id",
216
217
  "type": "string"
217
218
  },
219
+ {
220
+ "name": "recipient",
221
+ "type": "pubkey"
222
+ },
218
223
  {
219
224
  "name": "user_claim_id",
220
225
  "type": {
@@ -237,7 +242,7 @@
237
242
  "name": "user_claim_data",
238
243
  "type": {
239
244
  "defined": {
240
- "name": "TokenTableFungibleDistributorData"
245
+ "name": "EDDSADistributorData"
241
246
  }
242
247
  }
243
248
  },
@@ -279,6 +284,9 @@
279
284
  ]
280
285
  }
281
286
  },
287
+ {
288
+ "name": "fee_collector"
289
+ },
282
290
  {
283
291
  "name": "authority",
284
292
  "writable": true,
@@ -289,7 +297,12 @@
289
297
  "address": "11111111111111111111111111111111"
290
298
  }
291
299
  ],
292
- "args": []
300
+ "args": [
301
+ {
302
+ "name": "default_fee_collector",
303
+ "type": "pubkey"
304
+ }
305
+ ]
293
306
  },
294
307
  {
295
308
  "name": "deposit",
@@ -399,6 +412,10 @@
399
412
  ],
400
413
  "accounts": [],
401
414
  "args": [
415
+ {
416
+ "name": "recipient",
417
+ "type": "pubkey"
418
+ },
402
419
  {
403
420
  "name": "user_claim_id",
404
421
  "type": {
@@ -412,7 +429,7 @@
412
429
  "name": "user_claim_data",
413
430
  "type": {
414
431
  "defined": {
415
- "name": "TokenTableFungibleDistributorData"
432
+ "name": "EDDSADistributorData"
416
433
  }
417
434
  }
418
435
  },
@@ -465,10 +482,28 @@
465
482
  ]
466
483
  }
467
484
  },
485
+ {
486
+ "name": "config",
487
+ "writable": true,
488
+ "pda": {
489
+ "seeds": [
490
+ {
491
+ "kind": "const",
492
+ "value": [
493
+ 99,
494
+ 111,
495
+ 110,
496
+ 102,
497
+ 105,
498
+ 103
499
+ ]
500
+ }
501
+ ]
502
+ }
503
+ },
468
504
  {
469
505
  "name": "fee_collector",
470
- "optional": true,
471
- "address": "FCAaMMWdkNJnbFvz71rkXtsHPL1voheMHXdKucT3EUd8"
506
+ "optional": true
472
507
  },
473
508
  {
474
509
  "name": "fee_collector_storage",
@@ -502,10 +537,6 @@
502
537
  "name": "owner",
503
538
  "type": "pubkey"
504
539
  },
505
- {
506
- "name": "fee_collector",
507
- "type": "pubkey"
508
- },
509
540
  {
510
541
  "name": "init_fee_account",
511
542
  "type": "bool"
@@ -626,6 +657,58 @@
626
657
  }
627
658
  ]
628
659
  },
660
+ {
661
+ "name": "set_default_fee_collector",
662
+ "discriminator": [
663
+ 250,
664
+ 25,
665
+ 136,
666
+ 29,
667
+ 77,
668
+ 231,
669
+ 26,
670
+ 141
671
+ ],
672
+ "accounts": [
673
+ {
674
+ "name": "config",
675
+ "writable": true,
676
+ "pda": {
677
+ "seeds": [
678
+ {
679
+ "kind": "const",
680
+ "value": [
681
+ 99,
682
+ 111,
683
+ 110,
684
+ 102,
685
+ 105,
686
+ 103
687
+ ]
688
+ }
689
+ ]
690
+ }
691
+ },
692
+ {
693
+ "name": "fee_collector"
694
+ },
695
+ {
696
+ "name": "authority",
697
+ "writable": true,
698
+ "signer": true
699
+ },
700
+ {
701
+ "name": "system_program",
702
+ "address": "11111111111111111111111111111111"
703
+ }
704
+ ],
705
+ "args": [
706
+ {
707
+ "name": "default_fee_collector",
708
+ "type": "pubkey"
709
+ }
710
+ ]
711
+ },
629
712
  {
630
713
  "name": "set_fee_collector",
631
714
  "discriminator": [
@@ -687,9 +770,7 @@
687
770
  }
688
771
  },
689
772
  {
690
- "name": "fee_collector",
691
- "optional": true,
692
- "address": "FCAaMMWdkNJnbFvz71rkXtsHPL1voheMHXdKucT3EUd8"
773
+ "name": "fee_collector"
693
774
  },
694
775
  {
695
776
  "name": "fee_collector_storage",
@@ -1368,8 +1449,8 @@
1368
1449
  },
1369
1450
  {
1370
1451
  "code": 6008,
1371
- "name": "NotDeployer",
1372
- "msg": "NotDeployer"
1452
+ "name": "NotProgramAdmin",
1453
+ "msg": "NotProgramAdmin"
1373
1454
  },
1374
1455
  {
1375
1456
  "code": 6009,
@@ -1479,7 +1560,7 @@
1479
1560
  "name": "data",
1480
1561
  "type": {
1481
1562
  "defined": {
1482
- "name": "TokenTableFungibleDistributorData"
1563
+ "name": "EDDSADistributorData"
1483
1564
  }
1484
1565
  }
1485
1566
  }
@@ -1498,6 +1579,10 @@
1498
1579
  {
1499
1580
  "name": "new_admin",
1500
1581
  "type": "pubkey"
1582
+ },
1583
+ {
1584
+ "name": "default_fee_collector",
1585
+ "type": "pubkey"
1501
1586
  }
1502
1587
  ]
1503
1588
  }
@@ -1510,49 +1595,53 @@
1510
1595
  }
1511
1596
  },
1512
1597
  {
1513
- "name": "FeeCollectorStorage",
1598
+ "name": "EDDSADistributorData",
1514
1599
  "type": {
1515
1600
  "kind": "struct",
1516
1601
  "fields": [
1517
1602
  {
1518
- "name": "owner",
1519
- "type": "pubkey"
1603
+ "name": "claimable_timestamp",
1604
+ "type": "u64"
1520
1605
  },
1521
1606
  {
1522
- "name": "new_owner",
1523
- "type": "pubkey"
1607
+ "name": "claimable_amount",
1608
+ "type": "u64"
1524
1609
  },
1525
1610
  {
1526
- "name": "default_fees_bips",
1611
+ "name": "fees",
1527
1612
  "type": "u64"
1528
1613
  }
1529
1614
  ]
1530
1615
  }
1531
1616
  },
1532
1617
  {
1533
- "name": "Initialized",
1618
+ "name": "FeeCollectorStorage",
1534
1619
  "type": {
1535
1620
  "kind": "struct",
1536
1621
  "fields": [
1537
1622
  {
1538
- "name": "project_id",
1539
- "type": "string"
1623
+ "name": "owner",
1624
+ "type": "pubkey"
1625
+ },
1626
+ {
1627
+ "name": "new_owner",
1628
+ "type": "pubkey"
1629
+ },
1630
+ {
1631
+ "name": "default_fees_bips",
1632
+ "type": "u64"
1540
1633
  }
1541
1634
  ]
1542
1635
  }
1543
1636
  },
1544
1637
  {
1545
- "name": "TokenTableFungibleDistributorData",
1638
+ "name": "Initialized",
1546
1639
  "type": {
1547
1640
  "kind": "struct",
1548
1641
  "fields": [
1549
1642
  {
1550
- "name": "claimable_timestamp",
1551
- "type": "u64"
1552
- },
1553
- {
1554
- "name": "claimable_amount",
1555
- "type": "u64"
1643
+ "name": "project_id",
1644
+ "type": "string"
1556
1645
  }
1557
1646
  ]
1558
1647
  }
@@ -193,6 +193,155 @@ export type FeeCollector = {
193
193
  ];
194
194
  "returns": "u64";
195
195
  },
196
+ {
197
+ "name": "collectFeeAmount";
198
+ "discriminator": [
199
+ 119,
200
+ 58,
201
+ 206,
202
+ 40,
203
+ 52,
204
+ 201,
205
+ 202,
206
+ 81
207
+ ];
208
+ "accounts": [
209
+ {
210
+ "name": "storage";
211
+ "writable": true;
212
+ "pda": {
213
+ "seeds": [
214
+ {
215
+ "kind": "const";
216
+ "value": [
217
+ 115,
218
+ 116,
219
+ 111,
220
+ 114,
221
+ 97,
222
+ 103,
223
+ 101
224
+ ];
225
+ }
226
+ ];
227
+ };
228
+ },
229
+ {
230
+ "name": "feeTokenMint";
231
+ "writable": true;
232
+ "optional": true;
233
+ },
234
+ {
235
+ "name": "vault";
236
+ "writable": true;
237
+ "optional": true;
238
+ "pda": {
239
+ "seeds": [
240
+ {
241
+ "kind": "const";
242
+ "value": [
243
+ 118,
244
+ 97,
245
+ 117,
246
+ 108,
247
+ 116
248
+ ];
249
+ },
250
+ {
251
+ "kind": "arg";
252
+ "path": "feeToken";
253
+ }
254
+ ];
255
+ };
256
+ },
257
+ {
258
+ "name": "sourceAta";
259
+ "writable": true;
260
+ "optional": true;
261
+ "pda": {
262
+ "seeds": [
263
+ {
264
+ "kind": "account";
265
+ "path": "authority";
266
+ },
267
+ {
268
+ "kind": "account";
269
+ "path": "tokenProgram";
270
+ },
271
+ {
272
+ "kind": "arg";
273
+ "path": "feeToken";
274
+ }
275
+ ];
276
+ "program": {
277
+ "kind": "const";
278
+ "value": [
279
+ 140,
280
+ 151,
281
+ 37,
282
+ 143,
283
+ 78,
284
+ 36,
285
+ 137,
286
+ 241,
287
+ 187,
288
+ 61,
289
+ 16,
290
+ 41,
291
+ 20,
292
+ 142,
293
+ 13,
294
+ 131,
295
+ 11,
296
+ 90,
297
+ 19,
298
+ 153,
299
+ 218,
300
+ 255,
301
+ 16,
302
+ 132,
303
+ 4,
304
+ 142,
305
+ 123,
306
+ 216,
307
+ 219,
308
+ 233,
309
+ 248,
310
+ 89
311
+ ];
312
+ };
313
+ };
314
+ },
315
+ {
316
+ "name": "authority";
317
+ "writable": true;
318
+ "signer": true;
319
+ },
320
+ {
321
+ "name": "systemProgram";
322
+ "address": "11111111111111111111111111111111";
323
+ },
324
+ {
325
+ "name": "tokenProgram";
326
+ "optional": true;
327
+ },
328
+ {
329
+ "name": "associatedTokenProgram";
330
+ "address": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL";
331
+ }
332
+ ];
333
+ "args": [
334
+ {
335
+ "name": "feeToken";
336
+ "type": "pubkey";
337
+ },
338
+ {
339
+ "name": "feeAmount";
340
+ "type": "u64";
341
+ }
342
+ ];
343
+ "returns": "u64";
344
+ },
196
345
  {
197
346
  "name": "getFee";
198
347
  "discriminator": [
@@ -187,6 +187,155 @@
187
187
  ],
188
188
  "returns": "u64"
189
189
  },
190
+ {
191
+ "name": "collect_fee_amount",
192
+ "discriminator": [
193
+ 119,
194
+ 58,
195
+ 206,
196
+ 40,
197
+ 52,
198
+ 201,
199
+ 202,
200
+ 81
201
+ ],
202
+ "accounts": [
203
+ {
204
+ "name": "storage",
205
+ "writable": true,
206
+ "pda": {
207
+ "seeds": [
208
+ {
209
+ "kind": "const",
210
+ "value": [
211
+ 115,
212
+ 116,
213
+ 111,
214
+ 114,
215
+ 97,
216
+ 103,
217
+ 101
218
+ ]
219
+ }
220
+ ]
221
+ }
222
+ },
223
+ {
224
+ "name": "fee_token_mint",
225
+ "writable": true,
226
+ "optional": true
227
+ },
228
+ {
229
+ "name": "vault",
230
+ "writable": true,
231
+ "optional": true,
232
+ "pda": {
233
+ "seeds": [
234
+ {
235
+ "kind": "const",
236
+ "value": [
237
+ 118,
238
+ 97,
239
+ 117,
240
+ 108,
241
+ 116
242
+ ]
243
+ },
244
+ {
245
+ "kind": "arg",
246
+ "path": "_fee_token"
247
+ }
248
+ ]
249
+ }
250
+ },
251
+ {
252
+ "name": "source_ata",
253
+ "writable": true,
254
+ "optional": true,
255
+ "pda": {
256
+ "seeds": [
257
+ {
258
+ "kind": "account",
259
+ "path": "authority"
260
+ },
261
+ {
262
+ "kind": "account",
263
+ "path": "token_program"
264
+ },
265
+ {
266
+ "kind": "arg",
267
+ "path": "_fee_token"
268
+ }
269
+ ],
270
+ "program": {
271
+ "kind": "const",
272
+ "value": [
273
+ 140,
274
+ 151,
275
+ 37,
276
+ 143,
277
+ 78,
278
+ 36,
279
+ 137,
280
+ 241,
281
+ 187,
282
+ 61,
283
+ 16,
284
+ 41,
285
+ 20,
286
+ 142,
287
+ 13,
288
+ 131,
289
+ 11,
290
+ 90,
291
+ 19,
292
+ 153,
293
+ 218,
294
+ 255,
295
+ 16,
296
+ 132,
297
+ 4,
298
+ 142,
299
+ 123,
300
+ 216,
301
+ 219,
302
+ 233,
303
+ 248,
304
+ 89
305
+ ]
306
+ }
307
+ }
308
+ },
309
+ {
310
+ "name": "authority",
311
+ "writable": true,
312
+ "signer": true
313
+ },
314
+ {
315
+ "name": "system_program",
316
+ "address": "11111111111111111111111111111111"
317
+ },
318
+ {
319
+ "name": "token_program",
320
+ "optional": true
321
+ },
322
+ {
323
+ "name": "associated_token_program",
324
+ "address": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL"
325
+ }
326
+ ],
327
+ "args": [
328
+ {
329
+ "name": "fee_token",
330
+ "type": "pubkey"
331
+ },
332
+ {
333
+ "name": "fee_amount",
334
+ "type": "u64"
335
+ }
336
+ ],
337
+ "returns": "u64"
338
+ },
190
339
  {
191
340
  "name": "get_fee",
192
341
  "discriminator": [
@@ -119,6 +119,7 @@ export type IAirdropSignatureClaim = {
119
119
  signature?: string;
120
120
  claimed?: boolean;
121
121
  note: string;
122
+ fees: string;
122
123
  };
123
124
  export interface IAirdropSignatureIdentity {
124
125
  type: AirdropSigIdentityTypeEnum;
@@ -137,6 +138,7 @@ export interface IClaimSignature {
137
138
  data: string;
138
139
  signature: string;
139
140
  hash: string;
141
+ fees: string;
140
142
  }
141
143
  export declare enum TonAirdropVersionEnum {
142
144
  V1 = "1.0.0",
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/airdrop/types/index.ts"],"names":[],"mappings":";;;AAgBA,IAAY,SAIX;AAJD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,8BAAiB,CAAA;AACnB,CAAC,EAJW,SAAS,yBAAT,SAAS,QAIpB;AAsDD,IAAY,0BAMX;AAND,WAAY,0BAA0B;IACpC,mDAAqB,CAAA;IACrB,4DAA8B,CAAA;IAC9B,sDAAwB,CAAA;IACxB,sDAAwB,CAAA;IACxB,uDAAyB,CAAA;AAC3B,CAAC,EANW,0BAA0B,0CAA1B,0BAA0B,QAMrC;AAUD,IAAY,UAIX;AAJD,WAAY,UAAU;IACpB,6BAAe,CAAA;IACf,qCAAuB,CAAA;IACvB,4BAAc,CAAA;AAChB,CAAC,EAJW,UAAU,0BAAV,UAAU,QAIrB;AAkED,IAAY,qBAKX;AALD,WAAY,qBAAqB;IAC/B,qCAAY,CAAA;IACZ,qCAAY,CAAA;IACZ,0CAAiB,CAAA;IACjB,4CAAmB,CAAA;AACrB,CAAC,EALW,qBAAqB,qCAArB,qBAAqB,QAKhC;AAED,IAAY,qBAIX;AAJD,WAAY,qBAAqB;IAC/B,qCAAY,CAAA;IACZ,qCAAY,CAAA;IACZ,qCAAY,CAAA,CAAC,yBAAyB;AACxC,CAAC,EAJW,qBAAqB,qCAArB,qBAAqB,QAIhC;AA8BD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,6BAA6B;IAC7B,kEAAqD,CAAA;AACvD,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/airdrop/types/index.ts"],"names":[],"mappings":";;;AAgBA,IAAY,SAIX;AAJD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,8BAAiB,CAAA;AACnB,CAAC,EAJW,SAAS,yBAAT,SAAS,QAIpB;AAsDD,IAAY,0BAMX;AAND,WAAY,0BAA0B;IACpC,mDAAqB,CAAA;IACrB,4DAA8B,CAAA;IAC9B,sDAAwB,CAAA;IACxB,sDAAwB,CAAA;IACxB,uDAAyB,CAAA;AAC3B,CAAC,EANW,0BAA0B,0CAA1B,0BAA0B,QAMrC;AAUD,IAAY,UAIX;AAJD,WAAY,UAAU;IACpB,6BAAe,CAAA;IACf,qCAAuB,CAAA;IACvB,4BAAc,CAAA;AAChB,CAAC,EAJW,UAAU,0BAAV,UAAU,QAIrB;AAoED,IAAY,qBAKX;AALD,WAAY,qBAAqB;IAC/B,qCAAY,CAAA;IACZ,qCAAY,CAAA;IACZ,0CAAiB,CAAA;IACjB,4CAAmB,CAAA;AACrB,CAAC,EALW,qBAAqB,qCAArB,qBAAqB,QAKhC;AAED,IAAY,qBAIX;AAJD,WAAY,qBAAqB;IAC/B,qCAAY,CAAA;IACZ,qCAAY,CAAA;IACZ,qCAAY,CAAA,CAAC,yBAAyB;AACxC,CAAC,EAJW,qBAAqB,qCAArB,qBAAqB,QAIhC;AA8BD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,6BAA6B;IAC7B,kEAAqD,CAAA;AACvD,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB"}
@@ -1,8 +1,8 @@
1
1
  import { PublicKey } from '@solana/web3.js';
2
2
  import { SolanaContractClientBase, SolanaContractInfo } from './SolanaContractClient';
3
- import { FungibleTokenDistributorSolana } from './fungible_token_distributor_solana';
3
+ import { EddsaTokenWithFeesDistributorSolana } from './eddsa_token_with_fees_distributor_solana';
4
4
  import { FeeCollectorClient } from './FeeCollectorClient';
5
- export declare class AirdropSignatureClient extends SolanaContractClientBase<FungibleTokenDistributorSolana> {
5
+ export declare class AirdropSignatureClient extends SolanaContractClientBase<EddsaTokenWithFeesDistributorSolana> {
6
6
  projectId: string;
7
7
  constructor(options: SolanaContractInfo);
8
8
  getVersionPDA(): Promise<PublicKey>;
@@ -40,6 +40,7 @@ export declare class AirdropSignatureClient extends SolanaContractClientBase<Fun
40
40
  extraData?: string;
41
41
  unlockingAt: number;
42
42
  value: string;
43
+ fees: string;
43
44
  hash: string;
44
45
  }[]): Promise<string>;
45
46
  }