Interface StateSchemaSetter<T extends StateSchemaSetter<T>>
-
- All Known Implementing Classes:
ApplicationCreateTransactionBuilder
,MethodCallTransactionBuilder
public interface StateSchemaSetter<T extends StateSchemaSetter<T>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
extraPages(Long extraPages)
extraPages allows you to rent extra pages of memory for the application.T
globalStateSchema(StateSchema globalStateSchema)
GlobalStateSchema sets limits on the number of strings and integers that may be stored in the GlobalState.T
localStateSchema(StateSchema localStateSchema)
LocalStateSchema sets limits on the number of strings and integers that may be stored in an account's LocalState.
-
-
-
Method Detail
-
localStateSchema
T localStateSchema(StateSchema localStateSchema)
LocalStateSchema sets limits on the number of strings and integers that may be stored in an account's LocalState. for this application. The larger these limits are, the larger minimum balance must be maintained inside the account of any users who opt into this application. The LocalStateSchema is immutable.
-
globalStateSchema
T globalStateSchema(StateSchema globalStateSchema)
GlobalStateSchema sets limits on the number of strings and integers that may be stored in the GlobalState. The larger these limits are, the larger minimum balance must be maintained inside the creator's account (in order to 'pay' for the state that can be used). The GlobalStateSchema is immutable.
-
-