ens-usernames/app/components/ens/utils.js

4 lines
268 B
JavaScript
Raw Permalink Normal View History

2018-05-27 20:28:07 +00:00
export const zeroAddress = '0x0000000000000000000000000000000000000000';
export const zeroBytes32 = "0x0000000000000000000000000000000000000000000000000000000000000000";
export const formatPrice = price => price.includes('.') ? price : Number(price).toLocaleString();