All Projects → liquality → Chainabstractionlayer

liquality / Chainabstractionlayer

Licence: mit
Blockchain abstraction layer

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Chainabstractionlayer

Blockchain Parser
The simpliest script for parsing Bitcoin blockchain. It made convertion of blk*****.dat files to the simple text.
Stars: ✭ 84 (-35.88%)
Mutual labels:  blockchain, bitcoin, browser
Awesome Cryptocurrency Security
😎 Curated list about cryptocurrency security (reverse / exploit / fuzz..)
Stars: ✭ 102 (-22.14%)
Mutual labels:  blockchain, ethereum, bitcoin
Awesome Privacy On Blockchains
A curated list of privacy on blockchains resources
Stars: ✭ 86 (-34.35%)
Mutual labels:  blockchain, ethereum, bitcoin
The Journal Of Blockchain
区块链自媒体、专注区块链技术学习和实践、IPFS/Filecoin、Bitcoin、Ethereum、EOS、Cosmos、区块链、白皮书、Coinmarketcap、Coindesk、Safe Network、Telegram、Docker、社会治理、经济激励
Stars: ✭ 63 (-51.91%)
Mutual labels:  blockchain, ethereum, bitcoin
Hadoopcryptoledger
Hadoop Crypto Ledger - Analyzing CryptoLedgers, such as Bitcoin Blockchain, on Big Data platforms, such as Hadoop/Spark/Flink/Hive
Stars: ✭ 126 (-3.82%)
Mutual labels:  blockchain, ethereum, bitcoin
Nethereum
Ethereum .Net cross platform integration library
Stars: ✭ 1,191 (+809.16%)
Mutual labels:  rpc, blockchain, ethereum
Masterblockchain
Stars: ✭ 100 (-23.66%)
Mutual labels:  blockchain, ethereum, bitcoin
Blockchainage
「区块链技术指北」相关资料。
Stars: ✭ 51 (-61.07%)
Mutual labels:  blockchain, ethereum, bitcoin
Blockapi
A general framework for blockchain analytics
Stars: ✭ 111 (-15.27%)
Mutual labels:  blockchain, ethereum, bitcoin
Diadata
DIAdata.org platform
Stars: ✭ 103 (-21.37%)
Mutual labels:  blockchain, ethereum, bitcoin
Blockstack Browser
The Blockstack Browser
Stars: ✭ 1,119 (+754.2%)
Mutual labels:  blockchain, bitcoin, browser
Cryptocurrencyawesome
Cryptocurrency study materials resources
Stars: ✭ 118 (-9.92%)
Mutual labels:  blockchain, ethereum, bitcoin
Cryptolights
Live visualisation of blockchain transactions for popular cryptocurrencies
Stars: ✭ 54 (-58.78%)
Mutual labels:  blockchain, ethereum, bitcoin
Whale
🐋 Show Ethereum and Bitcoin price in command line interface (CLI).
Stars: ✭ 81 (-38.17%)
Mutual labels:  blockchain, ethereum, bitcoin
Udacity Blockchain Developer Nanodegree
The road so far on Udacity Blockchain Developer Nanodegree
Stars: ✭ 53 (-59.54%)
Mutual labels:  blockchain, ethereum, bitcoin
Cryptocurrency Cli
💰 Cryptocurrency Portfolio On The Command Line 💰
Stars: ✭ 99 (-24.43%)
Mutual labels:  ethereum, bitcoin, npm
Blockchain Anchor
A Node.js library for anchoring data onto the Bitcoin blockchain and confirming anchored data on Bitcoin and Ethereum.
Stars: ✭ 32 (-75.57%)
Mutual labels:  blockchain, ethereum, bitcoin
Blockchain
区块链、交易所、币种、自媒体、高频交易策略
Stars: ✭ 37 (-71.76%)
Mutual labels:  blockchain, ethereum, bitcoin
Solana
Web-Scale Blockchain for fast, secure, scalable, decentralized apps and marketplaces.
Stars: ✭ 1,383 (+955.73%)
Mutual labels:  blockchain, bitcoin, ledger
Cyb Archeology
🌎 Personal immortal robot for the The Great Web
Stars: ✭ 117 (-10.69%)
Mutual labels:  blockchain, ethereum, browser

Chain Abstraction Layer

Test Status Coverage Status Standard Code Style MIT License Gitter Telegram Greenkeeper badge

⚠️ This project is under heavy development. Expect bugs & breaking changes.

📝 Introductory Blog Post: The Missing Tool to Cross-Chain Development

Query different blockchains with account management using a single and simple interface.

Packages

Package Version
@liquality/bitcoin-js-wallet-provider ChainAbstractionLayer
@liquality/bitcoin-ledger-provider ChainAbstractionLayer
@liquality/bitcoin-networks ChainAbstractionLayer
@liquality/bitcoin-rpc-provider ChainAbstractionLayer
@liquality/bitcoin-wallet-node-provider ChainAbstractionLayer
@liquality/bitcoin-swap-provider ChainAbstractionLayer
@liquality/bitcoin-esplora-api-provider ChainAbstractionLayer
@liquality/bitcoin-esplora-swap-find-provider ChainAbstractionLayer
@liquality/bitcoin-utils ChainAbstractionLayer
@liquality/client ChainAbstractionLayer
@liquality/crypto ChainAbstractionLayer
@liquality/debug ChainAbstractionLayer
@liquality/errors ChainAbstractionLayer
@liquality/ethereum-erc20-provider ChainAbstractionLayer
@liquality/ethereum-erc20-swap-provider ChainAbstractionLayer
@liquality/ethereum-ledger-provider ChainAbstractionLayer
@liquality/ethereum-wallet-api-provider ChainAbstractionLayer
@liquality/ethereum-networks ChainAbstractionLayer
@liquality/ethereum-rpc-provider ChainAbstractionLayer
@liquality/ethereum-js-wallet-provider ChainAbstractionLayer
@liquality/ethereum-swap-provider ChainAbstractionLayer
@liquality/ethereum-scraper-swap-find-provider ChainAbstractionLayer
@liquality/ethereum-utils ChainAbstractionLayer
@liquality/jsonrpc-provider ChainAbstractionLayer
@liquality/ledger-provider ChainAbstractionLayer
@liquality/provider ChainAbstractionLayer
@liquality/schema ChainAbstractionLayer
@liquality/utils ChainAbstractionLayer
@liquality/wallet-provider ChainAbstractionLayer

Usage

import Client from '@liquality/client'
import BitcoinRpcProvider from '@liquality/bitcoin-rpc-provider'
import EthereumRpcProvider from '@liquality/ethereum-rpc-provider'

import BitcoinLedgerProvider from '@liquality/bitcoin-ledger-provider'
import EthereumLedgerProvider from '@liquality/ethereum-ledger-provider'

import BitcoinNetworks from '@liquality/bitcoin-networks'
import EthereumNetworks from '@liquality/ethereum-networks'

const bitcoin = new Client()
const ethereum = new Client()

bitcoin.addProvider(new BitcoinRpcProvider(
  'https://liquality.io/bitcointestnetrpc/', 'bitcoin', 'local321'
))
ethereum.addProvider(new EthereumRpcProvider(
  'https://rinkeby.infura.io/v3/xxx'
))

bitcoin.addProvider(new BitcoinLedgerProvider(
  { network: BitcoinNetworks.bitcoin_testnet }
))
ethereum.addProvider(new EthereumLedgerProvider(
  { network: EthereumNetworks.rinkeby }
))

// Fetch addresses from Ledger wallet using a single-unified API
const [ bitcoinAddress ] = await bitcoin.wallet.getAddresses(0, 1)
const [ ethereumAddress ] = await ethereum.wallet.getAddresses(0, 1)

// Sign a message
const signedMessageBitcoin = await bitcoin.wallet.signMessage(
  'The Times 3 January 2009 Chancellor on brink of second bailout for banks', bitcoinAddress
)
const signedMessageEthereum = await ethereum.wallet.signMessage(
  'The Times 3 January 2009 Chancellor on brink of second bailout for banks', ethereumAddress
)

// Send a transaction
await bitcoin.chain.sendTransaction(<to>, 1000)
await ethereum.chain.sendTransaction(<to>, 1000)

Development

npm install
npm run bootstrap
npm run watch

Production

npm run build

Publish

npm run new:version # prepare
npm run publish:all # publish

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].