Skip to content

Commit e91f713

Browse files
committed
Merge branch 'main' into 1668-wagmi
2 parents 57fd9fe + f85b580 commit e91f713

File tree

3 files changed

+35
-70
lines changed

3 files changed

+35
-70
lines changed

.github/workflows/trivy-cache.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: trivy-cache-db
3+
4+
on:
5+
pull_request:
6+
branches:
7+
- main
8+
workflow_dispatch:
9+
schedule:
10+
- cron: "0 1 * * *"
11+
12+
jobs:
13+
trivy:
14+
name: Run trivy scanner
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Trivy Cache
19+
uses: ConsenSys/docs-gha/trivy-update-cache@main
Lines changed: 8 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,13 @@
11
---
22
title: "eth_getProof"
3+
hide_title: true
4+
hide_table_of_contents: true
35
---
46

5-
import Tabs from '@theme/Tabs';
6-
import TabItem from '@theme/TabItem';
7+
import ParserOpenRPC from "@site/src/components/ParserOpenRPC"
8+
import { NETWORK_NAMES } from "@site/src/plugins/plugin-json-rpc"
79

8-
import Description from "/services/reference/_partials/_eth_getproof-description.mdx";
9-
10-
<Description />
11-
12-
## Parameters
13-
14-
import Params from "./_eth_getproof-parameters.mdx";
15-
16-
<Params />
17-
18-
## Returns
19-
20-
import Returns from "/services/reference/_partials/_eth_getproof-returns.mdx";
21-
22-
<Returns />
23-
24-
## Example
25-
26-
import Example from "/services/reference/_partials/_eth_getproof-example.mdx";
27-
28-
<Example />
29-
30-
### Request
31-
32-
import Request from "./_eth_getproof-request.mdx";
33-
34-
<Request />
35-
36-
### Response
37-
38-
import Response from "/services/reference/_partials/_eth_getproof-response.mdx";
39-
40-
<Response />
10+
<ParserOpenRPC
11+
network={NETWORK_NAMES.linea}
12+
method="eth_getProof"
13+
/>
Lines changed: 8 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,13 @@
11
---
22
title: "eth_sendRawTransaction"
3+
hide_title: true
4+
hide_table_of_contents: true
35
---
46

5-
import Tabs from "@theme/Tabs"
6-
import TabItem from "@theme/TabItem"
7+
import ParserOpenRPC from "@site/src/components/ParserOpenRPC"
8+
import { NETWORK_NAMES } from "@site/src/plugins/plugin-json-rpc"
79

8-
import Description from "/services/reference/_partials/_eth_sendrawtransaction-description.mdx"
9-
10-
<Description />
11-
12-
## Parameters
13-
14-
import Params from "/services/reference/_partials/_eth_sendrawtransaction-parameters.mdx"
15-
16-
<Params />
17-
18-
## Returns
19-
20-
import Returns from "/services/reference/_partials/_eth_sendrawtransaction-returns.mdx"
21-
22-
<Returns />
23-
24-
## Example
25-
26-
import Example from "/services/reference/_partials/_eth_sendrawtransaction-example.mdx"
27-
28-
<Example />
29-
30-
### Request
31-
32-
import Request from "./_eth_sendrawtransaction-request.mdx"
33-
34-
<Request />
35-
36-
### Response
37-
38-
import Response from "/services/reference/_partials/_eth_sendrawtransaction-response.mdx"
39-
40-
<Response />
10+
<ParserOpenRPC
11+
network={NETWORK_NAMES.linea}
12+
method="eth_sendRawTransaction"
13+
/>

0 commit comments

Comments
 (0)