Skip to content

Commit

Permalink
Fix import statements without file extension
Browse files Browse the repository at this point in the history
  • Loading branch information
rileystephens28 committed Sep 19, 2024
1 parent a1cc49e commit 87ce0f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/utils/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { defineProperties } from './properties.js';
import type { TransactionRequest, TransactionReceipt, TransactionResponse } from '../providers/index.js';

import type { FetchRequest, FetchResponse } from './fetch.js';
import { ExternalTransactionResponse } from '../providers/provider';
import { ExternalTransactionResponse } from '../providers/provider.js';

/**
* An error may contain additional properties, but those must not conflict with any implicit properties.
Expand Down
4 changes: 2 additions & 2 deletions src/wallet/payment-codes.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { BIP32API, BIP32Interface, HDNodeBIP32Adapter } from './bip32/types.js';
import { sha256 } from '@noble/hashes/sha256';
import { keccak256 } from '../crypto/index.js';
import { getBytes, hexlify } from '../utils/data.js';
import { getAddress } from '../address/address.js';
import { bs58check } from './bip32/crypto.js';
import { HDNodeBIP32Adapter } from './bip32/types.js';
import type { TinySecp256k1Interface, BIP32API, BIP32Interface } from './bip32/types.js';
import type { TinySecp256k1Interface } from './bip32/types.js';
import { secp256k1 } from '@noble/curves/secp256k1';

export const PC_VERSION = 0x47;
Expand Down

0 comments on commit 87ce0f2

Please sign in to comment.