Search Apps Documentation Source Content File Folder Download Copy Actions Download

consts.gno

0.75 Kb · 20 lines
 1package common
 2
 3const (
 4	// minTick is the minimum valid tick index in the concentrated liquidity model.
 5	// Represents the lowest possible price: 1.0001^(-887272) ≈ 0
 6	minTick = -887272
 7
 8	// maxTick is the maximum valid tick index in the concentrated liquidity model.
 9	// Represents the highest possible price: 1.0001^887272 ≈ infinity
10	maxTick = 887272
11
12	// GNOT_DENOM is the denomination for native GNOT tokens.
13	// ugnot is the smallest unit of GNOT (1 GNOT = 1,000,000 ugnot).
14	// Used in banker operations, pool pairs, and swap paths.
15	GNOT_DENOM = "ugnot"
16
17	// WUGNOT_PATH is the package path for wrapped ugnot (wugnot) token.
18	// wrapped ugnot is an GRC20 representation of native GNOT for DeFi operations.
19	WUGNOT_PATH = "gno.land/r/gnoland/wugnot"
20)