We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aa4d3c commit e9baaa8Copy full SHA for e9baaa8
src/global/constants.ts
@@ -91,6 +91,12 @@ export const NetworkStateType = {
91
92
export type NetworkStateType = typeof NetworkStateType[keyof typeof NetworkStateType];
93
94
+export const ZERO = 0n;
95
+export const MASK_250 = 2n ** 250n - 1n; // 2 ** 250 - 1
96
+export const MASK_31 = 2n ** 31n - 1n; // 2 ** 31 - 1
97
+export const API_VERSION = ZERO;
98
+export const PRIME = 2n ** 251n + 17n * 2n ** 192n + 1n;
99
+
100
export const UDC = {
101
ADDRESS: '0x041a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf',
102
ENTRYPOINT: 'deployContract',
0 commit comments