Challenge 1
- Solidity cleverly implements mapping.
- It checks for the next vacant slot number, does keccak256 of the slot number & starts storing mapping values from the slot number (Simplified).
- But in our precompile implementation, we need to do something along those lines to enable multiple mappings supported with a single smart contract address.
- There, we decided to give the developer the control of slot initiation to support multiple mappings with the
key
parameter.
Challenge 2
- While dealing with Eddsa25519Verify precompile. Initially, we returned
bool isValid
.
- Later, while testing, noticed that we were obtaining false irrespective of validity.
- Thanks to Ava Devs, we figured out a way and decided to use
string memory isValid
as a return statement.
Challenge 3
- While incorporating KYC, i.e., allowing only people who have completed their KYC to transact on the blockchain.
- We found no way to implement it as a Smartcontract. These things must be within the execution layer.
- After extensive research by one of our teammates, we found documentation relevant.
"txAllowListConfig": {
"blockTimestamp": 0,
"adminAddresses": ["0x8db97C7cEcE249c2b98bDC0226Cc4C2A57BF52FC"]
}
Challenge 4
- Random numbers can not be generated the same in every node running it.
- Each node gets a different random number when calling the same function.
- So, nodes will never agree on the state of the blockchain.
Challenge 5
- Installation of avalanche go & avalanche precompile evm in Windows Subsystem for Linux 2
- Wrong genesis references given while launching the network caused the network to shut down multiple times in testing.
Challenge 6
- Adding meta mask support to our nextJs app.
- Sign message implementation from meta mask SDK.