All Projects → miguelmota → go-ethutil

miguelmota / go-ethutil

Licence: MIT License
Ethereum utility functions for Go.

Programming Languages

go
31211 projects - #10 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to go-ethutil

full-blockchain-solidity-course-py
Ultimate Solidity, Blockchain, and Smart Contract - Beginner to Expert Full Course | Python Edition
Stars: ✭ 5,349 (+31364.71%)
Mutual labels:  dapp, smart-contracts, web3
solidity-cli
Compile solidity-code faster, easier and more reliable
Stars: ✭ 49 (+188.24%)
Mutual labels:  dapp, smart-contracts, web3
awesome-waves
Curated list of awesome things for development on Waves blockchain.
Stars: ✭ 60 (+252.94%)
Mutual labels:  dapp, smart-contracts, web3
Eth Crypto
Cryptographic javascript-functions for ethereum and tutorials to use them with web3js and solidity
Stars: ✭ 420 (+2370.59%)
Mutual labels:  dapp, smart-contracts, web3
Eth.social
An Ethereum dApp for posting social events.
Stars: ✭ 17 (+0%)
Mutual labels:  dapp, smart-contracts, web3
starter-kit-gsn
An OpenZeppelin starter kit focused on GSN.
Stars: ✭ 39 (+129.41%)
Mutual labels:  dapp, smart-contracts, web3
Web3swift
Elegant Web3js functionality in Swift. Native ABI parsing and smart contract interactions.
Stars: ✭ 237 (+1294.12%)
Mutual labels:  dapp, smart-contracts, web3
typescript-eth-starter
🔌 Ethereum Dapp Basic Typescript Starter
Stars: ✭ 125 (+635.29%)
Mutual labels:  dapp, smart-contracts, web3
spectrum
💠 Full Gamut Ethereum Lightsuite
Stars: ✭ 56 (+229.41%)
Mutual labels:  dapp, web3
eth-sdk
Type-safe, lightweight SDKs for Ethereum smart contracts
Stars: ✭ 283 (+1564.71%)
Mutual labels:  dapp, web3
quipuswap-webapp
🌐 🧙‍♂️ Decentralized application UI for Quipuswap protocol.
Stars: ✭ 21 (+23.53%)
Mutual labels:  dapp, smart-contracts
juice-interface
🧃 An app for using the JBX protocol.
Stars: ✭ 132 (+676.47%)
Mutual labels:  dapp, web3
nifty-game
🃏🎮A NFT(ERC721) card game build on Ethereum, Truffle, Ganache and hosting on IPFS.
Stars: ✭ 222 (+1205.88%)
Mutual labels:  dapp, smart-contracts
core
SIREN Core Smart Contracts
Stars: ✭ 39 (+129.41%)
Mutual labels:  dapp, smart-contracts
tasit-sdk
A JavaScript / TypeScript SDK for making native mobile Ethereum dapps using React Native
Stars: ✭ 93 (+447.06%)
Mutual labels:  dapp, smart-contracts
Astar
The dApp hub for blockchains of the future
Stars: ✭ 533 (+3035.29%)
Mutual labels:  dapp, web3
lens
The official network explorer for Wavelet.
Stars: ✭ 28 (+64.71%)
Mutual labels:  dapp, smart-contracts
ethereum-playbook
CLI tool that configures and deploys Ethereum DApp infrastructures using a static specification. 📚📖
Stars: ✭ 20 (+17.65%)
Mutual labels:  dapp, smart-contracts
wagmi
React Hooks for Ethereum
Stars: ✭ 1,691 (+9847.06%)
Mutual labels:  dapp, web3
web3
⚡️ Web3 PHP is a supercharged PHP API client that allows you to interact with a generic Ethereum RPC.
Stars: ✭ 609 (+3482.35%)
Mutual labels:  dapp, web3


logo


go-ethutil

Ethereum utility functions for Go.

License Build Status Go Report Card GoDoc

Documentation

https://godoc.org/github.com/miguelmota/go-ethutil

Install

go get -u github.com/miguelmota/go-ethutil

Getting started

package main

import (
	"fmt"
	"log"

	"github.com/miguelmota/go-ethutil"
)

func main() {
	wei := ethutil.ToWei(0.02, 18)
	fmt.Println(wei) // 20000000000000000
}

Examples

Check out the ./example directory and documentation.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].