NEWTON
Asked
6 months ago
9
views
0
I am trying to index into an array in cairo, and getting the following error:
Unknown value for memory cell at address 13:2
The line of code throwing the error is:
let item = arr[index]
ㅤ This question was originally posted on Triality
0
You are attempting to access an index in the array that is out of bounds. Make sure that index
is within the bounds of the array (between 0 and arr
length - 1)
ㅤ This answer was originally posted on Triality
answered
6 months ago
How to fix `bud_ptr`
Cairo error: Unknown identifier 'bitwise_ptr' when using keccak
Cairo: Getting the zero address
Cairo 0.10.0 Error: Cannot unpack return value error
Cairo: How do I initialize an array in cairo
Cairo: How do I find the current contract's address?
Cairo Error: Unexpected token Token('LPAR', '('). Expected: identifier.
What does this error means? (AssertionError: assert_not_zero failed: 0 = 0.)
Can you explain Cairo v0.10 usage functions as expressions?
What’s the difference between Account Abstraction (AA) and Externally Owned Accounts (EOA)?
ApeWorX: Using ape starknet accounts list
Why will I use events in Cairo language?
What is the difference between tempvar/let in Cairo Lang? How to use allow_locals and local?
Is there anything wrong with the testnet?