Skip to content

Commit

Permalink
Added utility and ECDSA functions
Browse files Browse the repository at this point in the history
  • Loading branch information
bpfaff committed Aug 21, 2018
1 parent 3da62cd commit 305a197
Show file tree
Hide file tree
Showing 84 changed files with 4,140 additions and 1,805 deletions.
28 changes: 15 additions & 13 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
Package: rbtc
Title: Bitcoin API
Version: 0.1-1
Authors@R: person("Bernhard", "Pfaff", email = "[email protected]", role = c("aut", "cre"))
Description: Implementation of the RPC-JSON API for Bitcoin.
Depends: R (>= 3.4.3)
License: GPL-3
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.0.1
Imports: methods,
rjson,
httr
Package: rbtc
Title: Bitcoin API
Version: 0.1-3
Authors@R: person("Bernhard", "Pfaff", email = "[email protected]", role = c("aut", "cre"))
Description: Implementation of the RPC-JSON API for Bitcoin and utility functions for address creation.
Depends: R (>= 3.4.0)
License: GPL-3
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.0.1
Imports: methods, rjson, httr, openssl, gmp
NeedsCompilation: no
Packaged: 2018-08-14 14:50:15 UTC; pfaffb
Author: Bernhard Pfaff [aut, cre]
Maintainer: Bernhard Pfaff <[email protected]>
131 changes: 81 additions & 50 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,50 +1,81 @@
# Generated by roxygen2: do not edit by hand

export(addnode)
export(clearbanned)
export(conrpc)
export(decoderawtransaction)
export(disconnectnode)
export(getaddednodeinfo)
export(getbestblockhash)
export(getblock)
export(getblockchaininfo)
export(getblockcount)
export(getblockhash)
export(getblockheader)
export(getchaintips)
export(getchaintxstats)
export(getconnectioncount)
export(getdifficulty)
export(gethelp)
export(getinfo)
export(getmempoolancestors)
export(getmempooldescendants)
export(getmempoolentry)
export(getmempoolinfo)
export(getnettotals)
export(getnetworkinfo)
export(getpeerinfo)
export(getrawmempool)
export(getrawtransaction)
export(gettxout)
export(gettxoutproof)
export(gettxoutsetinfo)
export(getwalletinfo)
export(listbanned)
export(ping)
export(preciousblock)
export(pruneblockchain)
export(rpcpost)
export(setnetworkactive)
export(startbtc)
export(stopbtc)
export(verifychain)
export(verifytxoutproof)
exportClasses(ANSRPC)
exportClasses(CONRPC)
exportClasses(NullOrCharacter)
exportClasses(NullOrInteger)
import(httr)
import(methods)
import(rjson)
# Generated by roxygen2: do not edit by hand

export(PrivKey2PubKey)
export(PrivKey2Wif)
export(PubHash2BtcAdr)
export(PubKey2PubHash)
export(Wif2PrivKey)
export(addnode)
export(base58CheckDecode)
export(base58CheckEncode)
export(clearbanned)
export(concatHex)
export(conrpc)
export(containsPoint)
export(createBtcAdr)
export(createPrivateKey)
export(date2int)
export(decodeHex)
export(decoderawtransaction)
export(disconnectnode)
export(doubleUp)
export(ecparam)
export(ecpoint)
export(getaddednodeinfo)
export(getbestblockhash)
export(getblock)
export(getblockchaininfo)
export(getblockcount)
export(getblockhash)
export(getblockheader)
export(getchaintips)
export(getchaintxstats)
export(getconnectioncount)
export(getdifficulty)
export(gethelp)
export(getinfo)
export(getmempoolancestors)
export(getmempooldescendants)
export(getmempoolentry)
export(getmempoolinfo)
export(getnettotals)
export(getnetworkinfo)
export(getpeerinfo)
export(getrawmempool)
export(getrawtransaction)
export(gettxout)
export(gettxoutproof)
export(gettxoutsetinfo)
export(getwalletinfo)
export(hash160)
export(hash256)
export(int2date)
export(intMaxDay)
export(intMinDay)
export(intRangeDay)
export(intRangePeriod)
export(isNull)
export(listbanned)
export(ping)
export(preciousblock)
export(pruneblockchain)
export(rpcpost)
export(setnetworkactive)
export(startbtc)
export(stopbtc)
export(validBtcAdr)
export(verifychain)
export(verifytxoutproof)
exportClasses(ANSRPC)
exportClasses(BTCADR)
exportClasses(CONRPC)
exportClasses(ECPARAM)
exportClasses(ECPOINT)
exportClasses(EcparamOrNull)
exportClasses(NullOrCharacter)
exportClasses(NullOrInteger)
import(gmp)
import(httr)
import(methods)
import(openssl)
import(rjson)
Loading

0 comments on commit 305a197

Please sign in to comment.