consts.gno
0.33 Kb ยท 12 lines
1package v1
2
3// WRAP & UNWRAP
4const (
5 GNOT_DENOM string = "ugnot"
6
7 // ref: https://github.com/gnolang/gno/blob/81a88a2976ba9f2f9127ebbe7fb7d1e1f7fa4bd4/examples/gno.land/r/gnoland/wugnot/wugnot.gno#L19
8 UGNOT_MIN_DEPOSIT_TO_WRAP int64 = 1000
9
10 GNS_PATH string = "gno.land/r/gnoswap/gns"
11 WUGNOT_PATH string = "gno.land/r/gnoland/wugnot"
12)