Skip to content

Commit

Permalink
add types to web3 packcage
Browse files Browse the repository at this point in the history
  • Loading branch information
avkos committed Mar 12, 2024
1 parent 804f150 commit fbd9f96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/web3/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,9 @@ export default Web3;
* Named exports for all objects which are the default-exported-object in their packages
*/
export { Web3 };
export { Web3Context, Web3PluginBase, Web3EthPluginBase } from 'web3-core';
export { Web3Context, Web3PluginBase, Web3EthPluginBase, Web3PromiEvent } from 'web3-core';
export { Web3Eth } from 'web3-eth';
export { Contract } from 'web3-eth-contract';
export { Contract, ContractDeploySend, ContractMethodSend } from 'web3-eth-contract';
export { Iban } from 'web3-eth-iban';
export { Personal } from 'web3-eth-personal';
export { Net } from 'web3-net';
Expand Down

1 comment on commit fbd9f96

@github-actions
Copy link

Choose a reason for hiding this comment

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

Benchmark

Benchmark suite Current: fbd9f96 Previous: 6c075db Ratio
processingTx 9683 ops/sec (±4.26%) 9301 ops/sec (±4.81%) 0.96
processingContractDeploy 40572 ops/sec (±8.93%) 39129 ops/sec (±7.62%) 0.96
processingContractMethodSend 20813 ops/sec (±4.74%) 19443 ops/sec (±5.19%) 0.93
processingContractMethodCall 40063 ops/sec (±5.97%) 38971 ops/sec (±6.34%) 0.97
abiEncode 48059 ops/sec (±6.55%) 44252 ops/sec (±6.92%) 0.92
abiDecode 33101 ops/sec (±6.97%) 30419 ops/sec (±8.89%) 0.92
sign 1655 ops/sec (±3.20%) 1656 ops/sec (±4.08%) 1.00
verify 381 ops/sec (±0.59%) 373 ops/sec (±0.78%) 0.98

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.