Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

NodeEthereumAttributes

import type { NodeEthereumAttributes } from "https://aws-api.deno.dev/v0.3/services/managedblockchain.ts?docs=full";

Attributes of an Ethereum node.

interface NodeEthereumAttributes {
HttpEndpoint?: string | null;
WebSocketEndpoint?: string | null;
}

§Properties

§
HttpEndpoint?: string | null
[src]

The endpoint on which the Ethereum node listens to run Ethereum JSON-RPC methods over HTTP connections from a client. Use this endpoint in client code for smart contracts when using an HTTP connection. Connections to this endpoint are authenticated using Signature Version 4.

§
WebSocketEndpoint?: string | null
[src]

The endpoint on which the Ethereum node listens to run Ethereum JSON-RPC methods over WebSockets connections from a client. Use this endpoint in client code for smart contracts when using a WebSockets connection. Connections to this endpoint are authenticated using Signature Version 4.