Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Luu committed Mar 22, 2024
1 parent 2f71f02 commit c090606
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/web3-eth-ens/src/ens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,12 +177,12 @@ export class ENS extends Web3Context<EthExecutionAPI & Web3NetAPI> {


/**
* Resolves an ENS name to an Ethereum address.
* @param address - The address to resolve
* @returns - The ENS name of the given address
* Resolves the name of an ENS node.
* @param ENSName - The node to resolve
* @returns - The name
*/
public async getName(address: string): Promise<string> {
return this._resolver.getName(address);
public async getName(ENSName: string): Promise<string> {
return this._resolver.getName(ENSName);
}

/**
Expand Down

1 comment on commit c090606

@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: c090606 Previous: 6c075db Ratio
processingTx 8882 ops/sec (±3.86%) 9301 ops/sec (±4.81%) 1.05
processingContractDeploy 38986 ops/sec (±7.88%) 39129 ops/sec (±7.62%) 1.00
processingContractMethodSend 18337 ops/sec (±7.27%) 19443 ops/sec (±5.19%) 1.06
processingContractMethodCall 36280 ops/sec (±7.37%) 38971 ops/sec (±6.34%) 1.07
abiEncode 41806 ops/sec (±6.74%) 44252 ops/sec (±6.92%) 1.06
abiDecode 29143 ops/sec (±7.54%) 30419 ops/sec (±8.89%) 1.04
sign 1558 ops/sec (±1.12%) 1656 ops/sec (±4.08%) 1.06
verify 366 ops/sec (±0.72%) 373 ops/sec (±0.78%) 1.02

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

Please sign in to comment.