0
votes

Running metaplex version to 1.2.0, and using 3 basic NFT's (stored on Arweave). When minting on devnet I receive a Timeout Error.

I have tried minting on Metaplex's candy-machine-ui and a separate ui that uses javascript. Both receive same error. Timeout Error caught Error: Timed out awaiting confirmation on transaction at sendSignedTransaction

Tried downgrading metaplex to v1.1.1; still, receive Timeout Error.

Tried the following RPC Hosts, still received Timeout Error: -https://explorer-api.devnet.solana.com -https://metaplex.devnet.rpcpool.com/

The metaplex.devnet.rpcpool (came stock with candy-machine-ui) actually gives me CORS errors, but regardless still no mint.

Network has always been set to devnet

Tried the follwoing Candy Machine IDs: 64EFEgBcLZHhdb3Tr6BzCRKX23ktS2Ltk42RC3z9CPLP & 492Mhv2Kx6Mp91D1xyrXgDA9ZKeeXSRg2rWuN6LA2Qg6

Tried these config.json:

#candy-machine-ui

{
  "compilerOptions": {
    "target": "es5",
    "lib": [
      "dom",
      "dom.iterable",
      "esnext"
    ],
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "noFallthroughCasesInSwitch": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": true,
    "jsx": "react-jsx"
  },
  "include": [
    "src"
  ]
}
#custom ui

{
    "price": 0.1,
    "number": 3,
    "gatekeeper": null,
    "solTreasuryAccount": "MY_WALLET_ADDY",
    "splTokenAccount": null,
    "splToken": null,
    "goLiveDate": "25 Dec 2021 00:00:00 GMT",
    "endSettings": null,
    "whitelistMintSettings": null,
    "hiddenSettings": null,
    "storage": "arweave",
    "ipfsInfuraProjectId": null,
    "ipfsInfuraSecret": null,
    "awsS3Bucket": null,
    "noRetainAuthority": false,
    "noMutable": false
}