Config Setting Contract Compute V0Xdr
data class ConfigSettingContractComputeV0Xdr(val ledgerMaxInstructions: Int64Xdr, val txMaxInstructions: Int64Xdr, val feeRatePerInstructionsIncrement: Int64Xdr, val txMemoryLimit: Uint32Xdr)
XDR Source: struct ConfigSettingContractComputeV0 { // Maximum instructions per ledger int64 ledgerMaxInstructions; // Maximum instructions per transaction int64 txMaxInstructions; // Cost of 10000 instructions int64 feeRatePerInstructionsIncrement;
// Memory limit per transaction. Unlike instructions, there is no fee
// for memory, just the limit.
uint32 txMemoryLimit;Content copied to clipboard
};