Touched disallowed storage slots #1008
-
I'm having an issue when using
Error message:
Code snippet:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
So if you are deploying to a test net where you aren't an operator should be done with the If you are deploying on era sepolia, the addresses are included in the SDK. https://github.com/matter-labs/zksync-sso/blob/main/packages/auth-server/stores/era-sepolia.json If you are managing your own chain, you'll need to take the addresses where you deploy these and follow the instructions here: https://github.com/matter-labs/zksync-sso/tree/main/packages/auth-server#how-to-deploy-to-a-new-chain I hope this helps! This is an active area of documentation and development, so while the docs cover the Era sepolia testnet and local node the custom chain docs are still a work-in-progress (which includes contributing addresses back to the SDK for others to use!) Let me know if you have more questions! |
Beta Was this translation helpful? Give feedback.
So if you are deploying to a test net where you aren't an operator should be done with the
--direct
or--noProxy
flag. The default deployment includes proxies for the modules, which causes this failure. I just made a change to explain this within the contracts repo, but it's not well explained yet in the public documentation. https://github.com/matter-labs/zksync-sso-clave-contracts/blob/main/README.md#deploymentIf you are deploying on era sepolia, the addresses are included in the SDK. https://github.com/matter-labs/zksync-sso/blob/main/packages/auth-server/stores/era-sepolia.json
If you are managing your own chain, you'll need to take the addresses where you deploy these and follow the…