Skip to content

Commit

Permalink
[xp] move client related code
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjah committed Apr 24, 2024
1 parent 1d47a35 commit a4ad4c5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion packages/massa-web3/src/experimental/client/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
export * from './client'
export * from './interfaces'
export * from './jsonRPCClient'
export * from './publicAPI'
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { OperationStatus } from './basicElements'
import { SendOperationInput, EventFilter as EvtFilter } from './client'
import { OperationStatus } from '../basicElements'
import { SendOperationInput, EventFilter as EvtFilter } from '.'
import {
OperationInput,
Pagination,
Expand All @@ -25,8 +25,8 @@ import {
Staker,
OperationId,
AddressFilter,
} from './generated/client'
import { toNanoMas } from './utils'
} from '../generated/client'
import { toNanoMas } from '../utils'

export enum Transport {
webSocket = 'websocket',
Expand Down

1 comment on commit a4ad4c5

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report for experimental massa-web3

St.
Category Percentage Covered / Total
🔴 Statements 39.15% 556/1420
🔴 Branches 15.36% 57/371
🔴 Functions 27.02% 77/285
🔴 Lines 38.88% 544/1399

Test suite run success

10 tests passing in 4 suites.

Report generated by 🧪jest coverage report action from a4ad4c5

Please sign in to comment.