Conversation

My thoughts: use optimistic rollup, but only submit hashes (or something equivalent) to get around relative-chain-speed issues.
Quote Tweet
A fun/interesting cross-chain questions: SC is a smart-contract Ethereum and P is a program on Solana. Alice is supposed to send 1 Solana based token (SPL token) A to P, and has an ERC20 token E in SC. SC is supposed to release E if she does send A to P. Can you design it?
Show replies
Replying to and
Rollups are lazy evaluated safety. I think a way to use that is push expensive compute that doesn't have a zk-proof and keep everything else executing on chain. For a solana light client on ethereum, it makes sense to rollup ed25519 signature checks, but not anything else.
1
4