Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Indy private #69

Open
wants to merge 39 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
9d0b66e
Website. Bug fixes and addition of gtag manager
vlasonfa Jan 19, 2024
73241d1
Ethereum single node deployemnt option for issue #19
vlasonfa Jan 23, 2024
f435bfa
Single node Ethereum setup - add diagram to the Readme file
vlasonfa Jan 23, 2024
7f8ae91
add Indy Node sample
KatsuyaMatsuoka Jan 18, 2024
bc3c392
Merge branch 'aws-samples:main' into main
KatsuyaMatsuoka Jan 25, 2024
888cb84
Merge remote-tracking branch 'remotes/upstream/main'
fsatsuki Mar 17, 2024
88621a9
Change indy's build procedure to ansible
fsatsuki Mar 18, 2024
2537bdd
Merge branch 'aws-samples:main' into main
fsatsuki Mar 18, 2024
034da99
Merge branch 'main' of https://github.com/KatsuyaMatsuoka/aws-blockch…
fsatsuki Mar 18, 2024
6d9f963
change security group rule fo indy
fsatsuki Mar 18, 2024
4ffb925
Merge pull request #40 from KatsuyaMatsuoka/main
frbrkoala Apr 5, 2024
a0c5a66
Merge branch 'main' into indy-private
vlasonfa Apr 15, 2024
16acd04
Merge branch 'main' into indy-private
vlasonfa Apr 17, 2024
5d48882
Indy. Refactoring
vlasonfa Apr 17, 2024
25436c5
Indy. Added gitignore for python venv
vlasonfa Apr 17, 2024
495062f
Indy. Refactored CDK outputs from constructs for simpler properties e…
vlasonfa Apr 17, 2024
9668f9f
Indy. Refactoring ansible configuration for simplicity and automation
vlasonfa Apr 17, 2024
085528e
Indy. Fixing bugs in ansible inventory template file
vlasonfa Apr 18, 2024
31da2e0
cdk-nag check
fsatsuki Apr 26, 2024
75a2c7b
Merge branch 'aws-samples:main' into cdk-nag
fsatsuki Apr 26, 2024
266b128
Merge pull request #73 from fsatsuki/cdk-nag
frbrkoala May 6, 2024
42e4a85
Indy. Refactoring code and README
vlasonfa May 7, 2024
bec7729
Indy. Debugging initial deployment.
vlasonfa May 7, 2024
8e755b7
Indy. Fixed commands in README
vlasonfa May 8, 2024
9e54a46
fix ansible build failed
fsatsuki May 10, 2024
abd529b
Merge branch 'indy-private' into fix_ansible_build_failed_20240509
fsatsuki May 10, 2024
cdbd9f9
run pre-commit
fsatsuki May 10, 2024
eee2a7c
Merge pull request #77 from fsatsuki/fix_ansible_build_failed_20240509
frbrkoala May 13, 2024
7f87bdf
Indy. Ansible configuration is fixed and working.
vlasonfa May 14, 2024
0088f54
Merge branch 'aws-samples:main' into main
KatsuyaMatsuoka May 16, 2024
3af46e3
Merge branch 'indy-private' into cdk-tests
KatsuyaMatsuoka May 16, 2024
719185c
fix architecture diagram
KatsuyaMatsuoka May 16, 2024
439e031
Merge branch 'aws-samples:main' into cdk-tests
KatsuyaMatsuoka Jul 25, 2024
7ef129d
add cdk unit test
KatsuyaMatsuoka Aug 22, 2024
e2b8690
Merge remote-tracking branch 'origin/cdk-tests' into cdk-tests
KatsuyaMatsuoka Aug 22, 2024
7c8eb39
Revert "Merge branch 'aws-samples:main' into cdk-tests"
KatsuyaMatsuoka Aug 22, 2024
6ad1a67
Merge pull request #117 from KatsuyaMatsuoka/cdk-tests
frbrkoala Aug 23, 2024
b67470e
update doc for indy
KatsuyaMatsuoka Sep 5, 2024
a9faed3
Merge pull request #123 from KatsuyaMatsuoka/indy-private
frbrkoala Sep 30, 2024
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,5 @@ ha-nodes-deploy*.json
*.OLD
.env
.idea

lib/indy/ansible/.venv
2 changes: 1 addition & 1 deletion docs/pre-merge-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ npm run install-pre-commit-mac
npm run run-pre-commit
```

4. Optionally, run [shellcheck](https://github.com/koalaman/shellcheck) to check for common problems in your shell scripts.
4. Optionally, run [shellcheck](https://github.com/koalaman/shellcheck) to check for common problems in your shell scripts.
24 changes: 12 additions & 12 deletions docs/setup-cloud9.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ Create an instance profile called **Cloud9-Developer-Access**

```bash
cat > ec2-trust-policy.json <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "ec2.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "ec2.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
EOF
```

Expand Down
7 changes: 7 additions & 0 deletions lib/bsc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,12 @@
"cdk_deploy_ha_nodes": "cdk deploy bsc-ha-nodes",
"cdk_destroy_common": "cdk destroy bsc-common",
"cdk_destroy_ha_nodes": "cdk destroy bsc-ha-nodes"
},
"dependencies": {
"@types/node": "^20.10.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.11"
}
}
6 changes: 1 addition & 5 deletions lib/constructs/amb-ethereum-single-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ export interface SingleNodeAMBEthereumConstructCustomProps {
export class SingleNodeAMBEthereumConstruct extends cdkContructs.Construct {
public nodeId: string;
public rpcUrl: string;
public wssRpcUrl: string;
public billingToken: string;
public rpcUrlWithBillingToken: string;
public wssRpcUrlWithBillingToken: string;


constructor(scope: cdkContructs.Construct, id: string, props: SingleNodeAMBEthereumConstructCustomProps) {
Expand Down Expand Up @@ -65,10 +63,8 @@ export class SingleNodeAMBEthereumConstruct extends cdkContructs.Construct {

this.nodeId = createNode.getResponseField('NodeId');
this.rpcUrl = `https://${this.nodeId}.t.ethereum.managedblockchain.${REGION}.amazonaws.com`;
this.wssRpcUrl = `wss://${this.nodeId}.wss.t.ethereum.managedblockchain.${REGION}.amazonaws.com`;
this.billingToken=createAccessor.getResponseField('BillingToken');
this.rpcUrlWithBillingToken = `${this.rpcUrl}/?billingtoken=${this.billingToken}`;
this.wssRpcUrlWithBillingToken = `${this.wssRpcUrl}/?billingtoken=${this.billingToken}`;
this.rpcUrlWithBillingToken = `${this.rpcUrl}?billingtoken=${this.billingToken}`;

const deleteAccessor = new cr.AwsCustomResource(this, 'deleteAccessor', {
onDelete: {
Expand Down
8 changes: 0 additions & 8 deletions lib/fantom/.gitignore

This file was deleted.

331 changes: 0 additions & 331 deletions lib/fantom/README.md

This file was deleted.

55 changes: 0 additions & 55 deletions lib/fantom/app.ts

This file was deleted.

57 changes: 0 additions & 57 deletions lib/fantom/cdk.json

This file was deleted.

Loading