All Projects → neto737 → Bitgosdk Php

neto737 / Bitgosdk Php

Licence: gpl-3.0
BitGo SDK written in PHP

Projects that are alternatives of or similar to Bitgosdk Php

Eclair Mobile
An Android wallet for the Lightning Network
Stars: ✭ 231 (+950%)
Mutual labels:  blockchain, bitcoin, payments
Lnbook
Mastering the Lightning Network (LN)
Stars: ✭ 931 (+4131.82%)
Mutual labels:  blockchain, bitcoin, payments
Lnd
Lightning Network Daemon ⚡️
Stars: ✭ 5,623 (+25459.09%)
Mutual labels:  blockchain, bitcoin, payments
Hanzo.js
🚀 Hanzo JavaScript SDK. Develop cutting-edge decentralized applications.
Stars: ✭ 128 (+481.82%)
Mutual labels:  blockchain, payments, sdk
Eclair
A scala implementation of the Lightning Network.
Stars: ✭ 892 (+3954.55%)
Mutual labels:  blockchain, bitcoin, payments
Blockchain guide
Introduce blockchain related technologies, from theory to practice with bitcoin, ethereum and hyperledger.
Stars: ✭ 5,897 (+26704.55%)
Mutual labels:  blockchain, bitcoin
Evtjs
API Binding (SDK) for the everiToken blockchain.
Stars: ✭ 697 (+3068.18%)
Mutual labels:  blockchain, sdk
Ravencoin
Ravencoin Core integration/staging tree
Stars: ✭ 733 (+3231.82%)
Mutual labels:  blockchain, bitcoin
Lbry Sdk
The LBRY SDK for building decentralized, censorship resistant, monetized, digital content apps.
Stars: ✭ 7,169 (+32486.36%)
Mutual labels:  blockchain, bitcoin
Token Core Android
a blockchain private key management library on android
Stars: ✭ 613 (+2686.36%)
Mutual labels:  blockchain, bitcoin
Awesome Blockchain
区块链白皮书、书籍、交易所、币种、自媒体等资源汇总 💯
Stars: ✭ 747 (+3295.45%)
Mutual labels:  blockchain, bitcoin
Blockchain
블록체인 공부 중입니다.
Stars: ✭ 22 (+0%)
Mutual labels:  blockchain, bitcoin
Wallet Core
Cross-platform, cross-blockchain wallet library.
Stars: ✭ 657 (+2886.36%)
Mutual labels:  blockchain, bitcoin
Parity Bitcoin
The Parity Bitcoin client
Stars: ✭ 651 (+2859.09%)
Mutual labels:  blockchain, bitcoin
Rotki
A portfolio tracking, analytics, accounting and tax reporting application that protects your privacy
Stars: ✭ 689 (+3031.82%)
Mutual labels:  blockchain, bitcoin
Blockchain
A simple Blockchain in Python
Stars: ✭ 6,496 (+29427.27%)
Mutual labels:  blockchain, bitcoin
Blockchain
Compilation of useful documents and scientific papers about Blockchain & cryptocurrencies.
Stars: ✭ 751 (+3313.64%)
Mutual labels:  blockchain, bitcoin
Crypto Coin Kit
lodash for crypto coins
Stars: ✭ 19 (-13.64%)
Mutual labels:  blockchain, bitcoin
Awesome Cryptoeconomics
An awesome curated list of Cryptoeconomic research and learning materials
Stars: ✭ 763 (+3368.18%)
Mutual labels:  blockchain, bitcoin
Ebookcoin
Ebookcoin has been updated to DDN Blockchain,please get it from https://github.com/ddnlink/ddn
Stars: ✭ 789 (+3486.36%)
Mutual labels:  blockchain, bitcoin

BitGoSDK PHP

BitGoSDK written in PHP. This SDK contains methods for easily interacting with the BitGo API.

Latest Stable Version Total Downloads Latest Unstable Version License

Requirements

  • PHP 7.0 or earlier with:
    • cURL
    • BCMath

Installation

To install the SDK, you will need to be using Composer in your project. If you aren't using Composer yet, it's really simple! Here's how to install composer and the BitGoSDK PHP.

# Install Composer
curl -sS https://getcomposer.org/installer | php

# Add the BitGoSDK as a dependency
php composer.phar require neto737/bitgosdk-php

Next, require Composer's autoloader, in your application, to automatically load the BitGoSDK in your project:

require 'vendor/autoload.php';

use neto737\BitGoSDK\BitGoSDK;

Or if put the following in your composer.json:

"neto737/bitgosdk-php": "*"

Example

require 'vendor/autoload.php';

use neto737\BitGoSDK\BitGoSDK;
use neto737\BitGoSDK\Enum\CurrencyCode;

$bitgo = new BitGoSDK('YOUR_API_KEY_HERE', CurrencyCode::BITCOIN, false);
$bitgo->walletId = 'YOUR_WALLET_ID_HERE';

$createAddress = $bitgo->createWalletAddress();

Attention

Keep your cacert.pem always up to date. You can find updates on the site curl.haxx.se.

Credits

Donate

Donate BTC Donate ETH Donate with PayPal

Support on Beerpay

Hey dude! Help me out for a couple of 🍻!

Beerpay Beerpay

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