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
Allow a way to show all accounts. We can do that with the iterator, but it may use tons of gas if there is lots.
Maybe add some pagination here, like:
structListAllAccounts{// start from beginning if None, or right after this if set (use last address from previous result) after:Option<HumanAddress>,// require some limit to how many on a page. Gas limits will cap it, we can enforce no more than 100 limit:u32,}
The text was updated successfully, but these errors were encountered:
Allow a way to show all accounts. We can do that with the iterator, but it may use tons of gas if there is lots.
Maybe add some pagination here, like:
The text was updated successfully, but these errors were encountered: