Skip to content
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
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,9 @@ jobs:

- name: Install dependencies
run: yarn --frozen-lockfile

- name: Build
run: yarn build

- name: Lint
run: yarn lint
1 change: 0 additions & 1 deletion examples/sandbox/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import * as core from "@keepkey/hdwallet-core";
import * as keepkey from "@keepkey/hdwallet-keepkey";
import * as keepkeyTcp from "@keepkey/hdwallet-keepkey-tcp";
import * as keepkeyWebUSB from "@keepkey/hdwallet-keepkey-webusb";

import * as sigUtil from "@metamask/eth-sig-util";
import { TypedData } from "eip-712";
import $ from "jquery";
Expand Down
1 change: 0 additions & 1 deletion integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"@keepkey/hdwallet-keepkey": "1.53.16",
"@keepkey/hdwallet-keepkey-nodewebusb": "1.53.16",
"@keepkey/hdwallet-keepkey-tcp": "1.53.16",
"@keepkey/hdwallet-native": "1.53.16",
"fast-json-stable-stringify": "^2.1.0",
"msw": "^0.27.1",
"whatwg-fetch": "^3.6.2"
Expand Down
16 changes: 0 additions & 16 deletions integration/src/bitcoin/bitcoin.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import * as core from "@keepkey/hdwallet-core";
import * as native from "@keepkey/hdwallet-native";

import { each } from "../utils";

Expand Down Expand Up @@ -360,11 +359,6 @@ export function bitcoinTests(get: () => { wallet: core.HDWallet; info: core.HDWa
async () => {
if (!wallet) return;

// not implemented for native
if (native.isNative(wallet)) {
return;
}

const res = wallet.btcSignMessage({
addressNList: core.bip32ToAddressNList("m/44'/0'/0'/0/0"),
coin: "Bitcoin",
Expand All @@ -386,11 +380,6 @@ export function bitcoinTests(get: () => { wallet: core.HDWallet; info: core.HDWa
async () => {
if (!wallet) return;

// not implemented for native
if (native.isNative(wallet)) {
return;
}

const res = await wallet.btcVerifyMessage({
address: "1FH6ehAd5ZFXCM1cLGzHxK1s4dGdq1JusM",
coin: "Bitcoin",
Expand All @@ -409,11 +398,6 @@ export function bitcoinTests(get: () => { wallet: core.HDWallet; info: core.HDWa
async () => {
if (!wallet) return;

// not implemented for native
if (native.isNative(wallet)) {
return;
}

const res = await wallet.btcVerifyMessage({
address: "1FH6ehAd5ZFXCM1cLGzHxK1s4dGdq1JusM",
coin: "Bitcoin",
Expand Down
Loading