Skip to content

Commit

Permalink
fix(docs): json syntax error (#6886)
Browse files Browse the repository at this point in the history
  • Loading branch information
gucovip authored Mar 12, 2024
1 parent a1f9dc4 commit 9657b86
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/docs/guides/glossary/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,24 +83,24 @@ contract Test {
```json title='Resulting JSON ABI'
[
{
"type": "constructor"
"type": "constructor",
"stateMutability": "nonpayable",
"inputs": [{"internalType":"uint256","name":"testInt","type":"uint256"}],
},
{
"type": "event"
"type": "event",
"name": "Event",
"inputs": [{"indexed":true,"internalType":"uint256","name":"b","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"c","type":"bytes32"}],
"anonymous": false,
},
{
"type": "event"
"type": "event",
"name": "Event2",
"inputs": [{"indexed":true,"internalType":"uint256","name":"b","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"c","type":"bytes32"}],
"anonymous": false,
},
{
"type": "function"
"type": "function",
"name": "foo",
"stateMutability": "nonpayable",
"inputs": [{"internalType":"uint256","name":"b","type":"uint256"},{"internalType":"bytes32","name":"c","type":"bytes32"}],
Expand Down

1 comment on commit 9657b86

@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: 9657b86 Previous: 6c075db Ratio
processingTx 9069 ops/sec (±4.52%) 9301 ops/sec (±4.81%) 1.03
processingContractDeploy 37742 ops/sec (±7.56%) 39129 ops/sec (±7.62%) 1.04
processingContractMethodSend 19712 ops/sec (±6.63%) 19443 ops/sec (±5.19%) 0.99
processingContractMethodCall 39550 ops/sec (±5.28%) 38971 ops/sec (±6.34%) 0.99
abiEncode 44878 ops/sec (±6.22%) 44252 ops/sec (±6.92%) 0.99
abiDecode 31817 ops/sec (±7.20%) 30419 ops/sec (±8.89%) 0.96
sign 1683 ops/sec (±0.99%) 1656 ops/sec (±4.08%) 0.98
verify 367 ops/sec (±2.69%) 373 ops/sec (±0.78%) 1.02

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

Please sign in to comment.