Skip to content

Commit

Permalink
feat: increase maximums to 100M each by default (#16518)
Browse files Browse the repository at this point in the history
Signed-off-by: Kelly Greco <[email protected]>
  • Loading branch information
poulok authored Nov 11, 2024
1 parent 1ece16a commit d749d61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public record AccountsConfig(
@ConfigProperty(defaultValue = "2") @NetworkProperty long treasury,
@ConfigProperty(defaultValue = "true") @NetworkProperty boolean storeOnDisk,
@ConfigProperty(defaultValue = "true") @NetworkProperty boolean releaseAliasAfterDeletion,
@ConfigProperty(defaultValue = "20000000") @NetworkProperty long maxNumber,
@ConfigProperty(defaultValue = "100000000") @NetworkProperty long maxNumber,
@ConfigProperty(value = "blocklist.enabled", defaultValue = "false") @NetworkProperty boolean blocklistEnabled,
@ConfigProperty(value = "blocklist.path", defaultValue = "") @NetworkProperty String blocklistResource) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public record TokensConfig(
@ConfigProperty(value = "nfts.maxBatchSizeBurn", defaultValue = "10") @NetworkProperty int nftsMaxBatchSizeBurn,
@ConfigProperty(value = "nfts.maxBatchSizeWipe", defaultValue = "10") @NetworkProperty int nftsMaxBatchSizeWipe,
@ConfigProperty(value = "nfts.maxBatchSizeMint", defaultValue = "10") @NetworkProperty int nftsMaxBatchSizeMint,
@ConfigProperty(value = "nfts.maxAllowedMints", defaultValue = "20000000") @NetworkProperty
@ConfigProperty(value = "nfts.maxAllowedMints", defaultValue = "100000000") @NetworkProperty
long nftsMaxAllowedMints,
@ConfigProperty(value = "nfts.maxQueryRange", defaultValue = "100") @NetworkProperty long nftsMaxQueryRange,
@ConfigProperty(value = "nfts.useTreasuryWildcards", defaultValue = "true") @NetworkProperty
Expand Down

0 comments on commit d749d61

Please sign in to comment.