Solidity API
MerkleProof
_These functions deal with verification of Merkle Tree proofs.
The tree and the proofs can be generated using our https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. You will find a quickstart guide in the readme.
WARNING: You should avoid using leaf values that are 64 bytes long prior to hashing, or use a hash function other than keccak256 for hashing leaves. This is because the concatenation of a sorted pair of internal nodes in the Merkle tree could be reinterpreted as a leaf value. OpenZeppelin's JavaScript library generates Merkle trees that are safe against this attack out of the box._
MerkleProofInvalidMultiproof
error MerkleProofInvalidMultiproof()
The multiproof provided is not valid.
verify
function verify(bytes32[] proof, bytes32 root, bytes32 leaf) internal pure returns (bool)
Returns true if a leaf
can be proved to be a part of a Merkle tree
defined by root
. For this, a proof
must be provided, containing
sibling hashes on the branch from the leaf to the root of the tree. Each
pair of leaves and each pair of pre-images are assumed to be sorted.
verifyCalldata
function verifyCalldata(bytes32[] proof, bytes32 root, bytes32 leaf) internal pure returns (bool)
Calldata version of verify
processProof
function processProof(bytes32[] proof, bytes32 leaf) internal pure returns (bytes32)
Returns the rebuilt hash obtained by traversing a Merkle tree up
from leaf
using proof
. A proof
is valid if and only if the rebuilt
hash matches the root of the tree. When processing the proof, the pairs
of leafs & pre-images are assumed to be sorted.
processProofCalldata
function processProofCalldata(bytes32[] proof, bytes32 leaf) internal pure returns (bytes32)
Calldata version of processProof
multiProofVerify
function multiProofVerify(bytes32[] proof, bool[] proofFlags, bytes32 root, bytes32[] leaves) internal pure returns (bool)
_Returns true if the leaves
can be simultaneously proven to be a part of a Merkle tree defined by
root
, according to proof
and proofFlags
as described in processMultiProof.
CAUTION: Not all Merkle trees admit multiproofs. See processMultiProof for details._
multiProofVerifyCalldata
function multiProofVerifyCalldata(bytes32[] proof, bool[] proofFlags, bytes32 root, bytes32[] leaves) internal pure returns (bool)
_Calldata version of multiProofVerify
CAUTION: Not all Merkle trees admit multiproofs. See processMultiProof for details._
processMultiProof
function processMultiProof(bytes32[] proof, bool[] proofFlags, bytes32[] leaves) internal pure returns (bytes32 merkleRoot)
_Returns the root of a tree reconstructed from leaves
and sibling nodes in proof
. The reconstruction
proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
leaf/inner node or a proof sibling node, depending on whether each proofFlags
item is true or false
respectively.
CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer)._
processMultiProofCalldata
function processMultiProofCalldata(bytes32[] proof, bool[] proofFlags, bytes32[] leaves) internal pure returns (bytes32 merkleRoot)
_Calldata version of processMultiProof.
CAUTION: Not all Merkle trees admit multiproofs. See processMultiProof for details._
IPublicLock
PurchaseArgs
PurchaseArgs struct
Parameters
Name | Type | Description |
---|
struct PurchaseArgs {
uint256 value;
address recipient;
address referrer;
address protocolReferrer;
address keyManager;
bytes data;
uint256 additionalPeriods;
}
initialize
function initialize(address _lockCreator, uint256 _expirationDuration, address _tokenAddress, uint256 _keyPrice, uint256 _maxNumberOfKeys, string _lockName) external
Functions
DEFAULT_ADMIN_ROLE
function DEFAULT_ADMIN_ROLE() external view returns (bytes32 role)
publicLockVersion
function publicLockVersion() external pure returns (uint16)
The version number of the current implementation on this network.
Return Values
Name | Type | Description |
---|---|---|
[0] | uint16 | The current version number. |
withdraw
function withdraw(address _tokenAddress, address payable _recipient, uint256 _amount) external
Called by lock manager to withdraw all funds from the lock
Parameters
Name | Type | Description |
---|---|---|
_tokenAddress | address | specifies the token address to withdraw or 0 for ETH. This is usually the same as tokenAddress in MixinFunds. |
_recipient | address payable | specifies the address that will receive the tokens |
_amount | uint256 | specifies the max amount to withdraw, which may be reduced when considering the available balance. Set to 0 or MAX_UINT to withdraw everything. -- however be wary of draining funds as it breaks the cancelAndRefund and expireAndRefundFor use cases. |
updateKeyPricing
function updateKeyPricing(uint256 _keyPrice, address _tokenAddress) external
A function which lets a Lock manager of the lock to change the price for future purchases.
Throws if called by other than a Lock manager Throws if lock has been disabled Throws if _tokenAddress is not a valid token
Parameters
Name | Type | Description |
---|---|---|
_keyPrice | uint256 | The new price to set for keys |
_tokenAddress | address | The address of the erc20 token to use for pricing the keys, or 0 to use ETH |
updateLockConfig
function updateLockConfig(uint256 _newExpirationDuration, uint256 _maxNumberOfKeys, uint256 _maxKeysPerAcccount) external
Update the main key properties for the entire lock:
- default duration of each key
- the maximum number of keys the lock can edit
- the maximum number of keys a single address can hold
keys previously bought are unaffected by this changes in expiration duration (i.e. existing keys timestamps are not recalculated/updated)
_maxNumberOfKeys Can't be smaller than the existing supply
Parameters
Name | Type | Description |
---|---|---|
_newExpirationDuration | uint256 | the new amount of time for each key purchased or type(uint).max for a non-expiring key |
_maxNumberOfKeys | uint256 | uint the maximum number of keys |
_maxKeysPerAcccount | uint256 | the maximum amount of key a single user can own |
getHasValidKey
function getHasValidKey(address _user) external view returns (bool)
Checks if the user has a non-expired key.
Parameters
Name | Type | Description |
---|---|---|
_user | address | The address of the key owner |
keyExpirationTimestampFor
function keyExpirationTimestampFor(uint256 _tokenId) external view returns (uint256 timestamp)
Returns the key's ExpirationTimestamp field for a given owner. Returns 0 if the owner has never owned a key for this lock
Parameters
Name | Type | Description |
---|---|---|
_tokenId | uint256 | the id of the key |
numberOfOwners
function numberOfOwners() external view returns (uint256)
Public function which returns the total number of unique owners (both expired and valid). This may be larger than totalSupply.
setLockMetadata
function setLockMetadata(string _lockName, string _lockSymbol, string _baseTokenURI) external
Allows the Lock owner to assign
Parameters
Name | Type | Description |
---|---|---|
_lockName | string | a descriptive name for this Lock. |
_lockSymbol | string | a Symbol for this Lock (default to KEY). |
_baseTokenURI | string | the baseTokenURI for this Lock |
symbol
function symbol() external view returns (string)
Gets the token symbol
Return Values
Name | Type | Description |
---|---|---|
[0] | string | string representing the token symbol |
tokenURI
function tokenURI(uint256 _tokenId) external view returns (string)
A distinct Uniform Resource Identifier (URI) for a given asset.
Throws if _tokenId
is not a valid NFT. URIs are defined in RFC 3986. The URI may point to a JSON file that conforms to the "ERC721
Metadata JSON Schema".
https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
Parameters
Name | Type | Description |
---|---|---|
_tokenId | uint256 | The tokenID we're inquiring about |
Return Values
Name | Type | Description |
---|---|---|
[0] | string | String representing the URI for the requested token |
setEventHooks
function setEventHooks(address _onKeyPurchaseHook, address _onKeyCancelHook, address _onValidKeyHook, address _onTokenURIHook, address _onKeyTransferHook, address _onKeyExtendHook, address _onKeyGrantHook, address _onHasRoleHook) external
Allows a Lock manager to add or remove an event hook
Parameters
Name | Type | Description |
---|---|---|
_onKeyPurchaseHook | address | Hook called when the purchase function is called |
_onKeyCancelHook | address | Hook called when the internal _cancelAndRefund function is called |
_onValidKeyHook | address | Hook called to determine if the contract should overide the status for a given address |
_onTokenURIHook | address | Hook called to generate a data URI used for NFT metadata |
_onKeyTransferHook | address | Hook called when a key is transfered |
_onKeyExtendHook | address | Hook called when a key is extended or renewed |
_onKeyGrantHook | address | Hook called when a key is granted |
_onHasRoleHook | address | Hook called when checking if an address as a specific role |
grantKeys
function grantKeys(address[] _recipients, uint256[] _expirationTimestamps, address[] _keyManagers) external returns (uint256[])
Allows a Lock manager to give a collection of users a key with no charge. Each key may be assigned a different expiration date.
Throws if called by other than a Lock manager
Parameters
Name | Type | Description |
---|---|---|
_recipients | address[] | An array of receiving addresses |
_expirationTimestamps | uint256[] | An array of expiration Timestamps for the keys being granted |
_keyManagers | address[] |
Return Values
Name | Type | Description |
---|---|---|
[0] | uint256[] | the ids of the granted tokens |
grantKeyExtension
function grantKeyExtension(uint256 _tokenId, uint256 _duration) external
Allows the Lock owner to extend an existing keys with no charge.
set _duration
to 0 to use the default duration of the lock
Parameters
Name | Type | Description |
---|---|---|
_tokenId | uint256 | The id of the token to extend |
_duration | uint256 | The duration in secondes to add ot the key |
purchase
function purchase(struct IPublicLock.PurchaseArgs[] purchaseArgs) external payable returns (uint256[] tokenIds)
Purchase function
Parameters
Name | Type | Description |
---|---|---|
purchaseArgs | struct IPublicLock.PurchaseArgs[] | array of PurchaseArg |
Return Values
Name | Type | Description |
---|---|---|
tokenIds | uint256[] | the ids of the created tokens |
purchase
function purchase(uint256[] _values, address[] _recipients, address[] _referrers, address[] _keyManagers, bytes[] _data) external payable returns (uint256[] tokenIds)
when called for an existing and non-expired key, the _keyManager
param will be ignored
Purchase function (legacy) Setting _value to keyPrice exactly doubles as a security feature. That way if the lock owner increases the price while my transaction is pending I can't be charged more than I expected (only applicable to ERC-20 when more than keyPrice is approved for spending).
Parameters
Name | Type | Description |
---|---|---|
_values | uint256[] | array of tokens amount to pay for this purchase >= the current keyPrice - any applicable discount (_values is ignored when using ETH) |
_recipients | address[] | array of addresses of the recipients of the purchased key |
_referrers | address[] | array of addresses of the users making the referral |
_keyManagers | address[] | optional array of addresses to grant managing rights to a specific address on creation |
_data | bytes[] | array of arbitrary data populated by the front-end which initiated the sale |
Return Values
Name | Type | Description |
---|---|---|
tokenIds | uint256[] | the ids of the created tokens |
extend
function extend(uint256 _value, uint256 _tokenId, address _referrer, bytes _data) external payable
Extend function Throws if lock is disabled or key does not exist for _recipient. Throws if _recipient == address(0).
Parameters
Name | Type | Description |
---|---|---|
_value | uint256 | the number of tokens to pay for this purchase >= the current keyPrice - any applicable discount (_value is ignored when using ETH) |
_tokenId | uint256 | the id of the key to extend |
_referrer | address | address of the user making the referral |
_data | bytes | arbitrary data populated by the front-end which initiated the sale |
referrerFees
function referrerFees(address _referrer) external view returns (uint256 referrerFee)
Returns the percentage of the keyPrice to be sent to the referrer (in basis points)
Parameters
Name | Type | Description |
---|---|---|
_referrer | address | the address of the referrer |
Return Values
Name | Type | Description |
---|---|---|
referrerFee | uint256 | the percentage of the keyPrice to be sent to the referrer (in basis points) |
setReferrerFee
function setReferrerFee(address _referrer, uint256 _feeBasisPoint) external
Set a specific percentage of the keyPrice to be sent to the referrer while purchasing, extending or renewing a key.
To send a fixed percentage of the key price to all referrers, sett a percentage to address(0)
Parameters
Name | Type | Description |
---|---|---|
_referrer | address | the address of the referrer |
_feeBasisPoint | uint256 | the percentage of the price to be used for this specific referrer (in basis points) |
mergeKeys
function mergeKeys(uint256 _tokenIdFrom, uint256 _tokenIdTo, uint256 _amount) external
Merge existing keys
Parameters
Name | Type | Description |
---|---|---|
_tokenIdFrom | uint256 | the id of the token to substract time from |
_tokenIdTo | uint256 | the id of the destination token to add time |
_amount | uint256 | the amount of time to transfer (in seconds) |
burn
function burn(uint256 _tokenId) external
Deactivate an existing key the key will be expired and ownership records will be destroyed
Parameters
Name | Type | Description |
---|---|---|
_tokenId | uint256 | the id of token to burn |
setGasRefundValue
function setGasRefundValue(uint256 _gasRefundValue) external
Set the value to be refunded to the sender on purchase
Parameters
Name | Type | Description |
---|---|---|
_gasRefundValue | uint256 | price in wei or token in smallest price unit |
gasRefundValue
function gasRefundValue() external view returns (uint256 _gasRefundValue)
_gasRefundValue price in wei or token in smallest price unit
Returns the value/price to be refunded to the sender on purchase
purchasePriceFor
function purchasePriceFor(address _recipient, address _referrer, bytes _data) external view returns (uint256)
returns the minimum price paid for a purchase with these params.
this considers any discount from Unlock or the OnKeyPurchase hook.
updateTransferFee
function updateTransferFee(uint256 _transferFeeBasisPoints) external
Allow a Lock manager to change the transfer fee.
Throws if called by other than a Lock manager
Parameters
Name | Type | Description |
---|---|---|
_transferFeeBasisPoints | uint256 | The new transfer fee in basis-points(bps). Ex: 200 bps = 2% |
getTransferFee
function getTransferFee(uint256 _tokenId, uint256 _time) external view returns (uint256)
Determines how much of a fee would need to be paid in order to transfer to another account. This is pro-rated so the fee goes down overtime.
Throws if _tokenId does not have a valid key
Parameters
Name | Type | Description |
---|---|---|
_tokenId | uint256 | The id of the key check the transfer fee for. |
_time | uint256 | The amount of time to calculate the fee for. |
Return Values
Name | Type | Description |
---|---|---|
[0] | uint256 | The transfer fee in seconds. |
expireAndRefundFor
function expireAndRefundFor(uint256 _tokenId, uint256 _amount) external
Invoked by a Lock manager to expire the user's key and perform a refund and cancellation of the key Throws if called by other than a Lock manager Throws if _keyOwner does not have a valid key
Parameters
Name | Type | Description |
---|---|---|
_tokenId | uint256 | The key id we wish to refund to |
_amount | uint256 | The amount to refund to the key-owner |
cancelAndRefund
function cancelAndRefund(uint256 _tokenId) external
cancel is enabled with a 10% penalty by default on all Locks.
allows the key manager to expire a given tokenId and send a refund to the keyOwner based on the amount of time remaining.
Parameters
Name | Type | Description |
---|---|---|
_tokenId | uint256 | The id of the key to cancel. |
updateRefundPenalty
function updateRefundPenalty(uint256 _freeTrialLength, uint256 _refundPenaltyBasisPoints) external
Allow a Lock manager to change the refund penalty.
Throws if called by other than a Lock manager
Parameters
Name | Type | Description |
---|---|---|
_freeTrialLength | uint256 | The new duration of free trials for this lock |
_refundPenaltyBasisPoints | uint256 | The new refund penaly in basis-points(bps) |
getCancelAndRefundValue
function getCancelAndRefundValue(uint256 _tokenId) external view returns (uint256 refund)
Due to the time required to mine a tx, the actual refund amount will be lower than what the user reads from this call.
Determines how much of a refund a key owner would receive if they issued
Parameters
Name | Type | Description |
---|---|---|
_tokenId | uint256 | the id of the token to get the refund value for. |
Return Values
Name | Type | Description |
---|---|---|
refund | uint256 | the amount of tokens refunded |
isLockManager
function isLockManager(address account) external view returns (bool)
onKeyPurchaseHook
function onKeyPurchaseHook() external view returns (address hookAddress)
Returns the address of the onKeyPurchaseHook
hook.
Return Values
Name | Type | Description |
---|---|---|
hookAddress | address | address of the hook |
onKeyCancelHook
function onKeyCancelHook() external view returns (address hookAddress)
Returns the address of the onKeyCancelHook
hook.
Return Values
Name | Type | Description |
---|---|---|
hookAddress | address | address of the hook |
onValidKeyHook
function onValidKeyHook() external view returns (address hookAddress)
Returns the address of the onValidKeyHook
hook.
Return Values
Name | Type | Description |
---|---|---|
hookAddress | address | address of the hook |
onTokenURIHook
function onTokenURIHook() external view returns (address hookAddress)
Returns the address of the onTokenURIHook
hook.
Return Values
Name | Type | Description |
---|---|---|
hookAddress | address | address of the hook |
onKeyTransferHook
function onKeyTransferHook() external view returns (address hookAddress)
Returns the address of the onKeyTransferHook
hook.
Return Values
Name | Type | Description |
---|---|---|
hookAddress | address | address of the hook |
onKeyExtendHook
function onKeyExtendHook() external view returns (address hookAddress)
Returns the address of the onKeyExtendHook
hook.
Return Values
Name | Type | Description |
---|---|---|
hookAddress | address | the address ok the hook |
onKeyGrantHook
function onKeyGrantHook() external view returns (address hookAddress)
Returns the address of the onKeyGrantHook
hook.
Return Values
Name | Type | Description |
---|---|---|
hookAddress | address | the address ok the hook |
onHasRoleHook
function onHasRoleHook() external view returns (address hookAddress)
Returns the address of the onHasRoleHook
hook.
Return Values
Name | Type | Description |
---|---|---|
hookAddress | address | the address ok the hook |
maxKeysPerAddress
function maxKeysPerAddress() external view returns (uint256)
Return Values
Name | Type | Description |
---|---|---|
[0] | uint256 | the maximum number of key allowed for a single address |
expirationDuration
function expirationDuration() external view returns (uint256)
freeTrialLength
function freeTrialLength() external view returns (uint256)
keyPrice
function keyPrice() external view returns (uint256)
maxNumberOfKeys
function maxNumberOfKeys() external view returns (uint256)
refundPenaltyBasisPoints
function refundPenaltyBasisPoints() external view returns (uint256)
tokenAddress
function tokenAddress() external view returns (address)
transferFeeBasisPoints
function transferFeeBasisPoints() external view returns (uint256)
unlockProtocol
function unlockProtocol() external view returns (address)
keyManagerOf
function keyManagerOf(uint256) external view returns (address)
shareKey
function shareKey(address _to, uint256 _tokenId, uint256 _timeShared) external
Allows the key owner to safely share their key (parent key) by transferring a portion of the remaining time to a new key (child key).
Throws if key is not valid.
Throws if _to
is the zero address
Emit Transfer event
Parameters
Name | Type | Description |
---|---|---|
_to | address | The recipient of the shared key |
_tokenId | uint256 | the key to share |
_timeShared | uint256 | The amount of time shared checks if _to is a smart contract (code size > 0). If so, it calls onERC721Received on _to and throws if the return value is not bytes4(keccak256('onERC721Received(address,address,uint,bytes)')) . |
setKeyManagerOf
function setKeyManagerOf(uint256 _tokenId, address _keyManager) external
Update transfer and cancel rights for a given key
Parameters
Name | Type | Description |
---|---|---|
_tokenId | uint256 | The id of the key to assign rights for |
_keyManager | address | The address to assign the rights to for the given key |
isValidKey
function isValidKey(uint256 _tokenId) external view returns (bool)
Check if a certain key is valid this makes use of the onValidKeyHook if it is set
Parameters
Name | Type | Description |
---|---|---|
_tokenId | uint256 | the id of the key to check validity |
totalKeys
function totalKeys(address _keyOwner) external view returns (uint256 numberOfKeys)
Returns the number of keys owned by _keyOwner
(expired or not)
Parameters
Name | Type | Description |
---|---|---|
_keyOwner | address | address for which we are retrieving the total number of keys |
Return Values
Name | Type | Description |
---|---|---|
numberOfKeys | uint256 | total number of keys owned by the address |
name
function name() external view returns (string _name)
A descriptive name for a collection of NFTs in this contract
supportsInterface
function supportsInterface(bytes4 interfaceId) external view returns (bool)
From ERC165.sol
balanceOf
function balanceOf(address _owner) external view returns (uint256 balance)
In the specific case of a Lock, balanceOf
returns only the tokens with a valid expiration timerange
Return Values
Name | Type | Description |
---|---|---|
balance | uint256 | The number of valid keys owned by _keyOwner |
ownerOf
function ownerOf(uint256 tokenId) external view returns (address _owner)
Returns the owner of the NFT specified by tokenId
.
safeTransferFrom
function safeTransferFrom(address from, address to, uint256 tokenId) external
_Transfers a specific NFT (tokenId
) from one account (from
) to
another (to
).
Requirements:
from
,to
cannot be zero.tokenId
must be owned byfrom
.- If the caller is not
from
, it must be have been allowed to move thisapprove
_
safeTransferFrom
function safeTransferFrom(address from, address to, uint256 tokenId, bytes data) external
transferFrom
function transferFrom(address from, address to, uint256 tokenId) external
an ERC721-like function to transfer a token from one account to another.
Requirements: if the caller is not from
, it must be approved to move this token by
approve
The key manager will be reset to address zero after the transfer
Parameters
Name | Type | Description |
---|---|---|
from | address | the owner of token to transfer |
to | address | the address that will receive the token |
tokenId | uint256 | the id of the token |
lendKey
function lendKey(address from, address to, uint256 tokenId) external
Lending a key allows you to transfer the token while retaining the
ownerships right by setting yourself as a key manager first.
This function can only be called by 1) the key owner when no key manager is set or 2) the key manager.
After calling the function, the _recipent
will be the new owner, and the sender of the tx
will become the key manager.
Parameters
Name | Type | Description |
---|---|---|
from | address | the owner of token to transfer |
to | address | the address that will receive the token |
tokenId | uint256 | the id of the token |
unlendKey
function unlendKey(address _recipient, uint256 _tokenId) external
Unlend is called when you have lent a key and want to claim its full ownership back.
Only the key manager of the token can call this function
Parameters
Name | Type | Description |
---|---|---|
_recipient | address | the address that will receive the token ownership |
_tokenId | uint256 | the id of the token |
approve
function approve(address to, uint256 tokenId) external
getApproved
function getApproved(uint256 _tokenId) external view returns (address operator)
Get the approved address for a single NFT
Throws if _tokenId
is not a valid NFT.
Parameters
Name | Type | Description |
---|---|---|
_tokenId | uint256 | The NFT to find the approved address for |
Return Values
Name | Type | Description |
---|---|---|
operator | address | The approved address for this NFT, or the zero address if there is none |
totalSupply
function totalSupply() external view returns (uint256 _totalKeysCreated)
Returns the total number of keys, including non-valid ones
Return Values
Name | Type | Description |
---|---|---|
_totalKeysCreated | uint256 | the total number of keys, valid or not |
tokenOfOwnerByIndex
function tokenOfOwnerByIndex(address _owner, uint256 index) external view returns (uint256 tokenId)
tokenByIndex
function tokenByIndex(uint256 index) external view returns (uint256)
getRoleAdmin
function getRoleAdmin(bytes32 role) external view returns (bytes32)
Innherited from Open Zeppelin AccessControl.sol
grantRole
function grantRole(bytes32 role, address account) external
revokeRole
function revokeRole(bytes32 role, address account) external
renounceRole
function renounceRole(bytes32 role, address account) external
hasRole
function hasRole(bytes32 role, address account) external view returns (bool)
owner
function owner() external view returns (address owner)
owner()
is provided as an helper to mimick the Ownable
contract ABI.
The Ownable
logic is used by many 3rd party services to determine
contract ownership - e.g. who is allowed to edit metadata on Opensea.
This logic is NOT used internally by the Unlock Protocol and is made available only as a convenience helper.
setOwner
function setOwner(address account) external
isOwner
function isOwner(address account) external view returns (bool isOwner)
migrate
function migrate(bytes _calldata) external
Migrate data from the previous single owner => key mapping to the new data structure w multiple tokens.
when all record schemas are sucessfully upgraded, this function will update the schemaVersion
variable to the latest/current lock version
Parameters
Name | Type | Description |
---|---|---|
_calldata | bytes | an ABI-encoded representation of the params (v10: the number of records to migrate as uint ) |
renewMembershipFor
function renewMembershipFor(uint256 _tokenId, address _referrer) external
Renew a given token only works for non-free, expiring, ERC20 locks
Parameters
Name | Type | Description |
---|---|---|
_tokenId | uint256 | the ID fo the token to renew |
_referrer | address | the address of the person to be granted UDT |
setKeyExpiration
function setKeyExpiration(uint256 _tokenId, uint256 _newExpiration) external
Set the expiration of a key only a lock manager can call this function
Parameters
Name | Type | Description |
---|---|---|
_tokenId | uint256 | the id of the key |
_newExpiration | uint256 | the new timestamp to use |
isRenewable
function isRenewable(uint256 tokenId, address referrer) external view returns (bool)
helper to check if a key is currently renewable it will revert if the pricing or duration of the lock have been modified unfavorably since the key was bought(price increase or duration decrease). It will also revert if a lock is not renewable or if the key is not ready for renewal yet (at least 90% expired).
Parameters
Name | Type | Description |
---|---|---|
tokenId | uint256 | the id of the token to check |
referrer | address | the address where to send the referrer fee |
Return Values
Name | Type | Description |
---|---|---|
[0] | bool | true if the terms has changed |
AllowListHook
MerkleRootSet
event MerkleRootSet(address lockAddress, bytes32 root)
roots
mapping(address => bytes32) roots
NOT_AUTHORIZED
error NOT_AUTHORIZED()
setMerkleRootForLock
function setMerkleRootForLock(address lockAddress, bytes32 root) public
keyPurchasePrice
function keyPurchasePrice(address, address recipient, address, bytes proof) external view returns (uint256 minKeyPrice)
onKeyPurchase
function onKeyPurchase(uint256, address, address, address, bytes, uint256, uint256) external
No-op but required
bytesToBytes32Array
function bytesToBytes32Array(bytes data) internal pure returns (bytes32[])