Skip to content

Commit 5b885e8

Browse files
committed
Fix exports
1 parent 3efad81 commit 5b885e8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

js/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alephium/ledger-app",
3-
"version": "0.5.1",
3+
"version": "0.5.2",
44
"license": "GPL",
55
"types": "dist/src/index.d.ts",
66
"exports": {

js/src/ledger-app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const HASH_LEN = 32
2020
// The maximum payload size is 255: https://github.com/LedgerHQ/ledger-live/blob/develop/libs/ledgerjs/packages/hw-transport/src/Transport.ts#L261
2121
const MAX_PAYLOAD_SIZE = 255
2222

23-
export default class AlephiumApp {
23+
export class AlephiumApp {
2424
readonly transport: Transport
2525

2626
constructor(transport: Transport) {

js/test/wallet.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import AlephiumApp, { GROUP_NUM } from '../src/ledger-app'
1+
import { AlephiumApp, GROUP_NUM } from '../src/ledger-app'
22
import { ALPH_TOKEN_ID, Address, DUST_AMOUNT, NodeProvider, ONE_ALPH, binToHex, codec, groupOfAddress, node, sleep, transactionVerifySignature, waitForTxConfirmation, web3 } from '@alephium/web3'
33
import { getSigner, mintToken, transfer } from '@alephium/web3-test'
44
import { PrivateKeyWallet } from '@alephium/web3-wallet'

0 commit comments

Comments
 (0)