Coming Soon.

Blazing Development, Blockchain Specialists

Web 3.0 Full Stack Developers

We are the next generation in Web Development. We use the latest technologies and we are always up-to-date!

Contact us today to get started!
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Solidity


function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
   uint256 ownerTokenCount = balanceOf(_owner);
   uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  } 
  
 

React

.rect {
background: linear-gradient(
-119deg,
$gray 0%,
$dark-gray 100%); }