const OwnerAddress, MaxAttestXP, pubKeySize, sigSize, fieldSep
1const (
2 // OwnerAddress is the samcrew-core-test1 multisig on test13 (realm owner /
3 // signer-key rotator). CONFIRM before deploy.
4 OwnerAddress = "g1x7k4628w93a7wzdhqc06atzx0v50rnshweuxu0"
5
6 // MaxAttestXP bounds the XP a single voucher can carry. This caps the blast
7 // radius if the offline signer key ever leaks: a leaked key can still forge
8 // vouchers, but cannot mint unbounded XP in one call. Generous vs the real
9 // max single-quest XP (≤100).
10 MaxAttestXP = 1000
11
12 pubKeySize = 32 // ed25519 public key length (gno crypto/ed25519 exposes no const)
13 sigSize = 64 // ed25519 signature length
14 fieldSep = "|"
15)── Constants ────────────────────────────────────────────────