Skip to content

Commit

Permalink
chore: regenerate chaintypes
Browse files Browse the repository at this point in the history
  • Loading branch information
debot committed Apr 5, 2024
1 parent 39571fd commit c309c48
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions packages/chaintypes/src/moonbeam/rpc.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,24 @@ export interface RpcCalls extends GenericRpcCalls {

[method: string]: GenericRpcCall;
};
debug: {
/**
* @rpcname: debug_traceBlockByHash
**/
traceBlockByHash: GenericRpcCall;

/**
* @rpcname: debug_traceBlockByNumber
**/
traceBlockByNumber: GenericRpcCall;

/**
* @rpcname: debug_traceTransaction
**/
traceTransaction: GenericRpcCall;

[method: string]: GenericRpcCall;
};
eth: {
/**
* @rpcname: eth_accounts
Expand Down Expand Up @@ -942,6 +960,14 @@ export interface RpcCalls extends GenericRpcCalls {

[method: string]: GenericRpcCall;
};
trace: {
/**
* @rpcname: trace_filter
**/
filter: GenericRpcCall;

[method: string]: GenericRpcCall;
};
transaction: {
/**
* @rpcname: transaction_unstable_submitAndWatch
Expand All @@ -955,6 +981,24 @@ export interface RpcCalls extends GenericRpcCalls {

[method: string]: GenericRpcCall;
};
txpool: {
/**
* @rpcname: txpool_content
**/
content: GenericRpcCall;

/**
* @rpcname: txpool_inspect
**/
inspect: GenericRpcCall;

/**
* @rpcname: txpool_status
**/
status: GenericRpcCall;

[method: string]: GenericRpcCall;
};
web3: {
/**
* @rpcname: web3_clientVersion
Expand Down

0 comments on commit c309c48

Please sign in to comment.