BraveFrontierHeros

ERC721ConverterWithMCHExtension

0x9f90324b0da6adee99aebb467faf20278767d76a
ERC165
constructor

ERC721ConverterWithMCHExtension

nonpayable

Inputs

(void)

Outputs

(void)
     constructor () internal {
         _registerInterface(_INTERFACE_ID_ERC165);
     }
 
function

supportsInterface

view

Inputs

ParameterTypeDescription
interfaceIdbytes4

Outputs

TypeDescription
bool
     function supportsInterface(bytes4 interfaceId) external view returns (bool) {
         return _supportedInterfaces[interfaceId];
     }
 
ERC173
function

owner

view

Inputs

(void)

Outputs

TypeDescription
address
     function owner() public view returns (address) {
         return _owner;
     }
 
ERC721ConverterWithMCHExtension
function

updateBob

nonpayable
Restricted (onlyOperator)

Inputs

ParameterTypeDescription
_newBobaddress

Outputs

(void)
     function updateBob(address _newBob) external onlyOperator() {
         Bob = IERC721Mintable(_newBob);
     }
 
function

updateAlice

nonpayable
Restricted (onlyOperator)

Inputs

ParameterTypeDescription
_newAliceaddress

Outputs

(void)
     function updateAlice(address _newAlice) external onlyOperator() {
         Alice = IMCHExtension(_newAlice);
     }
 
function

draftBobTokens

nonpayable
Restricted (onlyOperator)

Inputs

ParameterTypeDescription
_bobTokenIdsuint256[]
_aliceTokenIdsuint256[]

Outputs

(void)
     function draftBobTokens(uint256[] memory _bobTokenIds, uint256[] memory _aliceTokenIds) public onlyOperator() {
         require(_aliceTokenIds.length == _bobTokenIds.length);
         for (uint256 i = 0; i < _aliceTokenIds.length; i++) {
             draftBobToken(_bobTokenIds[i], _aliceTokenIds[i]);
         }
     }
 
function

draftBobToken

nonpayable
Restricted (onlyOperator)

Inputs

ParameterTypeDescription
_bobTokenIduint256
_aliceTokenIduint256

Outputs

(void)
     function draftBobToken(uint256 _bobTokenId, uint256 _aliceTokenId) public onlyOperator() {
         require(_idMapBobToAlice[_bobTokenId] == 0, "_bobTokenId is already assignd");
         require(_idMapAliceToBob[_aliceTokenId] == 0, "_aliceTokenId is already assignd");
 
         _idMapBobToAlice[_bobTokenId] = _aliceTokenId;
         _idMapAliceToBob[_aliceTokenId] = _bobTokenId;
     }
 
function

draftAliceTokens

nonpayable
Restricted (onlyOperator)

Inputs

ParameterTypeDescription
_aliceTokenIdsuint256[]
_bobTokenIdsuint256[]

Outputs

(void)
     function draftAliceTokens(uint256[] memory _aliceTokenIds, uint256[] memory _bobTokenIds) public onlyOperator() {
         require(_aliceTokenIds.length == _bobTokenIds.length);
         for (uint256 i = 0; i < _aliceTokenIds.length; i++) {
             draftAliceToken(_aliceTokenIds[i], _bobTokenIds[i]);
         }
     }
 
function

draftAliceToken

nonpayable
Restricted (onlyOperator)

Inputs

ParameterTypeDescription
_aliceTokenIduint256
_bobTokenIduint256

Outputs

(void)
     function draftAliceToken(uint256 _aliceTokenId, uint256 _bobTokenId) public onlyOperator() {
         require(_idMapAliceToBob[_aliceTokenId] == 0, "_aliceTokenId is already assignd");
         require(_idMapBobToAlice[_bobTokenId] == 0, "_bobTokenId is already assignd");
 
         _idMapAliceToBob[_aliceTokenId] = _bobTokenId;
         _idMapBobToAlice[_bobTokenId] = _aliceTokenId;
     }
 
function

convertFromBobToAlice

nonpayable
Restricted (whenNotPaused)

Inputs

ParameterTypeDescription
_tokenIduint256

Outputs

(void)
     function convertFromBobToAlice(uint256 _tokenId) public whenNotPaused() {
         Bob.safeTransferFrom(msg.sender, address(this), _tokenId);
 
         uint256 convertTo = getAliceTokenID(_tokenId);
         if (Alice.isAlreadyMinted(convertTo)) {
             Alice.safeTransferFrom(address(this), msg.sender, convertTo);
         } else {
             Alice.mintExtensionAsset(msg.sender, convertTo);
         }
     }
 
function

convertFromAliceToBob

nonpayable
Restricted (whenNotPaused)

Inputs

ParameterTypeDescription
_tokenIduint256

Outputs

(void)
     function convertFromAliceToBob(uint256 _tokenId) public whenNotPaused() {
         Alice.safeTransferFrom(msg.sender, address(this), _tokenId);
 
         uint256 convertTo = getBobTokenID(_tokenId);
         if (Bob.exist(convertTo)) {
             Bob.safeTransferFrom(address(this), msg.sender, convertTo);
         } else {
             Bob.mint(msg.sender, convertTo);
         }
     }
 
function

getBobTokenID

view

Inputs

ParameterTypeDescription
_aliceTokenIduint256

Outputs

TypeDescription
uint256
     function getBobTokenID(uint256 _aliceTokenId) public view returns(uint256) {
         return _idMapAliceToBob[_aliceTokenId];
     }
 
function

getAliceTokenID

view

Inputs

ParameterTypeDescription
_bobTokenIduint256

Outputs

TypeDescription
uint256
     function getAliceTokenID(uint256 _bobTokenId) public view returns(uint256) {
         return _idMapBobToAlice[_bobTokenId];
     }
 
ERC721Holder
function

onERC721Received

nonpayable

Inputs

ParameterTypeDescription
address
address
uint256
bytes

Outputs

TypeDescription
bytes4
     function onERC721Received(address, address, uint256, bytes memory) public returns (bytes4) {
         return this.onERC721Received.selector;
     }
 
IERC173
event

OwnershipTransferred

Inputs

ParameterTypeDescription
previousOwneraddress
newOwneraddress

Outputs

(void)
     event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
Operatable
event

Unpaused

Inputs

ParameterTypeDescription
accountaddress

Outputs

(void)
     event Unpaused(address account);
 
event

Paused

Inputs

ParameterTypeDescription
accountaddress

Outputs

(void)
     event Paused(address account);
 
event

OperatorRemoved

Inputs

ParameterTypeDescription
accountaddress

Outputs

(void)
     event OperatorRemoved(address indexed account);
 
event

OperatorAdded

Inputs

ParameterTypeDescription
accountaddress

Outputs

(void)
     event OperatorAdded(address indexed account);
 
function

withdrawEther

nonpayable
Restricted (onlyOperator)

Inputs

(void)

Outputs

(void)
     function withdrawEther() public onlyOperator() {
         msg.sender.transfer(address(this).balance);
     }
 
function

transferOwnership

nonpayable
Restricted (onlyOperator)

Inputs

ParameterTypeDescription
_newOwneraddress

Outputs

(void)
     function transferOwnership(address _newOwner) public onlyOperator() {
         _transferOwnership(_newOwner);
     }
 
function

removeOperator

nonpayable
Restricted (onlyOperator)

Inputs

ParameterTypeDescription
accountaddress

Outputs

(void)
     function removeOperator(address account) public onlyOperator() {
         operators.remove(account);
         emit OperatorRemoved(account);
     }
 
function

addOperator

nonpayable
Restricted (onlyOperator)

Inputs

ParameterTypeDescription
accountaddress

Outputs

(void)
     function addOperator(address account) public onlyOperator() {
         operators.add(account);
         emit OperatorAdded(account);
     }
 
function

pause

nonpayable
Restricted (onlyOperator, whenNotPaused)

Inputs

(void)

Outputs

(void)
     function pause() public onlyOperator() whenNotPaused() {
         _paused = true;
         emit Paused(msg.sender);
     }
 
function

unpause

nonpayable
Restricted (onlyOperator, whenPaused)

Inputs

(void)

Outputs

(void)
     function unpause() public onlyOperator() whenPaused() {
         _paused = false;
         emit Unpaused(msg.sender);
     }
 
function

paused

view

Inputs

(void)

Outputs

TypeDescription
bool
     function paused() public view returns (bool) {
         return _paused;
     }
 
function

isOperator

view

Inputs

ParameterTypeDescription
accountaddress

Outputs

TypeDescription
bool
     function isOperator(address account) public view returns (bool) {
         return operators.has(account);
     }
 
function

Bob

view

Inputs

(void)

Outputs

TypeDescription
address
     IERC721Mintable public Bob;
 
function

Alice

view

Inputs

(void)

Outputs

TypeDescription
address
     IMCHExtension public Alice;