plasma-research
plasma-research copied to clipboard
try CCCryptorFinal(cryptor, &outBytes + outLength, outBytes.count, &outLength).check()
Create backlog for offchain services of plasma operator server, corresponding https://docs.google.com/document/d/19uQakHh6-bniFqDJ_sGwqLdcbe9py9dF2o_4yfibTkE/edit#heading=h.4gh2e9vh5qrt
Depends on https://github.com/BANKEX/plasma-research/issues/30 - No need to write in smart contract storage who and how many deposited, use events. - Maybe no need to store even total amounts of tokens...
- Use solidity assembler to gain max performance - Sample impl: https://github.com/zcoinofficial/solidity-BigNumber/blob/master/contracts/BigNumber.sol
Structure: ```solidity struct Transaction { Input[] inputs, Output[] outputs, uint64 maxBlockIndex, Signatures[] signatures } ``` Merkelized:
Depends from #41 Deposit method for ETH: ```solidity function deposit( OrderedLinkedListItem depositSlot ) external payable returns(bool); ``` Deposit method for ERC20+ERC721: ```solidity function depositToken( OrderedLinkedListItem depositSlot, address from, uint amountOrTokenId...
- [ ] watch for eth events - [ ] handle deposits - [ ] handle withdrawals - [ ] handle challenges
# PrimeHash game for Plasma Prime We need to use the mapping between integers and prime numbers for some cases in Plasma Prime: * calculating $H_{prime}$ for Wesolowski proof *...
Depends on https://github.com/BANKEX/plasma-research/issues/30 ### Block structure for solidity Cut hashes up to 160 bits. It provides us 80bit reliability. ```solidity struct MerkleProof { uint160 from, bytes proof, uint index }...
Try CLI tools to choose a suitable package