UNPKG
@meteraprotocol/core
Version:
latest (0.0.19)
0.0.19
0.0.18
0.0.17
0.0.16
Core functionality and constants for the Metera Protocol
meteraprotocol.io
@meteraprotocol/core
/
src
/
constants.ts
21 lines
(19 loc)
•
252 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export
const
MTK_DECIMALS
=
6
;
export
const
FEES
=
{
entry:
{
max:
500n
,
min:
1n
, },
exit:
{
max:
500n
,
min:
1n
, },
batcher:
{
max:
4_000_000n
,
min:
1n
, },
platform:
{
max:
100n
,
min:
1n
, }, }
as
const;