All Projects → ethers-io → Ethers.objc

ethers-io / Ethers.objc

Licence: mit
Fast, simple and complete library for Ethereum in Objective-C.

Programming Languages

c
50402 projects - #5 most used programming language

Labels

Projects that are alternatives of or similar to Ethers.objc

Bitnation Constitution
Decentralized Borderless Voluntary Nation (DBVN) Liquid Holocracy Constitution
Stars: ✭ 144 (-6.49%)
Mutual labels:  ethereum
Awesome Token Sale
Curated list of token sale resources / ICO resources
Stars: ✭ 149 (-3.25%)
Mutual labels:  ethereum
Tokenbase
A repository of ERC20 token information. Tokens listed are tradeable on https://forkdelta.github.io. We welcome contributions! 🎉
Stars: ✭ 152 (-1.3%)
Mutual labels:  ethereum
Nsfminer
No Fee Ethash miner for AMD and Nvidia
Stars: ✭ 141 (-8.44%)
Mutual labels:  ethereum
Pm Contracts
Collection of smart contracts for the Gnosis prediction market platform.
Stars: ✭ 148 (-3.9%)
Mutual labels:  ethereum
Sparkle Airdrop
Sparkle Airdrop Contract Built on Ethereum
Stars: ✭ 150 (-2.6%)
Mutual labels:  ethereum
Truffle Plugin Verify
✅ Verify your smart contracts on Etherscan from the Truffle CLI
Stars: ✭ 144 (-6.49%)
Mutual labels:  ethereum
Cryptocurrency Icons
A set of icons for all the main cryptocurrencies and altcoins, in a range of styles and sizes.
Stars: ✭ 2,116 (+1274.03%)
Mutual labels:  ethereum
Ebtc
eBitcoin (eBTC) is an ERC20 token. Its primary utility is to provide an easy & fast payment solution. Its edge over other tokens is that it is capable of sending up to 255 payments in a single transaction.
Stars: ✭ 149 (-3.25%)
Mutual labels:  ethereum
Rattle
evm binary static analysis
Stars: ✭ 152 (-1.3%)
Mutual labels:  ethereum
Sablier
The protocol for real-time finance on the Ethereum blockchain
Stars: ✭ 147 (-4.55%)
Mutual labels:  ethereum
Vanity Eth
⚡ Browser-based ETH vanity address generator
Stars: ✭ 148 (-3.9%)
Mutual labels:  ethereum
Erc20 Rest Service
ERC-20 token standard RESTful service using Spring Boot and web3j
Stars: ✭ 150 (-2.6%)
Mutual labels:  ethereum
Ethers Rs
Complete Ethereum & Celo library and wallet implementation in Rust. https://docs.rs/ethers
Stars: ✭ 145 (-5.84%)
Mutual labels:  ethereum
React Native Geth
Ethereum Light-Client implementation for React Native
Stars: ✭ 152 (-1.3%)
Mutual labels:  ethereum
Tokens
Ethereum token definitions
Stars: ✭ 144 (-6.49%)
Mutual labels:  ethereum
0x Mesh
A peer-to-peer network for sharing 0x orders
Stars: ✭ 149 (-3.25%)
Mutual labels:  ethereum
Defi Score
DeFi Score: An open framework for evaluating DeFi protocols
Stars: ✭ 152 (-1.3%)
Mutual labels:  ethereum
Chainlink Ruby
Easily connect your applications to blockchains
Stars: ✭ 152 (-1.3%)
Mutual labels:  ethereum
Set Protocol Contracts
🎛 Set Protocol Smart Contracts
Stars: ✭ 151 (-1.95%)
Mutual labels:  ethereum

ethers.objc

Everything you need to write your own Ethereum wallet and interact with the blockchain.

Please note this documentation is a work in progress, with many stubs and place holders. The bulk of the documentation is being put together in a readthedocs RST document and this is just to help out a (very) little in the meantime.

Features:

  • Simple and complete public API
  • Ready-to-go; drop the framework into your project and you are off to the races
  • Full testnet support
  • Geth Secret Storage Wallet support
  • BIP39 + BIP32 + BIP44 support (SLIP 44)
  • ICAP + checksum address support
  • Multiple providers and meta-providers
  • Secure; all private keys are stored in self-clearing memory
  • A large test suite to ensure correctness against other libraries
  • Open Source (MIT Licensed)

API

To use the Framework, add the ethers.Framework to your project and add:

@import ethers;

Fundamentals

Account

An account contains a private key used to sign transactions and prove ownership of an account.

  • Import/Export Geth Secret storage wallets
  • Generate and import BIP 39 mnemonic wallets (m/44'/60'/0'/0/0)

Provider

  • A provider is used to connect to the blockchain.

Common Objects

Address

  • Checksum Addresses
  • IBAN/ICAP Addresses

BigNumber

  • Explain why we need to use Bignumbers

Hash

  • BlockHash
  • TransactionHash

Promise

  • Async
  • Chainable and able to make a dependency tree

Detail Objects

Transaction

  • Serialize and deserialize transactions
  • EIP155 support

TransactionInfo

  • Information (possibly incomplete) about a transaction

BlockInfo

  • Information about a block

Providers

EtherscanProvider

InfuraProvider

  • Connect to INFURA with an optional API Access Token.

JsonRpcProvider

  • Connect to any Parity, Geth, et cetera node.

FallbackProvider

  • On error, try the next provider in the list.

RoundRobinProvider

  • Randomly selects from a list of providers, with fallback.

LightWalletProvider

  • Experimental
  • Still a lot of issues with the iOS Geth library (and xgo)
  • Makes the phone VERY hot

Utilities

SecureData

  • Create NSMutableData backed objects with a SecureAllocator to zero the memory when deallocated.
  • Convenience methods for operating on hex strings

Payment

  • Convert between ether value strings and wei
  • Parse payment URI

To Do

Contract API

Still need an equivalent to the Ethers.Contract object to parse an ABI, and generate ABI encoders/decoders.

License

MIT License.

Donations

Everything is released under the MIT license, so these is absolutely no need to donate anything. If you would like to buy me a coffee though, I certainly won't complain. =)

  • Ethereum: 0x2F40e3b51533698A14aFcf7Fe386050e22e1FdB2
  • Bitcoin: 18QMCEt71xUioVncupxy8ZajKooFkpG4Y6
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].