-
Notifications
You must be signed in to change notification settings - Fork 0
/
IntelliLinkerV2.sol
605 lines (525 loc) · 23 KB
/
IntelliLinkerV2.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@ai-protocol/intelligent-nft-contracts/contracts/protocol/IntelligentNFTv2.sol";
import "@ai-protocol/access-control-upgradeable/contracts/UpgradeableAccessControl.sol";
/**
* @title Intelligent Token Linker (iNFT Linker)
*
* @notice iNFT Linker is a helper smart contract responsible for managing iNFTs.
* It creates and destroys iNFTs, determines iNFT creation price and destruction fee.
*
* @dev Known limitations (to be resolved in the future releases):
* - doesn't check AI Personality / target NFT compatibility: any personality
* can be linked to any NFT (NFT contract must be whitelisted)
* - doesn't support unlinking + linking in a single transaction
* - doesn't support AI Personality smart contract upgrades: in case when new
* AI Personality contract is deployed, new iNFT Linker should also be deployed
*
* @dev V2 modification
* - supports two separate whitelists for linking and unlinking
* - is upgradeable
*/
contract IntelliLinkerV2 is UpgradeableAccessControl {
/**
* @dev iNFT Linker locks/unlocks ALI tokens defined by `aliContract` to mint/burn iNFT
*/
address public aliContract;
/**
* @dev iNFT Linker locks/unlocks AI Personality defined by `personalityContract` to mint/burn iNFT
*/
address public personalityContract;
/**
* @dev iNFT Linker mints/burns iNFTs defined by `iNftContract`
*/
address public iNftContract;
/**
* @dev iNFTs may get created with the ALI tokens bound to them,
* linking fee may get charged when creating an iNFT
*
* @dev Linking price, how much ALI tokens is charged upon iNFT creation;
* `linkPrice - linkFee` is locked within the iNFT created
*/
uint96 public linkPrice;
/**
* @dev iNFTs may get created with the ALI tokens bound to them,
* linking fee may get charged when creating an iNFT
*
* @dev Linking fee, how much ALI tokens is sent into treasury `feeDestination`
* upon iNFT creation
*
* @dev Both `linkFee` and `feeDestination` must be set for the fee to be charged;
* both `linkFee` and `feeDestination` can be either set or unset
*/
uint96 public linkFee;
/**
* @dev iNFTs may get created with the ALI tokens bound to them,
* linking fee may get charged when creating an iNFT
*
* @dev Treasury `feeDestination` is an address to send linking fee to upon iNFT creation
*
* @dev Both `linkFee` and `feeDestination` must be set for the fee to be charged;
* both `linkFee` and `feeDestination` can be either set or unset
*/
address public feeDestination;
/**
/**
* @dev Next iNFT ID to mint; initially this is the first "free" ID which can be minted;
* at any point in time this should point to a free, mintable ID for iNFT
*
* @dev iNFT ID space up to 0xFFFF_FFFF (uint32 max) is reserved for the sales
*/
uint256 public nextId;
/**
* @dev Target NFT Contracts allowed iNFT to be linked to;
* is not taken into account if FEATURE_ALLOW_ANY_NFT_CONTRACT is enabled
* @dev Lowest bit (zero) defines if contract is allowed to be linked to;
* Next bit (one) defines if contract is allowed to be unlinked from
*/
mapping(address => uint8) public whitelistedTargetContracts;
/**
* @notice Enables iNFT linking (creation)
*
* @dev Feature FEATURE_LINKING must be enabled
* as a prerequisite for `link()` function to succeed
*/
uint32 public constant FEATURE_LINKING = 0x0000_0001;
/**
* @notice Enables iNFT unlinking (destruction)
*
* @dev Feature FEATURE_UNLINKING must be enabled
* for the `unlink()` and `unlinkNFT()` functions to succeed
*/
uint32 public constant FEATURE_UNLINKING = 0x0000_0002;
/**
* @notice Allows linker to link (mint) iNFT bound to any target NFT contract,
* independently whether it was previously whitelisted or not
* @dev Feature FEATURE_ALLOW_ANY_NFT_CONTRACT allows linking (minting) iNFTs
* bound to any target NFT contract, without a check if it's whitelisted in
* `whitelistedTargetContracts` or not
*/
uint32 public constant FEATURE_ALLOW_ANY_NFT_CONTRACT = 0x0000_0004;
/**
* @notice Enables depositing more ALI to already existing iNFTs
*
* @dev Feature FEATURE_DEPOSITS must be enabled
* for the `deposit()` function to succeed
*/
uint32 public constant FEATURE_DEPOSITS = 0x0000_0008;
/**
* @notice Enables ALI withdrawals from the iNFT (without destroying them)
*
* @dev Feature FEATURE_WITHDRAWALS must be enabled
* for the `withdraw()` function to succeed
*/
uint32 public constant FEATURE_WITHDRAWALS = 0x0000_0010;
/**
* @notice Link price manager is responsible for updating linking price
*
* @dev Role ROLE_LINK_PRICE_MANAGER allows `updateLinkPrice` execution,
* and `linkPrice` modification
*/
uint32 public constant ROLE_LINK_PRICE_MANAGER = 0x0001_0000;
/**
* @notice Next ID manager is responsible for updating `nextId` variable,
* pointing to the next iNFT ID free slot
*
* @dev Role ROLE_NEXT_ID_MANAGER allows `updateNextId` execution,
* and `nextId` modification
*/
uint32 public constant ROLE_NEXT_ID_MANAGER = 0x0002_0000;
/**
* @notice Whitelist manager is responsible for managing the target NFT contracts
* whitelist, which are the contracts iNFT is allowed to be bound to
*
* @dev Role ROLE_WHITELIST_MANAGER allows `whitelistTargetContract` execution,
* and `whitelistedTargetContracts` mapping modification
*/
uint32 public constant ROLE_WHITELIST_MANAGER = 0x0004_0000;
/**
* @dev Fired in link() when new iNFT is created
*
* @param _by an address which executed (and funded) the link function
* @param _iNftId ID of the iNFT minted
* @param _linkPrice amount of ALI tokens locked (transferred) to newly created iNFT
* @param _linkFee amount of ALI tokens charged as a fee and sent to the treasury
* @param _personalityContract AI Personality contract address
* @param _personalityId ID of the AI Personality locked (transferred) to newly created iNFT
* @param _targetContract target NFT smart contract
* @param _targetId target NFT ID (where this iNFT binds to and belongs to)
*/
event Linked(
address indexed _by,
uint256 _iNftId,
uint96 _linkPrice,
uint96 _linkFee,
address indexed _personalityContract,
uint96 indexed _personalityId,
address _targetContract,
uint256 _targetId
);
/**
* @dev Fired in unlink() when an existing iNFT gets destroyed
*
* @param _by an address which executed the unlink function
* (and which received unlocked AI Personality and ALI tokens)
* @param _iNftId ID of the iNFT burnt
*/
event Unlinked(address indexed _by, uint256 indexed _iNftId);
/**
* @dev Fired in deposit(), withdraw() when an iNFT ALI balance gets changed
*
* @param _by an address which executed the deposit/withdraw function
* (in case of withdraw it received unlocked ALI tokens)
* @param _iNftId ID of the iNFT to update
* @param _aliDelta locked ALI tokens delta, positive for deposit, negative for withdraw
* @param _feeValue amount of ALI tokens charged as a fee
*/
event LinkUpdated(address indexed _by, uint256 indexed _iNftId, int128 _aliDelta, uint96 _feeValue);
/**
* @dev Fired in updateLinkPrice()
*
* @param _by an address which executed the operation
* @param _linkPrice new linking price set
* @param _linkFee new linking fee set
* @param _feeDestination new treasury address set
*/
event LinkPriceChanged(address indexed _by, uint96 _linkPrice, uint96 _linkFee, address indexed _feeDestination);
/**
* @dev Fired in updateNextId()
*
* @param _by an address which executed the operation
* @param _oldVal old nextId value
* @param _newVal new nextId value
*/
event NextIdChanged(address indexed _by, uint256 _oldVal, uint256 _newVal);
/**
* @dev Fired in whitelistTargetContract()
*
* @param _by an address which executed the operation
* @param _targetContract target NFT contract address affected
* @param _oldVal old whitelisted raw value (contains both linking/unlinking flags)
* @param _newVal new whitelisted raw value (contains both linking/unlinking flags)
*/
event TargetContractWhitelisted(address indexed _by, address indexed _targetContract, uint8 _oldVal, uint8 _newVal);
/**
* @dev "Constructor replacement" for upgradeable, must be execute immediately after deployment
* see https://docs.openzeppelin.com/upgrades-plugins/1.x/writing-upgradeable#initializers
*
* @dev Binds an iNFT Linker instance to already deployed
* iNFT, AI Personality and ALI Token instances
*
* @param _ali address of the deployed ALI ERC20 Token instance the iNFT Linker is bound to
* @param _personality address of the deployed AI Personality instance the iNFT Linker is bound to
* @param _iNft address of the deployed iNFT instance the iNFT Linker is bound to
*/
function postConstruct(address _ali, address _personality, address _iNft) public virtual initializer {
// execute parent initializer
_postConstruct(msg.sender, 0);
// verify inputs are set
require(_ali != address(0), "ALI Token addr is not set");
require(_personality != address(0), "AI Personality addr is not set");
require(_iNft != address(0), "iNFT addr is not set");
// verify inputs are valid smart contracts of the expected interfaces
require(ERC165(_ali).supportsInterface(type(ERC20).interfaceId), "unexpected ALI Token type");
require(ERC165(_personality).supportsInterface(type(ERC721).interfaceId), "unexpected AI Personality type");
require(ERC165(_iNft).supportsInterface(type(IntelligentNFTv2Spec).interfaceId), "unexpected iNFT type");
// setup smart contract internal state
aliContract = _ali;
personalityContract = _personality;
iNftContract = _iNft;
// setup the defaults
// linkPrice = 2_000 ether; // we use "ether" suffix instead of "e18"
// iNFT ID space up to 0xFFFF_FFFF (uint32 max) is reserved for the sales
// iNFT ID space up to 0x1_FFFF_FFFF is reserved for IntelliLinker (v1, non-upgradeable)
nextId = 0x2_0000_0000;
}
/**
* @notice Links given AI Personality with the given NFT and forms an iNFT.
* AI Personality specified and `linkPrice` ALI are transferred into minted iNFT
* and are effectively locked within an iNFT until it is destructed (burnt)
*
* @dev AI Personality and ALI tokens are transferred from the transaction sender account
* to iNFT smart contract
* @dev Sender must approve both AI Personality and ALI tokens transfers to be
* performed by the linker contract
*
* @param personalityId AI Personality ID to be locked into iNFT
* @param targetContract NFT address iNFT to be linked to
* @param targetId NFT ID iNFT to be linked to
*/
function link(uint96 personalityId, address targetContract, uint256 targetId) public virtual {
// verify linking is enabled
require(isFeatureEnabled(FEATURE_LINKING), "linking is disabled");
// verify AI Personality belongs to transaction sender
require(ERC721(personalityContract).ownerOf(personalityId) == msg.sender, "access denied");
// verify NFT contract is either whitelisted or any NFT contract is allowed globally
require(
isAllowedForLinking(targetContract) || isFeatureEnabled(FEATURE_ALLOW_ANY_NFT_CONTRACT),
"not a whitelisted NFT contract"
);
// if linking fee is set
if (linkFee > 0) {
// transfer ALI tokens to the treasury - `feeDestination`
ERC20(aliContract).transferFrom(msg.sender, feeDestination, linkFee);
}
// if linking price is set
if (linkPrice > 0) {
// transfer ALI tokens to iNFT contract to be locked
ERC20(aliContract).transferFrom(msg.sender, iNftContract, linkPrice - linkFee);
}
// transfer AI Personality to iNFT contract to be locked
ERC721(personalityContract).transferFrom(msg.sender, iNftContract, personalityId);
// mint the next iNFT, increment next iNFT ID to be minted
IntelligentNFTv2(iNftContract).mint(
nextId++,
linkPrice - linkFee,
personalityContract,
personalityId,
targetContract,
targetId
);
// emit an event
emit Linked(
msg.sender,
nextId - 1,
linkPrice,
linkFee,
personalityContract,
personalityId,
targetContract,
targetId
);
}
/**
* @notice Destroys given iNFT, unlinking it from underlying NFT and unlocking
* the AI Personality and ALI tokens locked in iNFT.
* AI Personality and ALI tokens are transferred to the underlying NFT owner
*
* @dev Can be executed only by iNFT owner (effectively underlying NFT owner)
*
* @param iNftId ID of the iNFT to unlink
*/
function unlink(uint256 iNftId) public virtual {
// verify unlinking is enabled
require(isFeatureEnabled(FEATURE_UNLINKING), "unlinking is disabled");
// get a link to an iNFT contract to perform several actions with it
IntelligentNFTv2 iNFT = IntelligentNFTv2(iNftContract);
// get target NFT contract address from the iNFT binding
(, , , address targetContract, ) = iNFT.bindings(iNftId);
// verify NFT contract is either whitelisted or any NFT contract is allowed globally
require(
isAllowedForUnlinking(targetContract) || isFeatureEnabled(FEATURE_ALLOW_ANY_NFT_CONTRACT),
"not a whitelisted NFT contract"
);
// verify the transaction is executed by iNFT owner (effectively by underlying NFT owner)
require(iNFT.ownerOf(iNftId) == msg.sender, "not an iNFT owner");
// burn the iNFT unlocking the AI Personality and ALI tokens - delegate to `IntelligentNFTv2.burn`
iNFT.burn(iNftId);
// emit an event
emit Unlinked(msg.sender, iNftId);
}
/**
* @notice Unlinks given NFT by destroying iNFTs and unlocking
* the AI Personality and ALI tokens locked in iNFTs.
* AI Personality and ALI tokens are transferred to the underlying NFT owner
*
* @dev Can be executed only by NFT owner (effectively underlying NFT owner)
*
* @param nftContract NFT address iNFTs to be unlinked to
* @param nftId NFT ID iNFTs to be unlinked to
*/
function unlinkNFT(address nftContract, uint256 nftId) public virtual {
// verify unlinking is enabled
require(isFeatureEnabled(FEATURE_UNLINKING), "unlinking is disabled");
// get a link to an iNFT contract to perform several actions with it
IntelligentNFTv2 iNFT = IntelligentNFTv2(iNftContract);
// verify the transaction is executed by NFT owner
require(ERC721(nftContract).ownerOf(nftId) == msg.sender, "not an NFT owner");
// get iNFT ID linked with given NFT
uint256 iNftId = iNFT.reverseBindings(nftContract, nftId);
// verify NFT contract is either whitelisted or any NFT contract is allowed globally
require(
isAllowedForUnlinking(nftContract) || isFeatureEnabled(FEATURE_ALLOW_ANY_NFT_CONTRACT),
"not a whitelisted NFT contract"
);
// burn the iNFT unlocking the AI Personality and ALI tokens - delegate to `IntelligentNFTv2.burn`
iNFT.burn(iNftId);
// emit an event
emit Unlinked(msg.sender, iNftId);
}
/**
* @notice Deposits additional ALI tokens into already existing iNFT
*
* @dev Can be executed only by NFT owner (effectively underlying NFT owner)
*
* @dev ALI tokens are transferred from the transaction sender account to iNFT smart contract
* Sender must approve ALI tokens transfers to be performed by the linker contract
*
* @param iNftId ID of the iNFT to transfer (and lock) tokens to
* @param aliValue amount of ALI tokens to transfer (and lock)
*/
function deposit(uint256 iNftId, uint96 aliValue) public virtual {
// verify deposits are enabled
require(isFeatureEnabled(FEATURE_DEPOSITS), "deposits are disabled");
// get a link to an iNFT contract to perform several actions with it
IntelligentNFTv2 iNFT = IntelligentNFTv2(iNftContract);
// verify the transaction is executed by iNFT owner (effectively by underlying NFT owner)
require(iNFT.ownerOf(iNftId) == msg.sender, "not an iNFT owner");
// effective ALI value locked in iNFT may get altered according to the linking fee set
// init effective fee as if linking fee is not set
uint96 _linkFee = 0;
// init effective ALI value locked as if linking fee is not set
uint96 _aliValue = aliValue;
// in case when link price/fee are set (effectively meaning fee percent is set)
if (linkPrice != 0 && linkFee != 0) {
// we need to make sure the fee is charged from the value supplied
// proportionally to the value supplied and fee percent
_linkFee = uint96((uint256(_aliValue) * linkFee) / linkPrice);
// recalculate ALI value to be locked accordingly
_aliValue = aliValue - _linkFee;
// transfer ALI tokens to the treasury - `feeDestination`
ERC20(aliContract).transferFrom(msg.sender, feeDestination, _linkFee);
}
// transfer ALI tokens to iNFT contract to be locked
ERC20(aliContract).transferFrom(msg.sender, iNftContract, _aliValue);
// update the iNFT record
iNFT.increaseAli(iNftId, _aliValue);
// emit an event
emit LinkUpdated(msg.sender, iNftId, int128(uint128(_aliValue)), _linkFee);
}
/**
* @notice Withdraws some ALI tokens from already existing iNFT without destroying it
*
* @dev Can be executed only by NFT owner (effectively underlying NFT owner)
*
* @dev ALI tokens are transferred to the iNFT owner (transaction executor)
*
* @param iNftId ID of the iNFT to unlock tokens from
* @param aliValue amount of ALI tokens to unlock
*/
function withdraw(uint256 iNftId, uint96 aliValue) public virtual {
// verify withdrawals are enabled
require(isFeatureEnabled(FEATURE_WITHDRAWALS), "withdrawals are disabled");
// get a link to an iNFT contract to perform several actions with it
IntelligentNFTv2 iNFT = IntelligentNFTv2(iNftContract);
// verify the transaction is executed by iNFT owner (effectively by underlying NFT owner)
require(iNFT.ownerOf(iNftId) == msg.sender, "not an iNFT owner");
// ensure iNFT locked balance doesn't go below `linkPrice - linkFee`
require(iNFT.lockedValue(iNftId) >= aliValue + linkPrice, "deposit too low");
// update the iNFT record and transfer tokens back to the iNFT owner
iNFT.decreaseAli(iNftId, aliValue, msg.sender);
// emit an event
emit LinkUpdated(msg.sender, iNftId, -int128(uint128(aliValue)), 0);
}
/**
* @dev Restricted access function to modify
* - linking price `linkPrice`,
* - linking fee `linkFee`, and
* - treasury address `feeDestination`
*
* @dev Requires executor to have ROLE_LINK_PRICE_MANAGER permission
* @dev Requires linking price to be either unset (zero), or not less than 1e12 (0.000001 ALI)
* @dev Requires both linking fee and treasury address to be either set or unset (zero);
* if set, linking fee must not be less than 1e12 (0.000001 ALI);
* if set, linking fee must not exceed linking price
*
* @param _linkPrice new linking price to be set
* @param _linkFee new linking fee to be set
* @param _feeDestination treasury address
*/
function updateLinkPrice(uint96 _linkPrice, uint96 _linkFee, address _feeDestination) public virtual {
// verify the access permission
require(isSenderInRole(ROLE_LINK_PRICE_MANAGER), "access denied");
// verify the price is not too low if it's set
require(_linkPrice == 0 || _linkPrice >= 1e12, "invalid price");
// linking fee/treasury should be either both set or both unset
// linking fee must not be too low if set
require(
(_linkFee == 0 && _feeDestination == address(0)) || (_linkFee >= 1e12 && _feeDestination != address(0)),
"invalid linking fee/treasury"
);
// linking fee must not exceed linking price
require(_linkFee <= _linkPrice, "linking fee exceeds linking price");
// update the linking price, fee, and treasury address
linkPrice = _linkPrice;
linkFee = _linkFee;
feeDestination = _feeDestination;
// emit an event
emit LinkPriceChanged(msg.sender, _linkPrice, _linkFee, _feeDestination);
}
/**
* @dev Restricted access function to modify next iNFT ID `nextId`
*
* @param _nextId new next iNFT ID to be set
*/
function updateNextId(uint256 _nextId) public virtual {
// verify the access permission
require(isSenderInRole(ROLE_NEXT_ID_MANAGER), "access denied");
// verify nextId is in safe bounds
require(_nextId > 0xFFFF_FFFF, "value too low");
// emit a event
emit NextIdChanged(msg.sender, nextId, _nextId);
// update next ID
nextId = _nextId;
}
/**
* @dev Restricted access function to manage whitelisted NFT contracts mapping `whitelistedTargetContracts`
*
* @dev Requires executor to have ROLE_WHITELIST_MANAGER permission
*
* @param targetContract target NFT contract address to add/remove to/from the whitelist
* @param allowedForLinking true to add, false to remove to/from whitelist (allowed for linking)
* @param allowedForUnlinking true to add, false to remove to/from whitelist (allowed for unlinking)
*/
function whitelistTargetContract(
address targetContract,
bool allowedForLinking,
bool allowedForUnlinking
) public virtual {
// verify the access permission
require(isSenderInRole(ROLE_WHITELIST_MANAGER), "access denied");
// verify the address is set
require(targetContract != address(0), "zero address");
// delisting is always possible, whitelisting - only for valid ERC721
if (allowedForLinking) {
// verify targetContract is a valid ERC721
require(ERC165(targetContract).supportsInterface(type(ERC721).interfaceId), "target NFT is not ERC721");
}
// derive the uint8 value representing two boolean flags:
// Lowest bit (zero) defines if contract is allowed to be linked to;
// Next bit (one) defines if contract is allowed to be unlinked from
uint8 newVal = (allowedForLinking ? 0x1 : 0x0) | (allowedForUnlinking ? 0x2 : 0x0);
// emit an event
emit TargetContractWhitelisted(msg.sender, targetContract, whitelistedTargetContracts[targetContract], newVal);
// update the contract address in the whitelist
whitelistedTargetContracts[targetContract] = newVal;
}
/**
* @notice Checks if specified target NFT contract is allowed to be linked to
*
* @dev Using this function can be more convenient than accessing the
* `whitelistedTargetContracts` directly since the mapping contains linking/unlinking
* flags packed into uint8
*
* @param targetContract target NFT contract address to query for
* @return true if target NFT contract is allowed to be linked to, false otherwise
*/
function isAllowedForLinking(address targetContract) public view virtual returns (bool) {
// read the mapping and extract the lowest bit (zero) containing information required
return whitelistedTargetContracts[targetContract] & 0x1 == 0x1;
}
/**
* @notice Checks if specified target NFT contract is allowed to be unlinked from
*
* @dev Using this function can be more convenient than accessing the
* `whitelistedTargetContracts` directly since the mapping contains linking/unlinking
* flags packed into uint8
*
* @param targetContract target NFT contract address to query for
* @return true if target NFT contract is allowed to be unlinked from, false otherwise
*/
function isAllowedForUnlinking(address targetContract) public view virtual returns (bool) {
// read the mapping and extract the next bit (one) containing information required
return whitelistedTargetContracts[targetContract] & 0x2 == 0x2;
}
}