Skip to content

Commit c7c401a

Browse files
(chore) Various renaming tasks #1339 (#1340)
* hyperledger and vcx renaming, remove coc, maintainers Signed-off-by: George Mulhearn <gmulhearn@anonyome.com> * add authors Signed-off-by: George Mulhearn <gmulhearn@anonyome.com> * trigger CI Signed-off-by: George Mulhearn <gmulhearn@anonyome.com> * trigger CI Signed-off-by: George Mulhearn <gmulhearn@anonyome.com> --------- Signed-off-by: George Mulhearn <gmulhearn@anonyome.com> Co-authored-by: George Mulhearn <gmulhearn@anonyome.com>
1 parent eb42763 commit c7c401a

File tree

68 files changed

+99
-274
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+99
-274
lines changed

.github/settings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
repository:
66
name: vcx
77
description: vcx
8-
homepage: https://wiki.hyperledger.org/display/aries
8+
homepage: https://lf-openwallet-foundation.atlassian.net/wiki/spaces/VCX1/overview
99
default_branch: main
1010
has_downloads: false
1111
has_issues: true

.github/workflows/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ env:
1212
DOCKER_BUILDKIT: 1
1313
MAIN_BRANCH: main
1414
URL_DOCKER_REGISTRY: ghcr.io
15-
DOCKER_IMAGE_AGENCY: ghcr.io/absaoss/vcxagencynode/vcxagency-node:2.6.0
1615
DOCKER_IMAGE_POOL: ghcr.io/hyperledger/aries-vcx/indy_pool_localhost:1.15.0
1716
CMAKE_POLICY_VERSION_MINIMUM: 3.5 # needed for ZMQ building, after cmake 4.0 update.
1817

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 166 deletions
This file was deleted.

Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ members = [
3535

3636
[workspace.package]
3737
version = "0.67.0"
38-
authors = [
39-
"Absa Group Limited",
40-
"Hyperledger Indy Contributors <hyperledger-indy@lists.hyperledger.org>",
41-
]
38+
authors = ["OpenWallet Foundation"]
4239
description = "Library to work with Aries protocols & collection of supporting components"
4340
license = "Apache-2.0"
4441
edition = "2021"
@@ -141,7 +138,7 @@ reqwest = "0.12.12"
141138
axum = "0.8.1"
142139
actix-web = "4"
143140
tower-http = "0.6.2"
144-
hyper= "1.6.0"
141+
hyper = "1.6.0"
145142
hyper-tls = "0.6.0"
146143
hyper-util = "0.1.10"
147144
http-body-util = "0.1.2"

MAINTAINERS.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
### Active Maintainers
44
| name | Github | Discord |
55
|-----------------|------------------------------------------------|------------------|
6-
| Patrik Stas | [@Patrik-Stas](https://github.com/Patrik-Stas) | patrikstas |
76
| James Ebert | [@JamesKEbert](https://github.com/JamesKEbert) | jamesebert |
87
| George Mulhearn | [@gmulhearn](https://github.com/gmulhearn) | gmulhearn |

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# aries-vcx
1+
# VCX
22

3-
![CI build](https://github.com/hyperledger/aries-vcx/workflows/CI/badge.svg)
3+
![CI build](https://github.com/openwallet-foundation/vcx/workflows/CI/badge.svg)
44
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
5-
[![Join the chat at https://chat.hyperledger.org/channel/aries](https://img.shields.io/badge/Chat%20on-Hyperledger%20Chat-blue)](https://chat.hyperledger.org/channel/aries)
5+
[![Join the chat at https://discord.com/channels/1022962884864643214/1344319756324311123](https://img.shields.io/badge/Chat%20on-Discord-blue)](https://discord.com/channels/1022962884864643214/1344319756324311123)
66

77
The repository contains Rust crates to build
88

9-
- [Aries](https://github.com/hyperledger/aries-rfcs/) based applications (mobile, server, anything, ...),
9+
- [Aries](https://github.com/decentralized-identity/aries-rfcs) based applications (mobile, server, anything, ...),
1010
- [DIDComm](https://didcomm.org/) related components.
1111

1212
## Aries implementation
@@ -18,13 +18,13 @@ The repository contains Rust crates to build
1818
- [`aries_vcx_wallet`](aries/aries_vcx_wallet) - Interfaces for interaction with wallets.
1919
- [`agents`](aries/agents) - Aries agents built on top of `aries_vcx`.
2020

21-
## Did document implementation
21+
## DID Core implementation
2222

2323
- [`did_doc`](did_core/did_doc) - Building and parsing [DID Documents](https://w3c.github.io/did-core/)
24+
- [`did_parser`](did_core/did_parser_nom) - Building and parsing [DIDs](https://w3c.github.io/did-core/)
2425

25-
## Did methods implementation
26+
## DID Method implementations
2627

27-
- [`did_parser`](did_core/did_parser_nom) - Building and parsing [DIDs](https://w3c.github.io/did-core/)
2828
- [`did_peer`](did_core/did_methods/did_peer) - https://identity.foundation/peer-did-method-spec/
2929
- [`did_sov`](did_core/did_methods/did_resolver_sov) - https://sovrin-foundation.github.io/sovrin/spec/did-method-spec-template.html
3030
- [`did_cheqd`](did_core/did_methods/did_cheqd) - https://docs.cheqd.io/product/architecture/adr-list/adr-001-cheqd-did-method
@@ -38,21 +38,21 @@ Do you have a question ❓Are you considering using our components? 🚀 We'll b
3838

3939
There's 2 best way to reach us:
4040

41-
- Leave us message on `aries-vcx` [discord](https://discord.com/channels/905194001349627914/955480822675308604) channel.
42-
- Join our Zoom community calls. Biweekly Tuesdays @ 11:00 pm UTC via Zoom, find more details on [wiki](https://wiki.hyperledger.org/display/ARIES/Community+calls)
41+
- Leave us message on `vcx` [discord](https://discord.com/channels/1022962884864643214/1344319756324311123) channel.
42+
- Join our Zoom community calls. Biweekly Tuesdays @ 11:00 pm UTC via Zoom, find more details on [wiki](https://lf-openwallet-foundation.atlassian.net/wiki/spaces/VCX1/pages/119767052/VCX+Community+Calls)
4343

4444
## Versioning & releases
4545

4646
- Crates are not yet published on crates.io. You can consume crates as github-type Cargo dependency.
4747
- All releases have currently major version `0`
4848
- We bump minor version on releases containing new features, significant refactors or breaking changes.
4949
- We bump patch version if release only contains fixes or smaller refactoring.
50-
- See [releases](https://github.com/hyperledger/aries-vcx/releases) page.
50+
- See [releases](https://github.com/openwallet-foundation/vcx/releases) page.
5151
- MSRV 1.81 - Crates are known to be stable with atleast Rust version 1.81
5252

5353
# Contributions
5454

55-
Contributions are very welcome! If you have questions or issues, please let us know on [Discord](https://chat.hyperledger.org/channel/aries) or at our [bi-weekly community call](https://wiki.hyperledger.org/display/ARIES/Community+calls).
55+
Contributions are very welcome! If you have questions or issues, please let us know on [Discord](https://discord.com/channels/1022962884864643214/1344319756324311123) or at our [bi-weekly community call](https://lf-openwallet-foundation.atlassian.net/wiki/spaces/VCX1/pages/119767052/VCX+Community+Calls).
5656

5757
## Install
5858

aries/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# <img alt="Hyperledger Aries logo" src="docs/aries-logo.png" width="45px" /> Aries components
1+
# <img alt="Aries logo" src="docs/aries-logo.png" width="45px" /> Aries components
22

33
## Aries components
44

aries/agents/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
This directory contains some of Rust agents built on top of the `aries_vcx` crate:
44

5-
- [`aries-vcx-agent`](./aries-vcx-agent) - aries agent library used to build our cross-framework testing [backchannel](https://github.com/hyperledger/aries-agent-test-harness/tree/main/aries-backchannels/aries-vcx). Not intended for production use. A new Aries VCX Framework is in development to provide simple, easy to use, and production ready functions for use.
5+
- [`aries-vcx-agent`](./aries-vcx-agent) - aries agent library used to build our cross-framework testing [backchannel](https://github.com/openwallet-foundation/owl-agent-test-harness/tree/main/aries-backchannels/aries-vcx). Not intended for production use. A new VCX Framework is in development to provide simple, easy to use, and production ready functions for use.
66
- [`mediator`](./mediator) - didcomm mediator service
77
- [`mobile-demo`](./mobile_demo) - android mobile app demo created using UniFFI bindings for aries-vcx library

aries/agents/aath-backchannel/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
name = "aries-vcx-backchannel"
33
version = "0.1.0"
44
edition = "2018"
5-
authors = [
6-
"Absa Group Limited",
7-
"Hyperledger Indy Contributors <hyperledger-indy@lists.hyperledger.org>",
8-
]
95
description = "Backchannel for aries-vcx"
106

117
[dependencies]

aries/agents/aath-backchannel/readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Aries VCX Backchannel for Aries Agent Test Harness
22
This crate contains a Rust server implementing an "Aries Agent Test Harness Backchannel", using [aries-vcx](../../aries_vcx/README.md) as the core implementation.
3-
The implementation is an actix server, with HTTP APIs compliant with the [AATH backchannel](https://github.com/hyperledger/aries-agent-test-harness).
3+
The implementation is an actix server, with HTTP APIs compliant with the [AATH backchannel](https://github.com/openwallet-foundation/owl-agent-test-harness).
44

55
This directory also contains a [dockerfile](Dockerfile.aries-vcx), which when ran as a container, will run the server on port 9020, compatible with integration
6-
into the AATH setup. Aries-VCX CI also builds and publishes this image, where it is then [consumed in the AATH](https://github.com/hyperledger/aries-agent-test-harness/tree/main/aries-backchannels/aries-vcx).
6+
into the AATH setup. Aries-VCX CI also builds and publishes this image, where it is then [consumed in the AATH](https://github.com/openwallet-foundation/owl-agent-test-harness/tree/main/aries-backchannels/aries-vcx).
77

88
The AATH scripts will spin up multiple of these backchannel simulatenously using the images, and test them against one another; (vcx<->vcx, vcx<->acapy, etc).
99

@@ -15,7 +15,7 @@ For sake of better DX, the following steps can be used as a starting point for p
1515
A general rule of thumb, is to make sure the AATH backchannel works against itself before testing against other agents (e.g. acapy).
1616

1717
Use the following to run 2 VCX AATH instances and test them with specific test suites in the AATH:
18-
1. clone the [AATH repo](https://github.com/hyperledger/aries-agent-test-harness/tree/main)
18+
1. clone the [AATH repo](https://github.com/openwallet-foundation/owl-agent-test-harness/tree/main)
1919
2. in the root of the AATH repo, start the standard AATH services (ledger, DID resolver, tails server): `./manage start`. If this fails due to von service, you may have to build von seperately first: `./manage service build von-network`
2020
3. from within this directory (aries/agent/aath-backchannel), run the server twice, on port 9020 and 9030, with config to use the AATH components (in two different terminals, leave them running):
2121
1. `LEDGER_URL=http://localhost:9000 GENESIS_FILE=resource/indypool.txn cargo run -- -p 9020`,
@@ -24,11 +24,11 @@ Use the following to run 2 VCX AATH instances and test them with specific test s
2424
5. install deps: `pip install -r requirements.txt` (if step 6 fails, also install `aiohttp`: `pip3 install aiohttp`, and perhaps `setuptools`: `pip3 install setuptools`)
2525
6. run specific tests between the two agents, using the `behave` CLI with it's tagging system. e.g. `behave -D Faber=http://0.0.0.0:9020 -D Acme=http://0.0.0.0:9020 -D Bob=http://0.0.0.0:9030 -t @T001-RFC0160` to run the first RFC0160 (connection) test. Check behave docs for more details.
2626
1. e.g. run a test with ledger operations: `behave -D Faber=http://0.0.0.0:9020 -D Acme=http://0.0.0.0:9020 -D Bob=http://0.0.0.0:9030 -t @T001-RFC0036`
27-
2. e.g. to simulate the ariesvcx-ariesvcx "runset" defined in the aath test suite `behave -D Faber=http://0.0.0.0:9020 -D Acme=http://0.0.0.0:9020 -D Bob=http://0.0.0.0:9030 -t @RFC0036,@RFC0037,@RFC0160,@RFC0023,@RFC0793 -t ~@wip -t ~@RFC0434 -t ~@RFC0453 -t ~@RFC0211 -t ~@DIDExchangeConnection -t ~@Transport_Ws`. See the `TEST_SCOPE` of [test-harness-ariesvcx-ariesvcx.yml](https://github.com/hyperledger/aries-agent-test-harness/blob/main/.github/workflows/test-harness-ariesvcx-ariesvcx.yml) for the latest.
27+
2. e.g. to simulate the ariesvcx-ariesvcx "runset" defined in the aath test suite `behave -D Faber=http://0.0.0.0:9020 -D Acme=http://0.0.0.0:9020 -D Bob=http://0.0.0.0:9030 -t @RFC0036,@RFC0037,@RFC0160,@RFC0023,@RFC0793 -t ~@wip -t ~@RFC0434 -t ~@RFC0453 -t ~@RFC0211 -t ~@DIDExchangeConnection -t ~@Transport_Ws`. See the `TEST_SCOPE` of [test-harness-ariesvcx-ariesvcx.yml](https://github.com/openwallet-foundation/owl-agent-test-harness/blob/main/.github/workflows/test-harness-ariesvcx-ariesvcx.yml) for the latest.
2828

2929
## VCX AATH to ACAPy AATH Testing
3030
To test the a VCX AATH instance against another agent, such as ACApy, the following modified steps can be followed:
31-
1. clone the [AATH repo](https://github.com/hyperledger/aries-agent-test-harness/tree/main)
31+
1. clone the [AATH repo](https://github.com/openwallet-foundation/owl-agent-test-harness/tree/main)
3232
2. in the root of the AATH repo, start the standard AATH services (ledger, DID resolver, tails server) AND an ACApy agent on port 9030 (Bob agent): `AGENT_PUBLIC_ENDPOINT=http://localhost:9032 ./manage start -b acapy-main`. If this fails, you may have to build acapy-main seperately first `./manage build -a acapy-main`
3333
3. from within this directory (aries/agent/aath-backchannel), run the server on port 9020, with config to use the AATH components:
3434
1. `DOCKERHOST=host.docker.internal LEDGER_URL=http://localhost:9000 GENESIS_FILE=resource/indypool.txn cargo run -- -p 9020`

0 commit comments

Comments
 (0)