Skip to content

Commit

Permalink
fix(glossary): links (#7034)
Browse files Browse the repository at this point in the history
* fix(glossary): links

* Fix broken links
  • Loading branch information
danforbes authored May 9, 2024
1 parent f216540 commit f44dc5b
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 92 deletions.
File renamed without changes.
89 changes: 0 additions & 89 deletions docs/docs/glossary/json_interface.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const config = {
position: 'left',
},
{
to: '/glossary/json_interface',
to: 'glossary',
activeBasePath: '/glossary/',
label: 'Glossary',
position: 'left',
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-eth-contract/src/log_subscription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class LogsSubscription extends Web3Subscription<
public readonly topics?: (Topic | Topic[] | null)[];

/**
* The {@doclink glossary/json_interface | JSON Interface} of the event.
* The {@doclink glossary#json-interface-abi | JSON Interface} of the event.
*/
public readonly abi: AbiEventFragment & { signature: HexString };

Expand Down
2 changes: 1 addition & 1 deletion packages/web3-types/src/eth_contract_types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export interface ContractOptions {
readonly data?: Bytes;

/**
* The {@doclink glossary/json_interface | json interface} object derived from the [ABI](https://github.com/ethereum/wiki/wiki/Ethereum-Contract-ABI) of this contract.
* The {@doclink glossary#json-interface-abi | json interface} object derived from the [ABI](https://github.com/ethereum/wiki/wiki/Ethereum-Contract-ABI) of this contract.
*
* Re-setting this will regenerate the methods and events of the contract instance.
*
Expand Down

1 comment on commit f44dc5b

@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: f44dc5b Previous: f216540 Ratio
processingTx 9071 ops/sec (±3.91%) 8831 ops/sec (±4.37%) 0.97
processingContractDeploy 39081 ops/sec (±6.39%) 38915 ops/sec (±7.67%) 1.00
processingContractMethodSend 18866 ops/sec (±7.42%) 18648 ops/sec (±7.13%) 0.99
processingContractMethodCall 37436 ops/sec (±6.39%) 37036 ops/sec (±6.22%) 0.99
abiEncode 43450 ops/sec (±6.92%) 42619 ops/sec (±6.84%) 0.98
abiDecode 29508 ops/sec (±7.76%) 29814 ops/sec (±6.52%) 1.01
sign 1585 ops/sec (±3.37%) 1551 ops/sec (±1.05%) 0.98
verify 382 ops/sec (±0.53%) 366 ops/sec (±0.52%) 0.96

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

Please sign in to comment.