Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Vertcoin support #18

Merged
merged 3 commits into from Oct 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 19 additions & 1 deletion Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions Gopkg.toml
Expand Up @@ -67,3 +67,16 @@
[[constraint]]
name = "google.golang.org/grpc"
version = "1.6.0"

[[projects]]
branch = "master"
name = "github.com/vertcoin/vtcd"

[[projects]]
branch = "master"
name = "github.com/vertcoin/vtcutil"

[[projects]]
branch = "master"
name = "github.com/vertcoin/vtcwallet"

14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -2,9 +2,9 @@

This repo contains utilities to manually perform cross-chain atomic swaps
between Decred and other cryptocurrencies. At the moment, Bitcoin (Bitcoin
Core) and Litecoin (Litecoin Core) are the two other blockchains and wallets
supported. Support for other blockchains or wallets could be added in the
future.
Core), Litecoin (Litecoin Core) and Vertcoin (Vertcoin Core) are the three
other blockchains and wallets supported. Support for other blockchains or
wallets could be added in the future.

These tools do not operate solely on-chain. A side-channel is required between
each party performing the swap in order to exchange additional data. This
Expand All @@ -15,9 +15,9 @@ and a way for early adopters to try out the technology.

Due to the requirements of manually exchanging data and creating, sending, and
watching for the relevant transactions, it is highly recommended to read this
README in its entirety before attempting to use these tools. The sections below
explain the principles on which the tools operate, the instructions for how to
use them safely, and an example swap between Decred and Bitcoin.
README in its entirety before attempting to use these tools. The sections
below explain the principles on which the tools operate, the instructions for
how to use them safely, and an example swap between Decred and Bitcoin.

## Build instructions

Expand Down Expand Up @@ -382,7 +382,7 @@ Several steps require working with a raw transaction published by the other
party. While the transactions can sometimes be looked up from a local node
using the `getrawtransaction` JSON-RPC, this method can be unreliable since the
set of queryable transactions depends on the current UTXO set (bitcoind,
litecoind) or may require the transaction index to be enabled (dcrd).
litecoind, vertcoind) or may require the transaction index to be enabled (dcrd).

Another method of discovering these transactions is to use a public blockchain
explorer. Not all explorers expose this info through the main user interface so
Expand Down