Ошибка при создании конфетной машины после успешной загрузки более 2000 NFT с использованием загрузки метаплексов в Solana DEVNET?
Я использую metaplex для создания конфетной машины, и я успешно загрузил более 2000 NFT в сеть solana.
Я использую СРЕДУ DEVNET.
При запуске команды create_candy_machine и при проверке я получаю следующую ошибку при запуске
metaplex verify --keypair /Users/aman/.config/solana/devnet_nov_6.json
(node:7078) UnhandledPromiseRejectionWarning: Error: failed to get info about account XXXXXXXXXXXMY ADDRESSXXXXXXXXXXXXXXXXXXX: FetchError: Invalid response body while trying to fetch https://api.devnet.solana.com/: incorrect data check
at Connection.getAccountInfo (/snapshot/js/packages/cli/node_modules/@solana/web3.js/lib/index.cjs.js:3794:13)
at processTicksAndRejections (internal/process/task_queues.js:95:5)
(Use `metaplex --trace-warnings ...` to show where the warning was created)
(node:7078) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:7078) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
Создать команду Candy Machine-
метаплекс create_candy_machine -k /Users/aman/.config/solana/devnet_nov_6.json -e devnet -p 0.1
Transaction simulation failed: Error processing Instruction 0: custom program error: 0x139
Program cnayAnrLdajq1Ssp1z8xaDsB8dxe7u4HL5Nxi2a5WXZ invoke [1]
Program 11111111111111111111111111111111 invoke [2]
Program 11111111111111111111111111111111 success
Program log: Custom program error: 0x139
Program cnayAnrLdajq1Ssp1z8xaDsB8dxe7u4HL5Nxi2a5WXZ consumed 18798 of 200000 compute units
Program cnayAnrLdajq1Ssp1z8xaDsB8dxe7u4HL5Nxi2a5WXZ failed: custom program error: 0x139
Translating error SendTransactionError: failed to send transaction: Transaction simulation failed: Error processing Instruction 0: custom program error: 0x139
at Connection.sendEncodedTransaction (/snapshot/js/packages/cli/node_modules/@solana/web3.js/lib/index.cjs.js:4896:13)
at processTicksAndRejections (internal/process/task_queues.js:95:5)
aman@Amans-Air cli % metaplex create_candy_machine -k /Users/aman/.config/solana/devnet_nov_6.json -e devnet -p 1
Transaction simulation failed: Error processing Instruction 0: custom program error: 0x139
Program cnayAnrLdajq1Ssp1z8xaDsB8dxe7u4HL5Nxi2a5WXZ invoke [1]
Program 11111111111111111111111111111111 invoke [2]
Program 11111111111111111111111111111111 success
Program log: Custom program error: 0x139
Program cnayAnrLdajq1Ssp1z8xaDsB8dxe7u4HL5Nxi2a5WXZ consumed 18798 of 200000 compute units
Program cnayAnrLdajq1Ssp1z8xaDsB8dxe7u4HL5Nxi2a5WXZ failed: custom program error: 0x139
Translating error SendTransactionError: failed to send transaction: Transaction simulation failed: Error processing Instruction 0: custom program error: 0x139
at Connection.sendEncodedTransaction (/snapshot/js/packages/cli/node_modules/@solana/web3.js/lib/index.cjs.js:4896:13)
at processTicksAndRejections (internal/process/task_queues.js:95:5)
at async Connection.sendRawTransaction (/snapshot/js/packages/cli/node_modules/@solana/web3.js/lib/index.cjs.js:4855:20)
at async Object.sendAndConfirmRawTransaction (/snapshot/js/packages/cli/node_modules/@solana/web3.js/lib/index.cjs.js:6745:21)
at async Provider.send (/snapshot/js/packages/cli/node_modules/@project-serum/anchor/dist/cjs/provider.js:84:22)
at async Object.rpc [as initializeCandyMachine] (/snapshot/js/packages/cli/node_modules/@project-serum/anchor/dist/cjs/program/namespace/rpc.js:11:31) {
logs: [
'Program cnayAnrLdajq1Ssp1z8xaDsB8dxe7u4HL5Nxi2a5WXZ invoke [1]',
'Program 11111111111111111111111111111111 invoke [2]',
'Program 11111111111111111111111111111111 success',
'Program log: Custom program error: 0x139',
'Program cnayAnrLdajq1Ssp1z8xaDsB8dxe7u4HL5Nxi2a5WXZ consumed 18798 of 200000 compute units',
'Program cnayAnrLdajq1Ssp1z8xaDsB8dxe7u4HL5Nxi2a5WXZ failed: custom program error: 0x139'
]
}
(node:7119) UnhandledPromiseRejectionWarning: Error
at Function.parse (/snapshot/js/packages/cli/node_modules/@project-serum/anchor/dist/cjs/error.js:31:20)
at Object.rpc [as initializeCandyMachine] (/snapshot/js/packages/cli/node_modules/@project-serum/anchor/dist/cjs/program/namespace/rpc.js:16:58)
at processTicksAndRejections (internal/process/task_queues.js:95:5)
(Use `metaplex --trace-warnings ...` to show where the warning was created)
(node:7119) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:7119) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
Я не могу понять, есть ли ограничение в devnet или я что-то делаю не так?
заранее спасибо