年利率4%,每半秒算一次利息,複利計算後利率為.4.0810772693021%
質押8943.71696281112個CFX 可以每天生1個CFX,質押挖礦概念。
以下為python語言
-- coding: utf-8 -
n=0
x=1+0.04/63072000
x1=x
while n < 63072000:
x1=x*x1
n+=1
print(x1)
x2=1/((x1-1)*172800/63072000)
print(x2)
輸出:
1.040810772693021
8943.71696281112