NEWTON
Asked
4 months ago
177
views
0
following this page from the docs https://starknet.io/docs/hello_starknet/intro.html I copied the code, compiled it using starknet compile, and when I go to declare it using starknet declare Im getting Status code: 500; text: {"code": "StarknetErrorCode.ENTRY_POINT_NOT_FOUND_IN_CONTRACT", "message": "Entry point <address>caed693fa4008dcdb4963b3 not found in contract with class hash <address>975148f6af3e9abddfdc701."} Any help would be appreciated.
This question was originally posted on StarkNet Discord
Newton
asked
4 months ago
0
Accepted answer
seems your old default wallet is broken, probably because its from pre 0.10.0?
I think an older version wallet is causing it. I tryied to deployed a new wallet with
starknet deploy account
--account=coburn
and updated my default in
~/starknet_wallets.json to the new one and it worked for me.
and
starknet declare --contract contract_compiled.json
This answer was originally posted on StarkNet Discord
Newton
answered
4 months ago
StarknetPy Error in get_balance_sync (StarknetErrorCode.ENTRY_POINT_NOT_FOUND_IN_CONTRACT)
An error “AssertionError: Sender must be passed explicitly when making a direct declaration using —no_wallet.” using the new nile?
How to submit a StarkNet contract?
Checking result of an L1 -> L2 message/invoke in Starknet
Is there optimistic parallelism in StarkNet?
Can anyone point me to Pedersen, Rescue references? StarkNet / Cairo Lang
Testing Starknet Cairo contract function with address
Which is this extension that shows you errors before compilation ser?
How can I use start_prank with deploy_contract?
Does starknet have name service?
Abi.encode and Abi.decode in Cairo?
What is an abstract account? For example: StarkNet Account Abstraction
signing a message using account.signMessage(data) | starknet.js
Are there situations in which we prefer declaring variables as `local` vs `tempvar`?