Skip to content

Commit

Permalink
add todo
Browse files Browse the repository at this point in the history
  • Loading branch information
trbutler4 committed Sep 20, 2024
1 parent c92ea46 commit 67de169
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ class StarknetClient(private val rpcUrl: String) {
)
}

suspend fun sendERC20() {
// TODO(#24)
}

fun weiToEther(wei: Uint256): BigDecimal {
val weiInEther = BigDecimal("1000000000000000000") // 10^18
return BigDecimal(wei.value.toString()).divide(weiInEther)
Expand Down

0 comments on commit 67de169

Please sign in to comment.