Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
161 changes: 94 additions & 67 deletions docs/fundamentals/configuration.md

Large diffs are not rendered by default.

457 changes: 139 additions & 318 deletions docs/interacting/json-rpc-ns/admin.md

Large diffs are not rendered by default.

92 changes: 46 additions & 46 deletions docs/interacting/json-rpc-ns/clique.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This method drops a currently running proposal. The signer will not cast further
<Tabs>
<TabItem value="params" label="Parameters">

1. `signer`: _string_ (address)
1. `signer`: *string* (address)


</TabItem>
Expand Down Expand Up @@ -43,7 +43,7 @@ curl localhost:8545 \
}
```

`result`: _boolean_
`result`: *boolean*

</TabItem>
</Tabs>
Expand All @@ -55,7 +55,7 @@ Retrieves the signer of the block with the given hash. Returns error of a block
<Tabs>
<TabItem value="params" label="Parameters">

1. `hash`: _string_ (hash)
1. `hash`: *string* (hash)


</TabItem>
Expand Down Expand Up @@ -84,7 +84,7 @@ curl localhost:8545 \
}
```

`result`: _string_ (address)
`result`: *string* (address)

</TabItem>
</Tabs>
Expand Down Expand Up @@ -119,7 +119,7 @@ curl localhost:8545 \
}
```

`result`: array of _string_ (address)
`result`: array of *string* (address)

</TabItem>
</Tabs>
Expand Down Expand Up @@ -154,7 +154,7 @@ curl localhost:8545 \
}
```

`result`: array of _string_
`result`: array of *string*

</TabItem>
</Tabs>
Expand All @@ -166,7 +166,7 @@ Retrieves the list of authorized signers at the specified block by hash.
<Tabs>
<TabItem value="params" label="Parameters">

1. `hash`: _string_ (hash)
1. `hash`: *string* (hash)


</TabItem>
Expand Down Expand Up @@ -195,7 +195,7 @@ curl localhost:8545 \
}
```

`result`: array of _string_ (address)
`result`: array of *string* (address)

</TabItem>
</Tabs>
Expand All @@ -207,7 +207,7 @@ Retrieves the list of authorized signers at the specified block by hash but with
<Tabs>
<TabItem value="params" label="Parameters">

1. `hash`: _string_ (hash)
1. `hash`: *string* (hash)


</TabItem>
Expand Down Expand Up @@ -236,7 +236,7 @@ curl localhost:8545 \
}
```

`result`: array of _string_
`result`: array of *string*

</TabItem>
</Tabs>
Expand All @@ -248,7 +248,7 @@ Retrieves the list of authorized signers at the specified block by block number.
<Tabs>
<TabItem value="params" label="Parameters">

1. `number`: _string_ (hex integer)
1. `number`: *string* (hex integer)


</TabItem>
Expand Down Expand Up @@ -277,7 +277,7 @@ curl localhost:8545 \
}
```

`result`: array of _string_ (address)
`result`: array of *string* (address)

</TabItem>
</Tabs>
Expand All @@ -289,7 +289,7 @@ Retrieves a snapshot of all clique state at a given block.
<Tabs>
<TabItem value="params" label="Parameters">

1. `number`: _string_ (hex integer)
1. `number`: *string* (hex integer)


</TabItem>
Expand Down Expand Up @@ -318,19 +318,19 @@ curl localhost:8545 \
}
```

`result`: _object_
- `hash`: _string_ (hash)
- `number`: _string_ (hex integer)
- `signerLimit`: _string_ (hex integer)
- `signers`: map of _string_ (hex integer)
- `tally`: map of _object_
- `authorize`: _boolean_
- `votes`: _string_ (hex integer)
- `votes`: array of _object_
- `address`: _string_ (address)
- `authorize`: _boolean_
- `block`: _string_ (hex integer)
- `signer`: _string_ (address)
`result`: *object*
- `hash`: *string* (hash)
- `number`: *string* (hex integer)
- `signerLimit`: *string* (hex integer)
- `signers`: map of *string* (hex integer)
- `tally`: map of *object*
- `authorize`: *boolean*
- `votes`: *string* (hex integer)
- `votes`: array of *object*
- `address`: *string* (address)
- `authorize`: *boolean*
- `block`: *string* (hex integer)
- `signer`: *string* (address)

</TabItem>
</Tabs>
Expand All @@ -342,7 +342,7 @@ Retrieves the state snapshot at a given block.
<Tabs>
<TabItem value="params" label="Parameters">

1. `hash`: _string_ (hash)
1. `hash`: *string* (hash)


</TabItem>
Expand Down Expand Up @@ -371,19 +371,19 @@ curl localhost:8545 \
}
```

`result`: _object_
- `hash`: _string_ (hash)
- `number`: _string_ (hex integer)
- `signerLimit`: _string_ (hex integer)
- `signers`: map of _string_ (hex integer)
- `tally`: map of _object_
- `authorize`: _boolean_
- `votes`: _string_ (hex integer)
- `votes`: array of _object_
- `address`: _string_ (address)
- `authorize`: _boolean_
- `block`: _string_ (hex integer)
- `signer`: _string_ (address)
`result`: *object*
- `hash`: *string* (hash)
- `number`: *string* (hex integer)
- `signerLimit`: *string* (hex integer)
- `signers`: map of *string* (hex integer)
- `tally`: map of *object*
- `authorize`: *boolean*
- `votes`: *string* (hex integer)
- `votes`: array of *object*
- `address`: *string* (address)
- `authorize`: *boolean*
- `block`: *string* (hex integer)
- `signer`: *string* (address)

</TabItem>
</Tabs>
Expand All @@ -395,7 +395,7 @@ Forces Clique block producer to produce a new block
<Tabs>
<TabItem value="params" label="Parameters">

1. `parentHash`: _string_ (hash)
1. `parentHash`: *string* (hash)


</TabItem>
Expand Down Expand Up @@ -424,7 +424,7 @@ curl localhost:8545 \
}
```

`result`: _boolean_
`result`: *boolean*

</TabItem>
</Tabs>
Expand Down Expand Up @@ -459,7 +459,7 @@ curl localhost:8545 \
}
```

`result`: array of _boolean_
`result`: array of *boolean*

</TabItem>
</Tabs>
Expand All @@ -471,9 +471,9 @@ Adds a new authorization proposal that the signer will attempt to push through.
<Tabs>
<TabItem value="params" label="Parameters">

1. `signer`: _string_ (address)
1. `signer`: *string* (address)

2. `vote`: _boolean_
2. `vote`: *boolean*


</TabItem>
Expand Down Expand Up @@ -502,7 +502,7 @@ curl localhost:8545 \
}
```

`result`: _boolean_
`result`: *boolean*

</TabItem>
</Tabs>
Expand Down
Loading