solana-go/constants.go

10 lines
181 B
Go

package solana
const (
// There are 1-billion lamports in one SOL.
LAMPORTS_PER_SOL uint64 = 1000000000
// Maximum length of derived pubkey seed.
MAX_SEED_LENGTH uint8 = 32
)