In order to implement the Acala Staking Derivative protocol, our parachain need to access multiple accounts in order to workaround the limitations of nominators per account.
Our initial plan is use utility.as_derivative for that. But that is only accessible via Transact.
We should have XCM to achieve similar result.
Another could be useful one is utility.batch_all to perform multiple XCM actions atomically.
In order to implement the Acala Staking Derivative protocol, our parachain need to access multiple accounts in order to workaround the limitations of nominators per account.
Our initial plan is use
utility.as_derivative
for that. But that is only accessible viaTransact
. We should have XCM to achieve similar result.Another could be useful one is
utility.batch_all
to perform multiple XCM actions atomically.