aximate 0.1.4

Aximate core data structures and utilities
Documentation
1
2
3
4
5
6
7
pub fn ron_to_eth(ron: &str) -> String {
  return ron.replace("ronin:", "0x");
}

pub fn eth_to_ron(eth: &str) -> String {
  return eth.replace("0x", "ronin:");
}