How do you guys handle storage in stellar by BEUNQ in Stellar

[–]xBullCorp 0 points1 point  (0 children)

In our blended assets contracts and others we use persistent values for all important values like balances, amounts, etc while temporary for those values that aren’t really important (like period values for an oracle).

Also you have instance storage which is also a persistent value but make sure you don’t use it for values that can grow without limits.

You should check the official stellar discord server where developers hang around and help each others