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

Eth personal in web3.eth #6245

Merged
merged 3 commits into from
Jul 3, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/web3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,7 @@ Documentation:
- Fixed #6162 @types/ws issue (#6205)

## [Unreleased]

### Fixed

- Fixed bug #6236 by adding personal type in web3.eth (#6245)
2 changes: 2 additions & 0 deletions packages/web3/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import { Contract } from 'web3-eth-contract';
import { ENS } from 'web3-eth-ens';
import Net from 'web3-net';
import { Iban } from 'web3-eth-iban';
import Personal from 'web3-eth-personal';
jdevcs marked this conversation as resolved.
Show resolved Hide resolved

/**
* The Ethereum interface for main web3 object. It provides extra methods in addition to `web3-eth` interface.
Expand Down Expand Up @@ -90,4 +91,5 @@ export interface Web3EthInterface extends Eth {
) => Promise<Web3Account>;
wallet: Wallet;
};
personal: Personal;
}
Loading