Skip to content

Commit

Permalink
Merge pull request #422 from Cryptonomic/feat/update_consts_p019
Browse files Browse the repository at this point in the history
feat: update proto 19 constants
  • Loading branch information
vishakh authored Jun 5, 2024
2 parents fd1ec6e + 4fa07f3 commit 3857a7a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/types/tezos/TezosConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ export namespace TezosConstants {
export const P009BlockGasCap = 10_400_000;
export const P010BlockGasCap = 5_200_000;
export const P016BlockGasCap = 2_600_000;
export const P019BlockGasCap = 1_733_333;
export const P007OperationGasCap = 1_040_000;
export const OperationGasCap = P007OperationGasCap;
export const BlockGasCap = P016BlockGasCap;
export const BlockGasCap = P019BlockGasCap;

export const P010OperationStorageCap = 60_000;
export const P011OperationStorageCap = 32_768;
Expand Down Expand Up @@ -80,7 +81,8 @@ export namespace TezosConstants {

export const P009BlockTime = 60;
export const P010BlockTime = 30;
export const DefaultBlockTime = P010BlockTime;
export const P019BlockTime = 10;
export const DefaultBlockTime = P019BlockTime;

export const GenesisBlockTime = new Date(2018, 5, 30, 12, 7, 32);
}

0 comments on commit 3857a7a

Please sign in to comment.