The static-address
crate provides a macro static_address!
, used for compile-time parsing of strings into a static address. This provides an efficient way of declaring Move account addresses in source code while incurring almost no runtime cost in programs, without having to declare the byte array yourself. The actual code is adapted from here.
let key =
static_address!("0x80809acd8d3bc3d30aea82e5506f45951e3eb53e2fda39da6d772647e52c25cd");
assert_eq!(
key.to_hex_literal(),
"0x80809acd8d3bc3d30aea82e5506f45951e3eb53e2fda39da6d772647e52c25cd"
);
An example of using this for an Aptos project is available at crates/static-address-example-aptos.
static-address
is licensed under the Apache License, version 2.0.