Skip to content

Commit

Permalink
Merge pull request #49 from vacuumlabs/split_validation_serialization
Browse files Browse the repository at this point in the history
Split validation & serialization
  • Loading branch information
ppershing committed Feb 21, 2021
2 parents e0081d2 + 087c68d commit d239b2d
Show file tree
Hide file tree
Showing 5 changed files with 540 additions and 538 deletions.
9 changes: 5 additions & 4 deletions src/Ada.ts
Expand Up @@ -16,10 +16,7 @@
********************************************************************************/
//import type Transport from "@ledgerhq/hw-transport";

import cardano, {
AddressTypeNibble,
CertificateType,
} from "./cardano";
import cardano from './cardano'
import type { INS } from "./interactions/common/ins";
import { deriveAddress } from "./interactions/deriveAddress";
import { getExtendedPublicKeys } from "./interactions/getExtendedPublicKeys";
Expand All @@ -28,6 +25,10 @@ import { getVersion } from "./interactions/getVersion";
import { runTests } from "./interactions/runTests";
import { showAddress } from "./interactions/showAddress";
import { signTransaction } from "./interactions/signTx";
import {
AddressTypeNibble,
CertificateType,
} from "./parsing";
import { TxErrors } from "./txErrors";
import utils, { Assert } from "./utils";

Expand Down

0 comments on commit d239b2d

Please sign in to comment.