@radzor/nft-mint
Mint NFTs on EVM-compatible chains via raw JSON-RPC. Supports single and batch minting, token URI retrieval, and approval management.
Web3 & Blockchainv0.1.0typescriptpythonServernftmintevmerc721web3blockchaintokenby Radzor
Install
View source on GitHub →$npx radzor@latest add nft-mint
⚠ Constraints: Requires a funded private key for write operations. Read operations (getTokenURI) only need rpcUrl and contractAddress. Gas estimation is performed automatically but chainId must match the RPC endpoint.
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| rpcUrl* | string | — | JSON-RPC endpoint URL (e.g. Infura, Alchemy, or local node).ETH_RPC_URL |
| contractAddress* | string | — | Deployed ERC-721 contract address. |
| privateKey* | string | — | Private key for signing transactions (hex, with or without 0x prefix).ETH_PRIVATE_KEY |
| chainId | number | 1 | Chain ID (1 = mainnet, 5 = goerli, 137 = polygon, etc.). |
rpcUrl*string
JSON-RPC endpoint URL (e.g. Infura, Alchemy, or local node).