You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have nice APIs to do most things on accounts other than our own zkapp, like
letupdate=AccountUpdate.create(address);// get the other account's balanceletb=update.account.balance.getAndRequireEquals();// set the other account's permissionsupdate.account.permissions.set(Permissions.default());
However, we don't have anything for setting state. You can only set state by modifying the raw account update. This is not documented and from experience, many users don't discover this API on their own:
Historically, the inconsistency originated because we designed the state setting API for zkapps around a custom namespace that you define along with the SmartContract, i.e. @state x and this.x.set().
Proposed API
If we set state on other accounts, we can't assume knowing names for state fields. But we can still design something that's nice to use, e.g.
// set individual field elements by providing their indexupdate.account.state.set(0,Field(1_000));// set one or many fields by providing a start index and a typeupdate.account.state.set(1,PublicKey,myAddress);
The above should be reasonably easy to use. But we could make it even more similar to the familiar API by allowing to declare a zkapp-like state layout inline. E.g.
Motivation
We have nice APIs to do most things on accounts other than our own zkapp, like
However, we don't have anything for setting state. You can only set state by modifying the raw account update. This is not documented and from experience, many users don't discover this API on their own:
Historically, the inconsistency originated because we designed the state setting API for zkapps around a custom namespace that you define along with the
SmartContract
, i.e.@state x
andthis.x.set()
.Proposed API
If we set state on other accounts, we can't assume knowing names for state fields. But we can still design something that's nice to use, e.g.
The above should be reasonably easy to use. But we could make it even more similar to the familiar API by allowing to declare a zkapp-like state layout inline. E.g.
Apart from
set()
, we also want preconditions:The text was updated successfully, but these errors were encountered: