Skip to content

Commit 67a2b37

Browse files
authored
Merge pull request #656 from zama-ai/poppyseedDev-patch-2
docs: update first_smart_contract.md
2 parents 1777fc4 + 9cf752e commit 67a2b37

File tree

1 file changed

+0
-32
lines changed

1 file changed

+0
-32
lines changed

docs/getting_started/first_smart_contract.md

-32
Original file line numberDiff line numberDiff line change
@@ -164,38 +164,6 @@ The test file demonstrates key concepts for testing fhEVM smart contracts:
164164
- Handle asynchronous operations properly with async/await
165165
- Set up proper encryption instances for testing encrypted values
166166

167-
### No constant nor immutable encrypted state variables
168-
169-
Never use encrypted types for constant or immutable state variables, even if they should actually stay constants, or else any transaction involving those will fail. This is because ciphertexts should always be stored in the privileged storage of the contract (see paragraph 4.4 of [whitepaper](../../fhevm-whitepaper.pdf)) while constant and immutable variables are just appended to the bytecode of the deployed contract at construction time.
170-
171-
❌ So, even if `a` and `b` should never change after construction, the following example :
172-
173-
```solidity
174-
contract C {
175-
euint32 internal constant a = TFHE.asEuint32(42);
176-
euint32 internal immutable b;
177-
178-
constructor(uint32 _b) {
179-
b = TFHE.asEuint32(_b);
180-
TFHE.allowThis(b);
181-
}
182-
}
183-
```
184-
185-
✅ Should be replaced by this snippet:
186-
187-
```solidity
188-
contract C {
189-
euint32 internal a = TFHE.asEuint32(42);
190-
euint32 internal b;
191-
192-
constructor(uint32 _b) {
193-
b = TFHE.asEuint32(_b);
194-
TFHE.allowThis(b);
195-
}
196-
}
197-
```
198-
199167
## **Next steps**
200168

201169
Congratulations! You’ve configured and written your first confidential smart contract. Here are some ideas to expand your knowledge:

0 commit comments

Comments
 (0)