테 조스에서 가장 작은 화폐 단위는 무엇입니까?
1 대답
- 투표
현재 1tez (1 XTZ)는 소수점 6 자리로 나눌 수 있으며 가장 작은 단위를 microtez 라고합니다.
1 테즈=1,000,000 마이크로 테즈
코드에서는 mutez
라고하며 src/proto_alpha/lib_protocol/qty_repr.ml (약 94 행) :
let one_mutez = 1L
let one_cent = Int64.mul one_mutez 10_000L
let fifty_cents = Int64.mul one_cent 50L
(* 1 tez = 100 cents = 1_000_000 mutez *)
let one = Int64.mul one_cent 100L
let id = T.id
Currently 1 tez (1 XTZ) is divisible to six decimal places, and the smallest unit is called a micro tez.
1 tez = 1,000,000 micro tez
In code it is referred to as mutez
and it is defined in src/proto_alpha/lib_protocol/qty_repr.ml (circa line 94):
let one_mutez = 1L
let one_cent = Int64.mul one_mutez 10_000L
let fifty_cents = Int64.mul one_cent 50L
(* 1 tez = 100 cents = 1_000_000 mutez *)
let one = Int64.mul one_cent 100L
let id = T.id
테 조스에서 가장 작은 화폐 단위는 무엇이며 코드에서 정의되는 곳은 어디입니까?