@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.
- package/README.md +69 -24
- package/artifacts/IAccessControlExtended.json +1 -1
- package/artifacts/ILSP8CappedBalance.json +1 -1
- package/artifacts/ILSP8CappedSupply.json +1 -1
- package/artifacts/ILSP8IdentifiableDigitalAsset.json +1 -1
- package/artifacts/ILSP8Mintable.json +1 -1
- package/artifacts/ILSP8NonTransferable.json +8 -2
- package/artifacts/ILSP8Revokable.json +38 -1
- package/artifacts/LSP8Burnable.json +1 -1
- package/artifacts/LSP8BurnableInitAbstract.json +1 -1
- package/artifacts/LSP8CappedBalanceAbstract.json +1 -1
- package/artifacts/LSP8CappedBalanceInitAbstract.json +1 -1
- package/artifacts/LSP8CappedSupplyAbstract.json +1 -1
- package/artifacts/LSP8CappedSupplyInitAbstract.json +1 -1
- package/artifacts/LSP8CustomizableToken.json +64 -21
- package/artifacts/LSP8CustomizableTokenInit.json +59 -16
- package/artifacts/LSP8Enumerable.json +1 -1
- package/artifacts/LSP8EnumerableInitAbstract.json +1 -1
- package/artifacts/LSP8IdentifiableDigitalAsset.json +1 -1
- package/artifacts/LSP8IdentifiableDigitalAssetInitAbstract.json +1 -1
- package/artifacts/LSP8Mintable.json +1 -1
- package/artifacts/LSP8MintableAbstract.json +1 -1
- package/artifacts/LSP8MintableInit.json +1 -1
- package/artifacts/LSP8MintableInitAbstract.json +1 -1
- package/artifacts/LSP8NonTransferableAbstract.json +20 -14
- package/artifacts/LSP8NonTransferableInitAbstract.json +20 -14
- package/artifacts/LSP8RevokableAbstract.json +38 -1
- package/artifacts/LSP8RevokableInitAbstract.json +38 -1
- package/artifacts/LSP8Votes.json +1 -1
- package/artifacts/LSP8VotesInitAbstract.json +1 -1
- package/contracts/extensions/LSP8NonTransferable/ILSP8NonTransferable.sol +9 -3
- package/contracts/extensions/LSP8NonTransferable/LSP8NonTransferableAbstract.sol +17 -8
- package/contracts/extensions/LSP8NonTransferable/LSP8NonTransferableInitAbstract.sol +17 -8
- package/contracts/extensions/LSP8Revokable/ILSP8Revokable.sol +9 -0
- package/contracts/extensions/LSP8Revokable/LSP8RevokableAbstract.sol +8 -0
- package/contracts/extensions/LSP8Revokable/LSP8RevokableInitAbstract.sol +15 -1
- package/dist/abi.cjs +169 -29
- package/dist/abi.d.cts +216 -41
- package/dist/abi.d.mts +216 -41
- package/dist/abi.d.ts +216 -41
- package/dist/abi.mjs +169 -29
- package/package.json +1 -1
package/dist/abi.cjs
CHANGED
|
@@ -466,6 +466,12 @@ const ilsp8NonTransferableAbi = [
|
|
|
466
466
|
type: "event",
|
|
467
467
|
anonymous: false,
|
|
468
468
|
inputs: [
|
|
469
|
+
{
|
|
470
|
+
name: "nonTransferabilityEnabled",
|
|
471
|
+
internalType: "bool",
|
|
472
|
+
type: "bool",
|
|
473
|
+
indexed: true
|
|
474
|
+
},
|
|
469
475
|
{
|
|
470
476
|
name: "start",
|
|
471
477
|
internalType: "uint256",
|
|
@@ -493,7 +499,7 @@ const ilsp8NonTransferableAbi = [
|
|
|
493
499
|
{
|
|
494
500
|
type: "function",
|
|
495
501
|
inputs: [],
|
|
496
|
-
name: "
|
|
502
|
+
name: "nonTransferabilityEnabled",
|
|
497
503
|
outputs: [{ name: "", internalType: "bool", type: "bool" }],
|
|
498
504
|
stateMutability: "view"
|
|
499
505
|
},
|
|
@@ -535,6 +541,28 @@ const ilsp8RevokableAbi = [
|
|
|
535
541
|
],
|
|
536
542
|
name: "RevokableStatusChanged"
|
|
537
543
|
},
|
|
544
|
+
{
|
|
545
|
+
type: "event",
|
|
546
|
+
anonymous: false,
|
|
547
|
+
inputs: [
|
|
548
|
+
{
|
|
549
|
+
name: "revoker",
|
|
550
|
+
internalType: "address",
|
|
551
|
+
type: "address",
|
|
552
|
+
indexed: true
|
|
553
|
+
},
|
|
554
|
+
{ name: "from", internalType: "address", type: "address", indexed: true },
|
|
555
|
+
{ name: "to", internalType: "address", type: "address", indexed: true },
|
|
556
|
+
{
|
|
557
|
+
name: "tokenId",
|
|
558
|
+
internalType: "bytes32",
|
|
559
|
+
type: "bytes32",
|
|
560
|
+
indexed: false
|
|
561
|
+
},
|
|
562
|
+
{ name: "data", internalType: "bytes", type: "bytes", indexed: false }
|
|
563
|
+
],
|
|
564
|
+
name: "TokenRevoked"
|
|
565
|
+
},
|
|
538
566
|
{
|
|
539
567
|
type: "function",
|
|
540
568
|
inputs: [],
|
|
@@ -4250,6 +4278,28 @@ const lsp8CustomizableTokenAbi = [
|
|
|
4250
4278
|
],
|
|
4251
4279
|
name: "TokenIdDataChanged"
|
|
4252
4280
|
},
|
|
4281
|
+
{
|
|
4282
|
+
type: "event",
|
|
4283
|
+
anonymous: false,
|
|
4284
|
+
inputs: [
|
|
4285
|
+
{
|
|
4286
|
+
name: "revoker",
|
|
4287
|
+
internalType: "address",
|
|
4288
|
+
type: "address",
|
|
4289
|
+
indexed: true
|
|
4290
|
+
},
|
|
4291
|
+
{ name: "from", internalType: "address", type: "address", indexed: true },
|
|
4292
|
+
{ name: "to", internalType: "address", type: "address", indexed: true },
|
|
4293
|
+
{
|
|
4294
|
+
name: "tokenId",
|
|
4295
|
+
internalType: "bytes32",
|
|
4296
|
+
type: "bytes32",
|
|
4297
|
+
indexed: false
|
|
4298
|
+
},
|
|
4299
|
+
{ name: "data", internalType: "bytes", type: "bytes", indexed: false }
|
|
4300
|
+
],
|
|
4301
|
+
name: "TokenRevoked"
|
|
4302
|
+
},
|
|
4253
4303
|
{
|
|
4254
4304
|
type: "event",
|
|
4255
4305
|
anonymous: false,
|
|
@@ -4277,6 +4327,12 @@ const lsp8CustomizableTokenAbi = [
|
|
|
4277
4327
|
type: "event",
|
|
4278
4328
|
anonymous: false,
|
|
4279
4329
|
inputs: [
|
|
4330
|
+
{
|
|
4331
|
+
name: "nonTransferabilityEnabled",
|
|
4332
|
+
internalType: "bool",
|
|
4333
|
+
type: "bool",
|
|
4334
|
+
indexed: true
|
|
4335
|
+
},
|
|
4280
4336
|
{
|
|
4281
4337
|
name: "start",
|
|
4282
4338
|
internalType: "uint256",
|
|
@@ -4520,6 +4576,13 @@ const lsp8CustomizableTokenAbi = [
|
|
|
4520
4576
|
outputs: [],
|
|
4521
4577
|
stateMutability: "nonpayable"
|
|
4522
4578
|
},
|
|
4579
|
+
{
|
|
4580
|
+
type: "function",
|
|
4581
|
+
inputs: [],
|
|
4582
|
+
name: "nonTransferabilityEnabled",
|
|
4583
|
+
outputs: [{ name: "", internalType: "bool", type: "bool" }],
|
|
4584
|
+
stateMutability: "view"
|
|
4585
|
+
},
|
|
4523
4586
|
{
|
|
4524
4587
|
type: "function",
|
|
4525
4588
|
inputs: [],
|
|
@@ -4709,13 +4772,6 @@ const lsp8CustomizableTokenAbi = [
|
|
|
4709
4772
|
outputs: [],
|
|
4710
4773
|
stateMutability: "nonpayable"
|
|
4711
4774
|
},
|
|
4712
|
-
{
|
|
4713
|
-
type: "function",
|
|
4714
|
-
inputs: [],
|
|
4715
|
-
name: "transferLockEnabled",
|
|
4716
|
-
outputs: [{ name: "", internalType: "bool", type: "bool" }],
|
|
4717
|
-
stateMutability: "view"
|
|
4718
|
-
},
|
|
4719
4775
|
{
|
|
4720
4776
|
type: "function",
|
|
4721
4777
|
inputs: [],
|
|
@@ -5107,6 +5163,28 @@ const lsp8CustomizableTokenInitAbi = [
|
|
|
5107
5163
|
],
|
|
5108
5164
|
name: "TokenIdDataChanged"
|
|
5109
5165
|
},
|
|
5166
|
+
{
|
|
5167
|
+
type: "event",
|
|
5168
|
+
anonymous: false,
|
|
5169
|
+
inputs: [
|
|
5170
|
+
{
|
|
5171
|
+
name: "revoker",
|
|
5172
|
+
internalType: "address",
|
|
5173
|
+
type: "address",
|
|
5174
|
+
indexed: true
|
|
5175
|
+
},
|
|
5176
|
+
{ name: "from", internalType: "address", type: "address", indexed: true },
|
|
5177
|
+
{ name: "to", internalType: "address", type: "address", indexed: true },
|
|
5178
|
+
{
|
|
5179
|
+
name: "tokenId",
|
|
5180
|
+
internalType: "bytes32",
|
|
5181
|
+
type: "bytes32",
|
|
5182
|
+
indexed: false
|
|
5183
|
+
},
|
|
5184
|
+
{ name: "data", internalType: "bytes", type: "bytes", indexed: false }
|
|
5185
|
+
],
|
|
5186
|
+
name: "TokenRevoked"
|
|
5187
|
+
},
|
|
5110
5188
|
{
|
|
5111
5189
|
type: "event",
|
|
5112
5190
|
anonymous: false,
|
|
@@ -5134,6 +5212,12 @@ const lsp8CustomizableTokenInitAbi = [
|
|
|
5134
5212
|
type: "event",
|
|
5135
5213
|
anonymous: false,
|
|
5136
5214
|
inputs: [
|
|
5215
|
+
{
|
|
5216
|
+
name: "nonTransferabilityEnabled",
|
|
5217
|
+
internalType: "bool",
|
|
5218
|
+
type: "bool",
|
|
5219
|
+
indexed: true
|
|
5220
|
+
},
|
|
5137
5221
|
{
|
|
5138
5222
|
name: "start",
|
|
5139
5223
|
internalType: "uint256",
|
|
@@ -5433,6 +5517,13 @@ const lsp8CustomizableTokenInitAbi = [
|
|
|
5433
5517
|
outputs: [],
|
|
5434
5518
|
stateMutability: "nonpayable"
|
|
5435
5519
|
},
|
|
5520
|
+
{
|
|
5521
|
+
type: "function",
|
|
5522
|
+
inputs: [],
|
|
5523
|
+
name: "nonTransferabilityEnabled",
|
|
5524
|
+
outputs: [{ name: "", internalType: "bool", type: "bool" }],
|
|
5525
|
+
stateMutability: "view"
|
|
5526
|
+
},
|
|
5436
5527
|
{
|
|
5437
5528
|
type: "function",
|
|
5438
5529
|
inputs: [],
|
|
@@ -5622,13 +5713,6 @@ const lsp8CustomizableTokenInitAbi = [
|
|
|
5622
5713
|
outputs: [],
|
|
5623
5714
|
stateMutability: "nonpayable"
|
|
5624
5715
|
},
|
|
5625
|
-
{
|
|
5626
|
-
type: "function",
|
|
5627
|
-
inputs: [],
|
|
5628
|
-
name: "transferLockEnabled",
|
|
5629
|
-
outputs: [{ name: "", internalType: "bool", type: "bool" }],
|
|
5630
|
-
stateMutability: "view"
|
|
5631
|
-
},
|
|
5632
5716
|
{
|
|
5633
5717
|
type: "function",
|
|
5634
5718
|
inputs: [],
|
|
@@ -10737,6 +10821,12 @@ const lsp8NonTransferableAbstractAbi = [
|
|
|
10737
10821
|
type: "event",
|
|
10738
10822
|
anonymous: false,
|
|
10739
10823
|
inputs: [
|
|
10824
|
+
{
|
|
10825
|
+
name: "nonTransferabilityEnabled",
|
|
10826
|
+
internalType: "bool",
|
|
10827
|
+
type: "bool",
|
|
10828
|
+
indexed: true
|
|
10829
|
+
},
|
|
10740
10830
|
{
|
|
10741
10831
|
name: "start",
|
|
10742
10832
|
internalType: "uint256",
|
|
@@ -10909,6 +10999,13 @@ const lsp8NonTransferableAbstractAbi = [
|
|
|
10909
10999
|
outputs: [],
|
|
10910
11000
|
stateMutability: "nonpayable"
|
|
10911
11001
|
},
|
|
11002
|
+
{
|
|
11003
|
+
type: "function",
|
|
11004
|
+
inputs: [],
|
|
11005
|
+
name: "nonTransferabilityEnabled",
|
|
11006
|
+
outputs: [{ name: "", internalType: "bool", type: "bool" }],
|
|
11007
|
+
stateMutability: "view"
|
|
11008
|
+
},
|
|
10912
11009
|
{
|
|
10913
11010
|
type: "function",
|
|
10914
11011
|
inputs: [],
|
|
@@ -11072,13 +11169,6 @@ const lsp8NonTransferableAbstractAbi = [
|
|
|
11072
11169
|
outputs: [],
|
|
11073
11170
|
stateMutability: "nonpayable"
|
|
11074
11171
|
},
|
|
11075
|
-
{
|
|
11076
|
-
type: "function",
|
|
11077
|
-
inputs: [],
|
|
11078
|
-
name: "transferLockEnabled",
|
|
11079
|
-
outputs: [{ name: "", internalType: "bool", type: "bool" }],
|
|
11080
|
-
stateMutability: "view"
|
|
11081
|
-
},
|
|
11082
11172
|
{
|
|
11083
11173
|
type: "function",
|
|
11084
11174
|
inputs: [],
|
|
@@ -11462,6 +11552,12 @@ const lsp8NonTransferableInitAbstractAbi = [
|
|
|
11462
11552
|
type: "event",
|
|
11463
11553
|
anonymous: false,
|
|
11464
11554
|
inputs: [
|
|
11555
|
+
{
|
|
11556
|
+
name: "nonTransferabilityEnabled",
|
|
11557
|
+
internalType: "bool",
|
|
11558
|
+
type: "bool",
|
|
11559
|
+
indexed: true
|
|
11560
|
+
},
|
|
11465
11561
|
{
|
|
11466
11562
|
name: "start",
|
|
11467
11563
|
internalType: "uint256",
|
|
@@ -11634,6 +11730,13 @@ const lsp8NonTransferableInitAbstractAbi = [
|
|
|
11634
11730
|
outputs: [],
|
|
11635
11731
|
stateMutability: "nonpayable"
|
|
11636
11732
|
},
|
|
11733
|
+
{
|
|
11734
|
+
type: "function",
|
|
11735
|
+
inputs: [],
|
|
11736
|
+
name: "nonTransferabilityEnabled",
|
|
11737
|
+
outputs: [{ name: "", internalType: "bool", type: "bool" }],
|
|
11738
|
+
stateMutability: "view"
|
|
11739
|
+
},
|
|
11637
11740
|
{
|
|
11638
11741
|
type: "function",
|
|
11639
11742
|
inputs: [],
|
|
@@ -11797,13 +11900,6 @@ const lsp8NonTransferableInitAbstractAbi = [
|
|
|
11797
11900
|
outputs: [],
|
|
11798
11901
|
stateMutability: "nonpayable"
|
|
11799
11902
|
},
|
|
11800
|
-
{
|
|
11801
|
-
type: "function",
|
|
11802
|
-
inputs: [],
|
|
11803
|
-
name: "transferLockEnabled",
|
|
11804
|
-
outputs: [{ name: "", internalType: "bool", type: "bool" }],
|
|
11805
|
-
stateMutability: "view"
|
|
11806
|
-
},
|
|
11807
11903
|
{
|
|
11808
11904
|
type: "function",
|
|
11809
11905
|
inputs: [],
|
|
@@ -12158,6 +12254,28 @@ const lsp8RevokableAbstractAbi = [
|
|
|
12158
12254
|
],
|
|
12159
12255
|
name: "TokenIdDataChanged"
|
|
12160
12256
|
},
|
|
12257
|
+
{
|
|
12258
|
+
type: "event",
|
|
12259
|
+
anonymous: false,
|
|
12260
|
+
inputs: [
|
|
12261
|
+
{
|
|
12262
|
+
name: "revoker",
|
|
12263
|
+
internalType: "address",
|
|
12264
|
+
type: "address",
|
|
12265
|
+
indexed: true
|
|
12266
|
+
},
|
|
12267
|
+
{ name: "from", internalType: "address", type: "address", indexed: true },
|
|
12268
|
+
{ name: "to", internalType: "address", type: "address", indexed: true },
|
|
12269
|
+
{
|
|
12270
|
+
name: "tokenId",
|
|
12271
|
+
internalType: "bytes32",
|
|
12272
|
+
type: "bytes32",
|
|
12273
|
+
indexed: false
|
|
12274
|
+
},
|
|
12275
|
+
{ name: "data", internalType: "bytes", type: "bytes", indexed: false }
|
|
12276
|
+
],
|
|
12277
|
+
name: "TokenRevoked"
|
|
12278
|
+
},
|
|
12161
12279
|
{
|
|
12162
12280
|
type: "event",
|
|
12163
12281
|
anonymous: false,
|
|
@@ -12851,6 +12969,28 @@ const lsp8RevokableInitAbstractAbi = [
|
|
|
12851
12969
|
],
|
|
12852
12970
|
name: "TokenIdDataChanged"
|
|
12853
12971
|
},
|
|
12972
|
+
{
|
|
12973
|
+
type: "event",
|
|
12974
|
+
anonymous: false,
|
|
12975
|
+
inputs: [
|
|
12976
|
+
{
|
|
12977
|
+
name: "revoker",
|
|
12978
|
+
internalType: "address",
|
|
12979
|
+
type: "address",
|
|
12980
|
+
indexed: true
|
|
12981
|
+
},
|
|
12982
|
+
{ name: "from", internalType: "address", type: "address", indexed: true },
|
|
12983
|
+
{ name: "to", internalType: "address", type: "address", indexed: true },
|
|
12984
|
+
{
|
|
12985
|
+
name: "tokenId",
|
|
12986
|
+
internalType: "bytes32",
|
|
12987
|
+
type: "bytes32",
|
|
12988
|
+
indexed: false
|
|
12989
|
+
},
|
|
12990
|
+
{ name: "data", internalType: "bytes", type: "bytes", indexed: false }
|
|
12991
|
+
],
|
|
12992
|
+
name: "TokenRevoked"
|
|
12993
|
+
},
|
|
12854
12994
|
{
|
|
12855
12995
|
type: "event",
|
|
12856
12996
|
anonymous: false,
|
package/dist/abi.d.cts
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: "
|
|
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;
|