@lukso/lsp8-contracts 0.17.3 → 0.18.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/README.md +69 -24
  2. package/artifacts/IAccessControlExtended.json +1 -1
  3. package/artifacts/ILSP8CappedBalance.json +1 -1
  4. package/artifacts/ILSP8CappedSupply.json +1 -1
  5. package/artifacts/ILSP8IdentifiableDigitalAsset.json +1 -1
  6. package/artifacts/ILSP8Mintable.json +1 -1
  7. package/artifacts/ILSP8NonTransferable.json +8 -2
  8. package/artifacts/ILSP8Revokable.json +38 -1
  9. package/artifacts/LSP8Burnable.json +1 -1
  10. package/artifacts/LSP8BurnableInitAbstract.json +1 -1
  11. package/artifacts/LSP8CappedBalanceAbstract.json +1 -1
  12. package/artifacts/LSP8CappedBalanceInitAbstract.json +1 -1
  13. package/artifacts/LSP8CappedSupplyAbstract.json +1 -1
  14. package/artifacts/LSP8CappedSupplyInitAbstract.json +1 -1
  15. package/artifacts/LSP8CustomizableToken.json +64 -21
  16. package/artifacts/LSP8CustomizableTokenInit.json +59 -16
  17. package/artifacts/LSP8Enumerable.json +1 -1
  18. package/artifacts/LSP8EnumerableInitAbstract.json +1 -1
  19. package/artifacts/LSP8IdentifiableDigitalAsset.json +1 -1
  20. package/artifacts/LSP8IdentifiableDigitalAssetInitAbstract.json +1 -1
  21. package/artifacts/LSP8Mintable.json +1 -1
  22. package/artifacts/LSP8MintableAbstract.json +1 -1
  23. package/artifacts/LSP8MintableInit.json +1 -1
  24. package/artifacts/LSP8MintableInitAbstract.json +1 -1
  25. package/artifacts/LSP8NonTransferableAbstract.json +20 -14
  26. package/artifacts/LSP8NonTransferableInitAbstract.json +20 -14
  27. package/artifacts/LSP8RevokableAbstract.json +38 -1
  28. package/artifacts/LSP8RevokableInitAbstract.json +38 -1
  29. package/artifacts/LSP8Votes.json +1 -1
  30. package/artifacts/LSP8VotesInitAbstract.json +1 -1
  31. package/contracts/extensions/LSP8NonTransferable/ILSP8NonTransferable.sol +9 -3
  32. package/contracts/extensions/LSP8NonTransferable/LSP8NonTransferableAbstract.sol +17 -8
  33. package/contracts/extensions/LSP8NonTransferable/LSP8NonTransferableInitAbstract.sol +17 -8
  34. package/contracts/extensions/LSP8Revokable/ILSP8Revokable.sol +9 -0
  35. package/contracts/extensions/LSP8Revokable/LSP8RevokableAbstract.sol +8 -0
  36. package/contracts/extensions/LSP8Revokable/LSP8RevokableInitAbstract.sol +15 -1
  37. package/dist/abi.cjs +169 -29
  38. package/dist/abi.d.cts +216 -41
  39. package/dist/abi.d.mts +216 -41
  40. package/dist/abi.d.ts +216 -41
  41. package/dist/abi.mjs +169 -29
  42. package/package.json +1 -1
package/dist/abi.d.ts CHANGED
@@ -645,6 +645,11 @@ declare const ilsp8NonTransferableAbi: readonly [{
645
645
  readonly type: "event";
646
646
  readonly anonymous: false;
647
647
  readonly inputs: readonly [{
648
+ readonly name: "nonTransferabilityEnabled";
649
+ readonly internalType: "bool";
650
+ readonly type: "bool";
651
+ readonly indexed: true;
652
+ }, {
648
653
  readonly name: "start";
649
654
  readonly internalType: "uint256";
650
655
  readonly type: "uint256";
@@ -675,7 +680,7 @@ declare const ilsp8NonTransferableAbi: readonly [{
675
680
  }, {
676
681
  readonly type: "function";
677
682
  readonly inputs: readonly [];
678
- readonly name: "transferLockEnabled";
683
+ readonly name: "nonTransferabilityEnabled";
679
684
  readonly outputs: readonly [{
680
685
  readonly name: "";
681
686
  readonly internalType: "bool";
@@ -727,6 +732,36 @@ declare const ilsp8RevokableAbi: readonly [{
727
732
  readonly indexed: true;
728
733
  }];
729
734
  readonly name: "RevokableStatusChanged";
735
+ }, {
736
+ readonly type: "event";
737
+ readonly anonymous: false;
738
+ readonly inputs: readonly [{
739
+ readonly name: "revoker";
740
+ readonly internalType: "address";
741
+ readonly type: "address";
742
+ readonly indexed: true;
743
+ }, {
744
+ readonly name: "from";
745
+ readonly internalType: "address";
746
+ readonly type: "address";
747
+ readonly indexed: true;
748
+ }, {
749
+ readonly name: "to";
750
+ readonly internalType: "address";
751
+ readonly type: "address";
752
+ readonly indexed: true;
753
+ }, {
754
+ readonly name: "tokenId";
755
+ readonly internalType: "bytes32";
756
+ readonly type: "bytes32";
757
+ readonly indexed: false;
758
+ }, {
759
+ readonly name: "data";
760
+ readonly internalType: "bytes";
761
+ readonly type: "bytes";
762
+ readonly indexed: false;
763
+ }];
764
+ readonly name: "TokenRevoked";
730
765
  }, {
731
766
  readonly type: "function";
732
767
  readonly inputs: readonly [];
@@ -6139,6 +6174,36 @@ declare const lsp8CustomizableTokenAbi: readonly [{
6139
6174
  readonly indexed: false;
6140
6175
  }];
6141
6176
  readonly name: "TokenIdDataChanged";
6177
+ }, {
6178
+ readonly type: "event";
6179
+ readonly anonymous: false;
6180
+ readonly inputs: readonly [{
6181
+ readonly name: "revoker";
6182
+ readonly internalType: "address";
6183
+ readonly type: "address";
6184
+ readonly indexed: true;
6185
+ }, {
6186
+ readonly name: "from";
6187
+ readonly internalType: "address";
6188
+ readonly type: "address";
6189
+ readonly indexed: true;
6190
+ }, {
6191
+ readonly name: "to";
6192
+ readonly internalType: "address";
6193
+ readonly type: "address";
6194
+ readonly indexed: true;
6195
+ }, {
6196
+ readonly name: "tokenId";
6197
+ readonly internalType: "bytes32";
6198
+ readonly type: "bytes32";
6199
+ readonly indexed: false;
6200
+ }, {
6201
+ readonly name: "data";
6202
+ readonly internalType: "bytes";
6203
+ readonly type: "bytes";
6204
+ readonly indexed: false;
6205
+ }];
6206
+ readonly name: "TokenRevoked";
6142
6207
  }, {
6143
6208
  readonly type: "event";
6144
6209
  readonly anonymous: false;
@@ -6178,6 +6243,11 @@ declare const lsp8CustomizableTokenAbi: readonly [{
6178
6243
  readonly type: "event";
6179
6244
  readonly anonymous: false;
6180
6245
  readonly inputs: readonly [{
6246
+ readonly name: "nonTransferabilityEnabled";
6247
+ readonly internalType: "bool";
6248
+ readonly type: "bool";
6249
+ readonly indexed: true;
6250
+ }, {
6181
6251
  readonly name: "start";
6182
6252
  readonly internalType: "uint256";
6183
6253
  readonly type: "uint256";
@@ -6560,6 +6630,16 @@ declare const lsp8CustomizableTokenAbi: readonly [{
6560
6630
  readonly name: "mint";
6561
6631
  readonly outputs: readonly [];
6562
6632
  readonly stateMutability: "nonpayable";
6633
+ }, {
6634
+ readonly type: "function";
6635
+ readonly inputs: readonly [];
6636
+ readonly name: "nonTransferabilityEnabled";
6637
+ readonly outputs: readonly [{
6638
+ readonly name: "";
6639
+ readonly internalType: "bool";
6640
+ readonly type: "bool";
6641
+ }];
6642
+ readonly stateMutability: "view";
6563
6643
  }, {
6564
6644
  readonly type: "function";
6565
6645
  readonly inputs: readonly [];
@@ -6864,16 +6944,6 @@ declare const lsp8CustomizableTokenAbi: readonly [{
6864
6944
  readonly name: "transferBatch";
6865
6945
  readonly outputs: readonly [];
6866
6946
  readonly stateMutability: "nonpayable";
6867
- }, {
6868
- readonly type: "function";
6869
- readonly inputs: readonly [];
6870
- readonly name: "transferLockEnabled";
6871
- readonly outputs: readonly [{
6872
- readonly name: "";
6873
- readonly internalType: "bool";
6874
- readonly type: "bool";
6875
- }];
6876
- readonly stateMutability: "view";
6877
6947
  }, {
6878
6948
  readonly type: "function";
6879
6949
  readonly inputs: readonly [];
@@ -7393,6 +7463,36 @@ declare const lsp8CustomizableTokenInitAbi: readonly [{
7393
7463
  readonly indexed: false;
7394
7464
  }];
7395
7465
  readonly name: "TokenIdDataChanged";
7466
+ }, {
7467
+ readonly type: "event";
7468
+ readonly anonymous: false;
7469
+ readonly inputs: readonly [{
7470
+ readonly name: "revoker";
7471
+ readonly internalType: "address";
7472
+ readonly type: "address";
7473
+ readonly indexed: true;
7474
+ }, {
7475
+ readonly name: "from";
7476
+ readonly internalType: "address";
7477
+ readonly type: "address";
7478
+ readonly indexed: true;
7479
+ }, {
7480
+ readonly name: "to";
7481
+ readonly internalType: "address";
7482
+ readonly type: "address";
7483
+ readonly indexed: true;
7484
+ }, {
7485
+ readonly name: "tokenId";
7486
+ readonly internalType: "bytes32";
7487
+ readonly type: "bytes32";
7488
+ readonly indexed: false;
7489
+ }, {
7490
+ readonly name: "data";
7491
+ readonly internalType: "bytes";
7492
+ readonly type: "bytes";
7493
+ readonly indexed: false;
7494
+ }];
7495
+ readonly name: "TokenRevoked";
7396
7496
  }, {
7397
7497
  readonly type: "event";
7398
7498
  readonly anonymous: false;
@@ -7432,6 +7532,11 @@ declare const lsp8CustomizableTokenInitAbi: readonly [{
7432
7532
  readonly type: "event";
7433
7533
  readonly anonymous: false;
7434
7534
  readonly inputs: readonly [{
7535
+ readonly name: "nonTransferabilityEnabled";
7536
+ readonly internalType: "bool";
7537
+ readonly type: "bool";
7538
+ readonly indexed: true;
7539
+ }, {
7435
7540
  readonly name: "start";
7436
7541
  readonly internalType: "uint256";
7437
7542
  readonly type: "uint256";
@@ -7888,6 +7993,16 @@ declare const lsp8CustomizableTokenInitAbi: readonly [{
7888
7993
  readonly name: "mint";
7889
7994
  readonly outputs: readonly [];
7890
7995
  readonly stateMutability: "nonpayable";
7996
+ }, {
7997
+ readonly type: "function";
7998
+ readonly inputs: readonly [];
7999
+ readonly name: "nonTransferabilityEnabled";
8000
+ readonly outputs: readonly [{
8001
+ readonly name: "";
8002
+ readonly internalType: "bool";
8003
+ readonly type: "bool";
8004
+ }];
8005
+ readonly stateMutability: "view";
7891
8006
  }, {
7892
8007
  readonly type: "function";
7893
8008
  readonly inputs: readonly [];
@@ -8192,16 +8307,6 @@ declare const lsp8CustomizableTokenInitAbi: readonly [{
8192
8307
  readonly name: "transferBatch";
8193
8308
  readonly outputs: readonly [];
8194
8309
  readonly stateMutability: "nonpayable";
8195
- }, {
8196
- readonly type: "function";
8197
- readonly inputs: readonly [];
8198
- readonly name: "transferLockEnabled";
8199
- readonly outputs: readonly [{
8200
- readonly name: "";
8201
- readonly internalType: "bool";
8202
- readonly type: "bool";
8203
- }];
8204
- readonly stateMutability: "view";
8205
8310
  }, {
8206
8311
  readonly type: "function";
8207
8312
  readonly inputs: readonly [];
@@ -15672,6 +15777,11 @@ declare const lsp8NonTransferableAbstractAbi: readonly [{
15672
15777
  readonly type: "event";
15673
15778
  readonly anonymous: false;
15674
15779
  readonly inputs: readonly [{
15780
+ readonly name: "nonTransferabilityEnabled";
15781
+ readonly internalType: "bool";
15782
+ readonly type: "bool";
15783
+ readonly indexed: true;
15784
+ }, {
15675
15785
  readonly name: "start";
15676
15786
  readonly internalType: "uint256";
15677
15787
  readonly type: "uint256";
@@ -15956,6 +16066,16 @@ declare const lsp8NonTransferableAbstractAbi: readonly [{
15956
16066
  readonly name: "makeTransferable";
15957
16067
  readonly outputs: readonly [];
15958
16068
  readonly stateMutability: "nonpayable";
16069
+ }, {
16070
+ readonly type: "function";
16071
+ readonly inputs: readonly [];
16072
+ readonly name: "nonTransferabilityEnabled";
16073
+ readonly outputs: readonly [{
16074
+ readonly name: "";
16075
+ readonly internalType: "bool";
16076
+ readonly type: "bool";
16077
+ }];
16078
+ readonly stateMutability: "view";
15959
16079
  }, {
15960
16080
  readonly type: "function";
15961
16081
  readonly inputs: readonly [];
@@ -16218,16 +16338,6 @@ declare const lsp8NonTransferableAbstractAbi: readonly [{
16218
16338
  readonly name: "transferBatch";
16219
16339
  readonly outputs: readonly [];
16220
16340
  readonly stateMutability: "nonpayable";
16221
- }, {
16222
- readonly type: "function";
16223
- readonly inputs: readonly [];
16224
- readonly name: "transferLockEnabled";
16225
- readonly outputs: readonly [{
16226
- readonly name: "";
16227
- readonly internalType: "bool";
16228
- readonly type: "bool";
16229
- }];
16230
- readonly stateMutability: "view";
16231
16341
  }, {
16232
16342
  readonly type: "function";
16233
16343
  readonly inputs: readonly [];
@@ -16722,6 +16832,11 @@ declare const lsp8NonTransferableInitAbstractAbi: readonly [{
16722
16832
  readonly type: "event";
16723
16833
  readonly anonymous: false;
16724
16834
  readonly inputs: readonly [{
16835
+ readonly name: "nonTransferabilityEnabled";
16836
+ readonly internalType: "bool";
16837
+ readonly type: "bool";
16838
+ readonly indexed: true;
16839
+ }, {
16725
16840
  readonly name: "start";
16726
16841
  readonly internalType: "uint256";
16727
16842
  readonly type: "uint256";
@@ -17006,6 +17121,16 @@ declare const lsp8NonTransferableInitAbstractAbi: readonly [{
17006
17121
  readonly name: "makeTransferable";
17007
17122
  readonly outputs: readonly [];
17008
17123
  readonly stateMutability: "nonpayable";
17124
+ }, {
17125
+ readonly type: "function";
17126
+ readonly inputs: readonly [];
17127
+ readonly name: "nonTransferabilityEnabled";
17128
+ readonly outputs: readonly [{
17129
+ readonly name: "";
17130
+ readonly internalType: "bool";
17131
+ readonly type: "bool";
17132
+ }];
17133
+ readonly stateMutability: "view";
17009
17134
  }, {
17010
17135
  readonly type: "function";
17011
17136
  readonly inputs: readonly [];
@@ -17268,16 +17393,6 @@ declare const lsp8NonTransferableInitAbstractAbi: readonly [{
17268
17393
  readonly name: "transferBatch";
17269
17394
  readonly outputs: readonly [];
17270
17395
  readonly stateMutability: "nonpayable";
17271
- }, {
17272
- readonly type: "function";
17273
- readonly inputs: readonly [];
17274
- readonly name: "transferLockEnabled";
17275
- readonly outputs: readonly [{
17276
- readonly name: "";
17277
- readonly internalType: "bool";
17278
- readonly type: "bool";
17279
- }];
17280
- readonly stateMutability: "view";
17281
17396
  }, {
17282
17397
  readonly type: "function";
17283
17398
  readonly inputs: readonly [];
@@ -17725,6 +17840,36 @@ declare const lsp8RevokableAbstractAbi: readonly [{
17725
17840
  readonly indexed: false;
17726
17841
  }];
17727
17842
  readonly name: "TokenIdDataChanged";
17843
+ }, {
17844
+ readonly type: "event";
17845
+ readonly anonymous: false;
17846
+ readonly inputs: readonly [{
17847
+ readonly name: "revoker";
17848
+ readonly internalType: "address";
17849
+ readonly type: "address";
17850
+ readonly indexed: true;
17851
+ }, {
17852
+ readonly name: "from";
17853
+ readonly internalType: "address";
17854
+ readonly type: "address";
17855
+ readonly indexed: true;
17856
+ }, {
17857
+ readonly name: "to";
17858
+ readonly internalType: "address";
17859
+ readonly type: "address";
17860
+ readonly indexed: true;
17861
+ }, {
17862
+ readonly name: "tokenId";
17863
+ readonly internalType: "bytes32";
17864
+ readonly type: "bytes32";
17865
+ readonly indexed: false;
17866
+ }, {
17867
+ readonly name: "data";
17868
+ readonly internalType: "bytes";
17869
+ readonly type: "bytes";
17870
+ readonly indexed: false;
17871
+ }];
17872
+ readonly name: "TokenRevoked";
17728
17873
  }, {
17729
17874
  readonly type: "event";
17730
17875
  readonly anonymous: false;
@@ -18736,6 +18881,36 @@ declare const lsp8RevokableInitAbstractAbi: readonly [{
18736
18881
  readonly indexed: false;
18737
18882
  }];
18738
18883
  readonly name: "TokenIdDataChanged";
18884
+ }, {
18885
+ readonly type: "event";
18886
+ readonly anonymous: false;
18887
+ readonly inputs: readonly [{
18888
+ readonly name: "revoker";
18889
+ readonly internalType: "address";
18890
+ readonly type: "address";
18891
+ readonly indexed: true;
18892
+ }, {
18893
+ readonly name: "from";
18894
+ readonly internalType: "address";
18895
+ readonly type: "address";
18896
+ readonly indexed: true;
18897
+ }, {
18898
+ readonly name: "to";
18899
+ readonly internalType: "address";
18900
+ readonly type: "address";
18901
+ readonly indexed: true;
18902
+ }, {
18903
+ readonly name: "tokenId";
18904
+ readonly internalType: "bytes32";
18905
+ readonly type: "bytes32";
18906
+ readonly indexed: false;
18907
+ }, {
18908
+ readonly name: "data";
18909
+ readonly internalType: "bytes";
18910
+ readonly type: "bytes";
18911
+ readonly indexed: false;
18912
+ }];
18913
+ readonly name: "TokenRevoked";
18739
18914
  }, {
18740
18915
  readonly type: "event";
18741
18916
  readonly anonymous: false;
package/dist/abi.mjs CHANGED
@@ -464,6 +464,12 @@ const ilsp8NonTransferableAbi = [
464
464
  type: "event",
465
465
  anonymous: false,
466
466
  inputs: [
467
+ {
468
+ name: "nonTransferabilityEnabled",
469
+ internalType: "bool",
470
+ type: "bool",
471
+ indexed: true
472
+ },
467
473
  {
468
474
  name: "start",
469
475
  internalType: "uint256",
@@ -491,7 +497,7 @@ const ilsp8NonTransferableAbi = [
491
497
  {
492
498
  type: "function",
493
499
  inputs: [],
494
- name: "transferLockEnabled",
500
+ name: "nonTransferabilityEnabled",
495
501
  outputs: [{ name: "", internalType: "bool", type: "bool" }],
496
502
  stateMutability: "view"
497
503
  },
@@ -533,6 +539,28 @@ const ilsp8RevokableAbi = [
533
539
  ],
534
540
  name: "RevokableStatusChanged"
535
541
  },
542
+ {
543
+ type: "event",
544
+ anonymous: false,
545
+ inputs: [
546
+ {
547
+ name: "revoker",
548
+ internalType: "address",
549
+ type: "address",
550
+ indexed: true
551
+ },
552
+ { name: "from", internalType: "address", type: "address", indexed: true },
553
+ { name: "to", internalType: "address", type: "address", indexed: true },
554
+ {
555
+ name: "tokenId",
556
+ internalType: "bytes32",
557
+ type: "bytes32",
558
+ indexed: false
559
+ },
560
+ { name: "data", internalType: "bytes", type: "bytes", indexed: false }
561
+ ],
562
+ name: "TokenRevoked"
563
+ },
536
564
  {
537
565
  type: "function",
538
566
  inputs: [],
@@ -4248,6 +4276,28 @@ const lsp8CustomizableTokenAbi = [
4248
4276
  ],
4249
4277
  name: "TokenIdDataChanged"
4250
4278
  },
4279
+ {
4280
+ type: "event",
4281
+ anonymous: false,
4282
+ inputs: [
4283
+ {
4284
+ name: "revoker",
4285
+ internalType: "address",
4286
+ type: "address",
4287
+ indexed: true
4288
+ },
4289
+ { name: "from", internalType: "address", type: "address", indexed: true },
4290
+ { name: "to", internalType: "address", type: "address", indexed: true },
4291
+ {
4292
+ name: "tokenId",
4293
+ internalType: "bytes32",
4294
+ type: "bytes32",
4295
+ indexed: false
4296
+ },
4297
+ { name: "data", internalType: "bytes", type: "bytes", indexed: false }
4298
+ ],
4299
+ name: "TokenRevoked"
4300
+ },
4251
4301
  {
4252
4302
  type: "event",
4253
4303
  anonymous: false,
@@ -4275,6 +4325,12 @@ const lsp8CustomizableTokenAbi = [
4275
4325
  type: "event",
4276
4326
  anonymous: false,
4277
4327
  inputs: [
4328
+ {
4329
+ name: "nonTransferabilityEnabled",
4330
+ internalType: "bool",
4331
+ type: "bool",
4332
+ indexed: true
4333
+ },
4278
4334
  {
4279
4335
  name: "start",
4280
4336
  internalType: "uint256",
@@ -4518,6 +4574,13 @@ const lsp8CustomizableTokenAbi = [
4518
4574
  outputs: [],
4519
4575
  stateMutability: "nonpayable"
4520
4576
  },
4577
+ {
4578
+ type: "function",
4579
+ inputs: [],
4580
+ name: "nonTransferabilityEnabled",
4581
+ outputs: [{ name: "", internalType: "bool", type: "bool" }],
4582
+ stateMutability: "view"
4583
+ },
4521
4584
  {
4522
4585
  type: "function",
4523
4586
  inputs: [],
@@ -4707,13 +4770,6 @@ const lsp8CustomizableTokenAbi = [
4707
4770
  outputs: [],
4708
4771
  stateMutability: "nonpayable"
4709
4772
  },
4710
- {
4711
- type: "function",
4712
- inputs: [],
4713
- name: "transferLockEnabled",
4714
- outputs: [{ name: "", internalType: "bool", type: "bool" }],
4715
- stateMutability: "view"
4716
- },
4717
4773
  {
4718
4774
  type: "function",
4719
4775
  inputs: [],
@@ -5105,6 +5161,28 @@ const lsp8CustomizableTokenInitAbi = [
5105
5161
  ],
5106
5162
  name: "TokenIdDataChanged"
5107
5163
  },
5164
+ {
5165
+ type: "event",
5166
+ anonymous: false,
5167
+ inputs: [
5168
+ {
5169
+ name: "revoker",
5170
+ internalType: "address",
5171
+ type: "address",
5172
+ indexed: true
5173
+ },
5174
+ { name: "from", internalType: "address", type: "address", indexed: true },
5175
+ { name: "to", internalType: "address", type: "address", indexed: true },
5176
+ {
5177
+ name: "tokenId",
5178
+ internalType: "bytes32",
5179
+ type: "bytes32",
5180
+ indexed: false
5181
+ },
5182
+ { name: "data", internalType: "bytes", type: "bytes", indexed: false }
5183
+ ],
5184
+ name: "TokenRevoked"
5185
+ },
5108
5186
  {
5109
5187
  type: "event",
5110
5188
  anonymous: false,
@@ -5132,6 +5210,12 @@ const lsp8CustomizableTokenInitAbi = [
5132
5210
  type: "event",
5133
5211
  anonymous: false,
5134
5212
  inputs: [
5213
+ {
5214
+ name: "nonTransferabilityEnabled",
5215
+ internalType: "bool",
5216
+ type: "bool",
5217
+ indexed: true
5218
+ },
5135
5219
  {
5136
5220
  name: "start",
5137
5221
  internalType: "uint256",
@@ -5431,6 +5515,13 @@ const lsp8CustomizableTokenInitAbi = [
5431
5515
  outputs: [],
5432
5516
  stateMutability: "nonpayable"
5433
5517
  },
5518
+ {
5519
+ type: "function",
5520
+ inputs: [],
5521
+ name: "nonTransferabilityEnabled",
5522
+ outputs: [{ name: "", internalType: "bool", type: "bool" }],
5523
+ stateMutability: "view"
5524
+ },
5434
5525
  {
5435
5526
  type: "function",
5436
5527
  inputs: [],
@@ -5620,13 +5711,6 @@ const lsp8CustomizableTokenInitAbi = [
5620
5711
  outputs: [],
5621
5712
  stateMutability: "nonpayable"
5622
5713
  },
5623
- {
5624
- type: "function",
5625
- inputs: [],
5626
- name: "transferLockEnabled",
5627
- outputs: [{ name: "", internalType: "bool", type: "bool" }],
5628
- stateMutability: "view"
5629
- },
5630
5714
  {
5631
5715
  type: "function",
5632
5716
  inputs: [],
@@ -10735,6 +10819,12 @@ const lsp8NonTransferableAbstractAbi = [
10735
10819
  type: "event",
10736
10820
  anonymous: false,
10737
10821
  inputs: [
10822
+ {
10823
+ name: "nonTransferabilityEnabled",
10824
+ internalType: "bool",
10825
+ type: "bool",
10826
+ indexed: true
10827
+ },
10738
10828
  {
10739
10829
  name: "start",
10740
10830
  internalType: "uint256",
@@ -10907,6 +10997,13 @@ const lsp8NonTransferableAbstractAbi = [
10907
10997
  outputs: [],
10908
10998
  stateMutability: "nonpayable"
10909
10999
  },
11000
+ {
11001
+ type: "function",
11002
+ inputs: [],
11003
+ name: "nonTransferabilityEnabled",
11004
+ outputs: [{ name: "", internalType: "bool", type: "bool" }],
11005
+ stateMutability: "view"
11006
+ },
10910
11007
  {
10911
11008
  type: "function",
10912
11009
  inputs: [],
@@ -11070,13 +11167,6 @@ const lsp8NonTransferableAbstractAbi = [
11070
11167
  outputs: [],
11071
11168
  stateMutability: "nonpayable"
11072
11169
  },
11073
- {
11074
- type: "function",
11075
- inputs: [],
11076
- name: "transferLockEnabled",
11077
- outputs: [{ name: "", internalType: "bool", type: "bool" }],
11078
- stateMutability: "view"
11079
- },
11080
11170
  {
11081
11171
  type: "function",
11082
11172
  inputs: [],
@@ -11460,6 +11550,12 @@ const lsp8NonTransferableInitAbstractAbi = [
11460
11550
  type: "event",
11461
11551
  anonymous: false,
11462
11552
  inputs: [
11553
+ {
11554
+ name: "nonTransferabilityEnabled",
11555
+ internalType: "bool",
11556
+ type: "bool",
11557
+ indexed: true
11558
+ },
11463
11559
  {
11464
11560
  name: "start",
11465
11561
  internalType: "uint256",
@@ -11632,6 +11728,13 @@ const lsp8NonTransferableInitAbstractAbi = [
11632
11728
  outputs: [],
11633
11729
  stateMutability: "nonpayable"
11634
11730
  },
11731
+ {
11732
+ type: "function",
11733
+ inputs: [],
11734
+ name: "nonTransferabilityEnabled",
11735
+ outputs: [{ name: "", internalType: "bool", type: "bool" }],
11736
+ stateMutability: "view"
11737
+ },
11635
11738
  {
11636
11739
  type: "function",
11637
11740
  inputs: [],
@@ -11795,13 +11898,6 @@ const lsp8NonTransferableInitAbstractAbi = [
11795
11898
  outputs: [],
11796
11899
  stateMutability: "nonpayable"
11797
11900
  },
11798
- {
11799
- type: "function",
11800
- inputs: [],
11801
- name: "transferLockEnabled",
11802
- outputs: [{ name: "", internalType: "bool", type: "bool" }],
11803
- stateMutability: "view"
11804
- },
11805
11901
  {
11806
11902
  type: "function",
11807
11903
  inputs: [],
@@ -12156,6 +12252,28 @@ const lsp8RevokableAbstractAbi = [
12156
12252
  ],
12157
12253
  name: "TokenIdDataChanged"
12158
12254
  },
12255
+ {
12256
+ type: "event",
12257
+ anonymous: false,
12258
+ inputs: [
12259
+ {
12260
+ name: "revoker",
12261
+ internalType: "address",
12262
+ type: "address",
12263
+ indexed: true
12264
+ },
12265
+ { name: "from", internalType: "address", type: "address", indexed: true },
12266
+ { name: "to", internalType: "address", type: "address", indexed: true },
12267
+ {
12268
+ name: "tokenId",
12269
+ internalType: "bytes32",
12270
+ type: "bytes32",
12271
+ indexed: false
12272
+ },
12273
+ { name: "data", internalType: "bytes", type: "bytes", indexed: false }
12274
+ ],
12275
+ name: "TokenRevoked"
12276
+ },
12159
12277
  {
12160
12278
  type: "event",
12161
12279
  anonymous: false,
@@ -12849,6 +12967,28 @@ const lsp8RevokableInitAbstractAbi = [
12849
12967
  ],
12850
12968
  name: "TokenIdDataChanged"
12851
12969
  },
12970
+ {
12971
+ type: "event",
12972
+ anonymous: false,
12973
+ inputs: [
12974
+ {
12975
+ name: "revoker",
12976
+ internalType: "address",
12977
+ type: "address",
12978
+ indexed: true
12979
+ },
12980
+ { name: "from", internalType: "address", type: "address", indexed: true },
12981
+ { name: "to", internalType: "address", type: "address", indexed: true },
12982
+ {
12983
+ name: "tokenId",
12984
+ internalType: "bytes32",
12985
+ type: "bytes32",
12986
+ indexed: false
12987
+ },
12988
+ { name: "data", internalType: "bytes", type: "bytes", indexed: false }
12989
+ ],
12990
+ name: "TokenRevoked"
12991
+ },
12852
12992
  {
12853
12993
  type: "event",
12854
12994
  anonymous: false,