mirror of
https://github.com/stjet/bns.git
synced 2025-12-29 11:19:25 +00:00
9 lines
307 B
TypeScript
9 lines
307 B
TypeScript
import { whole_to_raw, get_address_from_public_key } from "banani";
|
|
|
|
export const TRANS_MIN = whole_to_raw("0.0012070301");
|
|
export const TRANS_MAX = whole_to_raw("0.00120703011");
|
|
|
|
export const FREEZE_PUB_KEY = "451" + "1".repeat(61);
|
|
export const FREEZE_REP = get_address_from_public_key(FREEZE_PUB_KEY);
|
|
|