๋ชจ๋๋ฅผ ์ํ ๋ชจ๋์ EVM ๋ธ๋ก์ฒด์ธ BApp ๊ฐ๋ฐ - ์ ๋ฌธ
์ด ๊ฐ์๋ฅผ ํตํด ERC20(Coin), ERC721(NFT) ์ฌ์ฉ๋ฒ๊ณผ ๊ฐ๋จํ NFT Presale ์๋น์ค๋ฅผ ๋ง๋ค์ด๋ด ๋๋ค. Opensea์ Metamask ์ฌ์ฉ๋ฒ์ ์ตํ๊ณ ๊ฐ๋ฐ ๋ ธํ์ฐ์ ์ด๋ก ์ ๊ด๋ จํ ์ง์๋ ๋๋ ๋๋ฆฝ๋๋ค.

- ํด๊ฒฐ
npx hardhat test ./test/Greeter.test ์คํ์ ์๋ฌ๊ฐ ๋ฉ๋๋ค.
npx hardhat test ./test/Greeter.test ์คํ์ ์๋ฌ๊ฐ ๋ฉ๋๋ค.import { expect } from 'chai'; import { ethers, waffle
๋ธ๋ก์ฒด์ธSmart Contractnft์ด๊ฒฝ์
ใป
1
256
2
- ํด๊ฒฐ
๋ฌด์จ ์๋ฌ์ธ์ง ๋ชจ๋ฅด๊ฒ ์ต๋๋ค
TypeError: Function needs to specify overridden contract "ERC721URIStorage". --> contracts/Monkey.sol:93:27: |93 | )
๋ธ๋ก์ฒด์ธSmart Contractnftํ๋ฃจ๋
ใป
1
343
1
- ํด๊ฒฐ
opensea ๋ฏผํ
์ ์ ํ์๋๋ ๋ฏผํ ๋์ ์คํ์์์ nft๋ฅผ ํ์ธํ ์ ์์๋๋ฐ ์ง๊ธ์๋ฏผํ ํ์๋ nft๋ฅผ ํด๋ฆญํด๋ณด๋ฉด ์ด๋ฏธ์ง๋ ๋ค์ด์ค์ง์๊ณ description์ ๋ด์ฉ๋ ์ถ๊ฐ๋์ง์๊ณ ์์ต๋๋ค.์ด๋ค๊ฒ ๋ฌธ์ ์ผ๊น์ ?
๋ธ๋ก์ฒด์ธSmart Contractnft์ก์ฐ์
ใป
0
383
2
- ํด๊ฒฐ
import "hardhat/console.sol"; ์ด๋์ ์๋์?
import "hardhat/console.sol"; ์ hardhat ํด๋ ์์ฑ ๋ฐ console.sol ํ์ผ ์์ฑ์ ๋ํ ๋ด์ฉ์ด ์๋ ๊ฒ ๊ฐ์ต๋๋ค.ํ์ธ ๋ถํ๋๋ฆฝ๋๋ค.
๋ธ๋ก์ฒด์ธSmart Contractnftsafecoin365
ใป
0
381
2






