Are second layer solutions fair to accounts during Hard Spoons and Airdrops?

how could we ensure the accuracy of token Airdrops; when tokens are tied up in state channels and not accurately visible in the main chain’s state?

The tied-up tokens are visible in the main chain state, since whatever is locked into a state channel (the “state deposit”) must be locked somewhere; the main thing we have to worry about is if the state deposit holder isn’t aware of whatever is airdropped into it.

This problem also exists outside of L2 solution. If, for e.g., you hold ether in a very limited-functionality multisig which only contains functionality to spend ether, and an ERC-20 token gets airdropped based on eth balance and the multisig receives some amount of the token, it can never spend it.

Most modern multisigs like gnosis don’t have this problem because they’re designed to have the same functionality as an EoA (as long as enough owners sign off). One of the advantages of the constructions in Counterfactual: Generalized State Channels where the state deposit holder is a multisig wallet, is that if some fancy new thing gets airdropped into a state deposit holder, at the very least, in the case where all the parties to the state channel cooperate, they can spend the fancy new thing.

For state channels, then, a remaining open question then is how to prevent one single party to the channel from not agreeing to spend the airdropped thing, hence “holding it hostage”.

For plasma, even the first solution does not apply, since there’s no mechanism for the contract to safely execute arbitrary commands. In the very specific case of plasma cash without splitting, we could create this mechanism by making each deposit create a new contract, and a successful exit simply assign ownership of the contract to the exiter. Even this technically doesn’t cover all cases, for e.g., a pull-based airdrop where you have 3 days to claim some token (since 3 days is not enough to claim ownership of the contract). An alternative might be to assign the right to make CALLs from the plasma contract outside of a specified blacklist to the operator or to some other party or to a DAO, and having the value of airdrops accrue to that entity. Arguably this situation is analogous to any smart contract that locks collateral, eg MakerDAO CDPs.

1 Like