我已经运行了npm run check_txns--dir=minted,但我一直收到错误。你们能帮我一下吗?
moon@Jungs-MBPcreate-10k-nft-collection-2.0.0%npm run check_txns--dir=minted
10k-collection-video@2.0.0check_txns/Users/moon/Downloads/create-10k-nft-collection-2.0.0节点utils/nftport/checkTxns%npm_config_dir%
请指定要检查的目录。使用";铸造的";或";揭示";npm ERR!代码ELIFECYCLEnpm ERR!错误号1npm ERR!10k-collection-video@2.0.0check_txns:node utils/nftport/checkTxns %npm_config_dir%
npm ERR!退出状态1npm ERR!npm ERR!在处失败10k-collection-video@2.0.0check_txns脚本。npm ERR!这可能不是npm的问题。上面可能有额外的日志输出。
我已经运行了npm run check_txns--dir=minted,但我一直收到错误。你们能帮我一下吗?
问题出在package.json上。请记住,视频中解释的人使用的是windows。如果你有Mac,你必须编辑package.json并将%符号切换为$符号。此外,您还必须删除参数末尾的$符号。你的代码应该是这样的:
"mint": "node utils/nftport/mint $npm_config_start $npm_config_end",
"reveal": "node utils/nftport/revealNFTs $npm_config_start $npm_config_end",
"check_txns": "node utils/nftport/checkTxns $npm_config_dir",
"refresh_os": "node utils/functions/refreshOpensea $npm_config_start
我希望它对你有用!:(