We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{apicall.map((nft, i) => { var owner = nft.wallet.toLowerCase(); if (owner.indexOf(nft.holder) !== -1) { async function stakeit() { vaultcontract.methods.stake([nft.tokenId]).send({ from: account }); } return (
The text was updated successfully, but these errors were encountered:
No branches or pull requests
{apicall.map((nft, i) => {
var owner = nft.wallet.toLowerCase();
if (owner.indexOf(nft.holder) !== -1) {
async function stakeit() {
vaultcontract.methods.stake([nft.tokenId]).send({ from: account });
}
return (
<img className="card-img-top" src={nftpng + nft.tokenId + '.png'} alt="" />
Net2Dev Collection NFT #{nft.tokenId}
Status<p style={{ color: "#39FF14", fontWeight: "bold", textShadow: "1px 1px 2px #000000" }}>Ready to Stake
<Button style={{ marginLeft: '2px', backgroundColor: "#ffffff10" }} onClick={stakeit}>Stake it
)}})}
The text was updated successfully, but these errors were encountered: