tBTC is a trustlessly Bitcoin-backed ERC-20 token.
The goal of the project is to provide a stronger 2-way peg than federated sidechains like Liquid, expanding use cases possible via today’s Bitcoin network, while bringing superior money to other chains.
This repo contains the Solidity smart contracts and specification.
-
Read the introduction to tBTC.
-
Read the specification.
-
Consult Solidity API documentation.
-
For questions and support, join the #tbtc channel on Discord.
tBTC contracts are currently published in the GitHub Package Registry.
-
Add a file
.npmrc
to the same directory as your project’spackage.json
. -
Paste the following to configure the GitHub Package Registry for tBTC:
@keep-network:registry=https://npm.pkg.github.com/keep-network
-
Install the package:
$ npm install @keep-network/tbtc
NOTE: tBTC contracts require solc v0.5.10 or higher. You may have to
configure
solc in your truffle-config.js
.
Once installed, you can use the contracts in the library by importing them:
pragma solidity ^0.5.0;
import "@keep-network/tbtc/contracts/deposit/Deposit.sol";
contract MySystem {
function checkTerm(address _depositAddress) external {
uint256 remainingTerm = Deposit(_depositAddress).remainingTerm();
}
}
tBTC is currently under audit.
Please report any security issues you find to [email protected].
All contributions are welcome. To report bugs, please create an issue on this repository. To start a discussion, prefer Discord over GitHub issues.
Read the Contributing guidelines.
Clone and install dependencies:
git clone https://github.com/keep-network/tbtc
cd tbtc/solidity
npm install
Deploy contracts:
truffle migrate --reset
Tests are written in JS using Mocha.
To run the test suite, execute truffle test
.
To run specific tests, add
.only
to the
contract
block:
contract.only('TBTCToken', function(accounts) {
The documentation includes a project overview and rationale, as well as the on-chain specification. Docs should always be updated before or in tandem with code.
Docs are written in AsciiDoctor, diagrams in a LaTeX package called Tikz.
-
Install TeX Live manually, and other dependencies using CLI:
gem install asciidoctor-pdf --pre brew install poppler
-
Install the TikZ package to your local LaTeX environment:
sudo cp docs/latex/tikz-uml.sty /usr/local/texlive/texmf-local/ # Update TeX package tree sudo texhash
tBTC is released under the MIT License.