Skip to main content

CDK construct to deploy an Ethereum node running on Amazon Managed Blockchain

Project description

Ethereum on Amazon Managed Blockchain

license release npm:version PyPi:version Maven:version NuGet:version

This repository contains a CDK construct to deploy an Ethereum node running on Amazon Managed Blockchain. The following networks are supported:

  • Mainnet (default)
  • Testnet: Goerli
  • Testnet: Rinkeby
  • Testnet: Ropsten

Installation

Note that this construct requires AWS CDK v2.

JavaScript

npm install --save @cdklabs/cdk-ethereum-node

Python

pip3 install cdklabs.cdk-ethereum-node

Java

Add the following to pom.xml:

<dependency>
  <groupId>io.github.cdklabs</groupId>
  <artifactId>cdk-ethereum-node</artifactId>
</dependency>

.NET

dotnet add package Cdklabs.CdkEthereumNode

Usage

A minimally complete deployment is shown below. By default, a bc.t3.large node will be created on the Ethereum Mainnet.

import { Stack, StackProps } from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { EthereumNode, Network, InstanceType } from '@cdklabs/cdk-ethereum-node';

export class MyStack extends Stack {
  constructor(scope: Construct, id: string, props?: StackProps) {
    super(scope, id, props);
    new EthereumNode(this, 'Example');
  }
}

The equivalent Python code is as follows:

from aws_cdk import Stack
from cdklabs.cdk_ethereum_node import EthereumNode

class MyStack(Stack):
    def __init__(self, scope, id, **kwargs):
        super().__init__(scope, id, **kwargs)
        EthereumNode(self, 'Example')

The following is a more complex instantiation illustrating some of the node configuration options available.

new EthereumNode(this, 'Example', {
  network: Network.ROPSTEN,
  availabilityZone: 'us-east-1b',
  instanceType: InstanceType.BURSTABLE3_LARGE,
});

See the API Documentation for details on all available input and output parameters.

References

Contributing

Pull requests are welcomed. Please review the Contributing Guidelines and the Code of Conduct.

Security

See CONTRIBUTING for more information.

Authors

License

This project is licensed under the MIT-0 License. See the LICENSE file for details.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cdklabs.cdk-ethereum-node-0.0.437.tar.gz (27.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cdklabs.cdk_ethereum_node-0.0.437-py3-none-any.whl (26.8 kB view details)

Uploaded Python 3

File details

Details for the file cdklabs.cdk-ethereum-node-0.0.437.tar.gz.

File metadata

File hashes

Hashes for cdklabs.cdk-ethereum-node-0.0.437.tar.gz
Algorithm Hash digest
SHA256 6aa3d962eb6a35dfb99f00673ac31879a89f32e0bfd330b8101080c25b4be774
MD5 a7cc1d541f92f45115bd3e490ef1f43b
BLAKE2b-256 819e99f0fc2dcc376a0758199e55adb4726bfe02cb130cbbff26cda57e4f13de

See more details on using hashes here.

File details

Details for the file cdklabs.cdk_ethereum_node-0.0.437-py3-none-any.whl.

File metadata

File hashes

Hashes for cdklabs.cdk_ethereum_node-0.0.437-py3-none-any.whl
Algorithm Hash digest
SHA256 6e886a4d9cf48c06606e15c8cb9c7de5597e7aa7edcd8911c4b5f89af54035dd
MD5 ef28ef897642c139451c2b61de361c8d
BLAKE2b-256 52798a47203ca6cecdc9e597c52a77efe375705e0191cafd8864ad81ba35fd1d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page