안녕하세요 클레이 전송에 관해서 이해가 안가는 부분이 있어 질문 드립니다.
const fromBalance = await getBalance(fromAddress);
console.log(fromBalance); // 149.97172499999999
이렇게 나온 balance를 toAddress에게 전송하려고 하는데
const a = parseFloat(balance) * 1000000 // 149.971725
const b = parseFloat("0.000525") * 1000000 // 525
const c = (a - b) / 1000000 // 149.9712
const d = c.toString() // "149.9712"
const tx = {
type: "VALUE_TRANSFER",
from: fromAddress,
to: toAddress,
gas: 300000,
value: baobab.utils.toPeb(d, "KLAY"),
};
const result = await baobab.klay.sendTransaction(tx);
insufficient funds of the sender for value 가 뜹니다.
클레이 전송 가스비가 0.000525 klay가 소비되는거로 알고 있는데 잘못된 건가요???