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

btc: add support for regtest #93

Merged
merged 1 commit into from
Oct 28, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG-npm.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

## 0.7.0
- btc: handle error when an input's previous transaction is required but missing
- btc: add support for regtest

## 0.6.0

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

## 0.6.0
- btc: handle error when an input's previous transaction is required but missing
- btc: add support for regtest
- cardano: added support for vote delegation

## 0.5.0
Expand Down
3 changes: 2 additions & 1 deletion sandbox/src/Bitcoin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ShowError } from './Error';

type Props = { bb02: bitbox.PairedBitBox };

const btcCoinOptions = ['btc', 'tbtc', 'ltc', 'tltc'];
const btcCoinOptions = ['btc', 'tbtc', 'ltc', 'tltc', 'rbtc'];

function BtcXPub({ bb02 } : Props) {
const [coin, setCoin] = useState<bitbox.BtcCoin>('btc');
Expand Down Expand Up @@ -95,6 +95,7 @@ function BtcAddressSimple({ bb02 }: Props) {
case 'tbtc':
case 'tltc': return 1;
case 'ltc': return 2;
case 'rbtc': return 1;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/wasm/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ extern "C" {
const TS_TYPES: &'static str = r#"
type OnCloseCb = undefined | (() => void);
type Product = 'unknown' | 'bitbox02-multi' | 'bitbox02-btconly';
type BtcCoin = 'btc' | 'tbtc' | 'ltc' | 'tltc';
type BtcCoin = 'btc' | 'tbtc' | 'ltc' | 'tltc' | 'rbtc';
type BtcFormatUnit = 'default' | 'sat';
type XPubType = 'tpub' | 'xpub' | 'ypub' | 'zpub' | 'vpub' | 'upub' | 'Vpub' | 'Zpub' | 'Upub' | 'Ypub';
type Keypath = string | number[];
Expand Down
Loading