Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GRPC provider - Main.2.5 #742

Open
wants to merge 37 commits into
base: main
Choose a base branch
from
Open

GRPC provider - Main.2.5 #742

wants to merge 37 commits into from

Conversation

modship
Copy link
Member

@modship modship commented Mar 3, 2025

No description provided.

@modship modship linked an issue Mar 3, 2025 that may be closed by this pull request
@modship modship changed the title add generated GRPC provider Mar 3, 2025
Copy link

github-actions bot commented Mar 5, 2025

Coverage report for experimental massa-web3

St.
Category Percentage Covered / Total
🔴 Statements
35.09% (-29.54% 🔻)
6177/17602
🔴 Branches
16.27% (-25.76% 🔻)
939/5772
🔴 Functions
5.53% (-40.05% 🔻)
223/4029
🔴 Lines
35.13% (-30.02% 🔻)
6172/17571
Show new covered files 🐣
St.
File Statements Branches Functions Lines
🟢
... / ISerializable.ts
100% 100% 100% 100%
🟢
... / types.ts
100% 100% 100% 100%
🟢 src/client/types.ts 100% 100% 100% 100%
🟢
... / types.ts
100% 100% 100% 100%
🟢
... / interface.ts
100% 100% 100% 100%
🟢
... / client-types.ts
100% 100% 100% 100%
🔴
... / PublicServiceClientPb.ts
5.71% 0% 0% 5.71%
🔴
... / public_pb.js
31.72% 15.5% 0% 31.72%
🟢
... / annotations_pb.js
92.31% 20% 0% 92.31%
🔴
... / http_pb.js
30.42% 11.34% 0% 30.42%
🔴
... / address_pb.js
33.61% 16.67% 0% 33.61%
🔴
... / amount_pb.js
32.76% 18.52% 0% 32.76%
🔴
... / block_pb.js
30.08% 13.11% 0% 30.08%
🔴
... / denunciation_pb.js
29.89% 13.16% 0% 29.89%
🔴
... / slot_pb.js
31.14% 17.28% 0% 31.14%
🔴
... / endorsement_pb.js
29.32% 12.41% 0% 29.32%
🔴
... / operation_pb.js
30.13% 13.24% 0% 30.16%
🔴
... / commons_pb.js
32.43% 19.32% 0% 32.43%
🔴
... / datastore_pb.js
32.56% 18.97% 0% 32.56%
🔴
... / draw_pb.js
33.33% 15.69% 0% 33.33%
🔴
... / execution_pb.js
30.88% 11.76% 0% 30.89%
🔴
... / node_pb.js
27.45% 6.09% 0% 27.45%
🔴
... / stats_pb.js
28.21% 12.73% 0% 28.21%
🔴
... / time_pb.js
35.42% 20.83% 0% 35.42%
🔴
... / staker_pb.js
32.76% 18.52% 0% 32.76%
🟢
... / index.ts
100% 100% 100% 100%
🔴
... / grpcProvider.ts
14.47% 0% 0% 14.47%
🔴
... / grpcPublicProvider.ts
7.38% 0% 0% 7.44%
🟢
... / types.ts
100% 100% 100% 100%
Show files with reduced coverage 🔻
St.
File Statements Branches Functions Lines
🟡
... / args.ts
63.37% (+0.37% 🔼)
61.11% (-0.43% 🔻)
46.94%
63.37% (+0.37% 🔼)
🔴
... / publicAPI.ts
12.5% (+2.6% 🔼)
1.85% (-0.42% 🔻)
1.75%
13.98% (+2.99% 🔼)
🟡
... / networks.ts
78.95% (+7.52% 🔼)
75% (-5% 🔻)
75% (+8.33% 🔼)
78.95% (+7.52% 🔼)
🔴 src/client/http.ts
52.63% (+5.57% 🔼)
14.29% (-5.71% 🔻)
33.33%
52.63% (+5.57% 🔼)
🔴
... / jsonRpcProvider.ts
25.29% (+1.76% 🔼)
6.78% (-1.06% 🔻)
18.18%
25.29% (+1.76% 🔼)
🟢 src/errors/index.ts
71.43% (-28.57% 🔻)
100% 0% 100%
🟢
... / internal.ts
92.31% (+1.4% 🔼)
83.33% (-16.67% 🔻)
100%
92.31% (+1.4% 🔼)

Test suite run success

134 tests passing in 15 suites.

Report generated by 🧪jest coverage report action from 94f326e

@modship
Copy link
Member Author

modship commented Mar 5, 2025

@Ben-Rey @peterjah for the review you can skip generated directory

@modship modship changed the title GRPC provider GRPC provider - Main.2.5 Mar 5, 2025
@modship modship requested review from Ben-Rey and peterjah March 5, 2025 16:52
@modship
Copy link
Member Author

modship commented Mar 11, 2025

I updated the version to 5.2.0 what do you think? @peterjah @Ben-Rey

@modship modship self-assigned this Mar 12, 2025
@@ -64,7 +64,7 @@ export class SmartContract {
target: this.address,
...options,
}
return this.provider.readSC(readParams)
return this.provider.readSC(readParams) as Promise<ReadSCData>
Copy link
Collaborator

Choose a reason for hiding this comment

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

this cast could be removed if addressing the previous comment

Copy link
Member Author

Choose a reason for hiding this comment

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

done

Copy link
Collaborator

Choose a reason for hiding this comment

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

so we can remove the cast ? ^^

Copy link
Member Author

Choose a reason for hiding this comment

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

my bad yes

Comment on lines +8 to +21
describe('Provider GRPC tests', () => {
test('getNodeStatus', async () => {
const status = (await grpcProvider.getNodeStatus()) as PublicStatus
expect(status.getConfig()).toBeDefined()
expect(status.getCurrentCycle()).toBeDefined()
expect(status.getCurrentTime()).toBeDefined()
expect(status.getCurrentCycleTime()).toBeDefined()
expect(status.getLastExecutedFinalSlot()).toBeDefined()
expect(status.getLastExecutedSpeculativeSlot()).toBeDefined()
expect(status.getFinalStateFingerprint()).toBeDefined()
expect(status.getChainId()).toBeDefined()
expect(status.getMinimalFees()).toBeDefined()
})
})
Copy link
Collaborator

Choose a reason for hiding this comment

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

It would be nice to have more tests. I suggest to put them in a dedicated file. this can be done in a followup issue

@modship modship requested a review from peterjah March 27, 2025 14:20
@modship modship mentioned this pull request Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

GRPC Client
2 participants