Aztec-Starter contract deployment not working locally

I am using this monorepo to try out some deployments and function calls: GitHub - AztecProtocol/aztec-starter: A simple aztec contract + test to get started..

Somehow the contract deployment is working if i use it in github codespaces, but whenever i try it locally (of course running the newest aztec sandbox version), i get the following error:

ERROR: foundation:retry Error while retrying JsonRpcClient request pxe_simulateTx to http://localhost:8080: Error: Error 500 from server http://localhost:8080 on pxe_simulateTx: No contract instance found for address 0x2eedf41e8212defa941cd3c327ec530f7ab5f38c9450098235e869c7e6e894c3

Aztec Sandbox log shows me:

ERROR: pxe:service Error: Error: No contract instance found for address 0x2eedf41e8212defa941cd3c327ec530f7ab5f38c9450098235e869c7e6e894c3

1 Like

i see two possible errors, out of my own personal experience, (1) the contract isn’t registered (which requires an extra step, but when deploying by default it’s registered), or (2) the account contract from which you’re interacting with it isn’t registered, and something is calling this account contract, creating the error you see there.

to debug, please make sure if that’s the actual Contract address, or one of the Account Contracts you’re using.

1 Like

Thank you very much!