Skip to content

Commit

Permalink
No dist imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pivilartisant committed Nov 21, 2024
1 parent 434650a commit 8d2823d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jest.e2e.config.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
'^.+\\.jsx?$': 'babel-jest',
},
transformIgnorePatterns: [
'node_modules/(?!(@massalabs/wallet-provider|@hicaru/bearby.js|big-varint|@massalabs/massa-web3)/)',
'node_modules/(?!(@massalabs/wallet-provider|@hicaru/bearby.js|big-varint)/)',
],
moduleNameMapper: {
'^@massalabs/wallet-provider$': '<rootDir>/dist/esm/index.js',
Expand Down
4 changes: 2 additions & 2 deletions src/bearbyWallet/BearbyAccount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { operationType } from '../utils/constants';
import {
Address,
CallSCParams,
DEPLOYER_BYTECODE,

Check failure on line 11 in src/bearbyWallet/BearbyAccount.ts

View workflow job for this annotation

GitHub Actions / massaStation-tests-e2e

Module '"@massalabs/massa-web3"' has no exported member 'DEPLOYER_BYTECODE'.
DeploySCParams,
EventFilter,
formatNodeStatusObject,
Expand All @@ -26,14 +27,13 @@ import {
SCEvent,
SignedData,
SmartContract,
StorageCost,

Check failure on line 30 in src/bearbyWallet/BearbyAccount.ts

View workflow job for this annotation

GitHub Actions / massaStation-tests-e2e

Module '"@massalabs/massa-web3"' has no exported member 'StorageCost'.
strToBytes,
} from '@massalabs/massa-web3';
import { networkInfos } from './utils/network';
import { WalletName } from '../wallet';
import isEqual from 'lodash.isequal';
import { uint8ArrayToBase64 } from '../utils/argsToBase64';
import { DEPLOYER_BYTECODE } from '@massalabs/massa-web3/dist/esm/generated/deployer-bytecode';
import * as StorageCost from '@massalabs/massa-web3/dist/esm/basicElements/storage';

export class BearbyAccount implements Provider {
public constructor(public address: string) {}
Expand Down

0 comments on commit 8d2823d

Please sign in to comment.