Skip to content

Commit 9b59124

Browse files
authored
feat: castor create signed prism did operation (#347)
Signed-off-by: Francisco Javier Ribo Labrador <[email protected]>
1 parent bda7c5f commit 9b59124

20 files changed

+1305
-531
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Install Rust toolchain
3535
uses: actions-rs/toolchain@v1
3636
with:
37-
toolchain: stable
37+
toolchain: nightly
3838
override: true
3939

4040
- name: Install wasm-pack

.github/workflows/e2e-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: Install Rust toolchain
5757
uses: actions-rs/toolchain@v1
5858
with:
59-
toolchain: stable
59+
toolchain: nightly
6060
override: true
6161

6262
- name: Install wasm-pack

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Install Rust toolchain
3636
uses: actions-rs/toolchain@v1
3737
with:
38-
toolchain: 1.82.0
38+
toolchain: nightly
3939
override: true
4040

4141
- name: Install wasm-pack

.gitignore

+8-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,11 @@ yarn-error.log*
2424
*.db
2525
didcomm-pkg
2626
generated-docs
27-
*.commit
27+
*.commit
28+
29+
# Environment variables
30+
.env
31+
.env.local
32+
.env.development.local
33+
.env.test.local
34+
.env.production.local

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Identus TypeScript SDK
22

3-
[![Coverage Status](https://coveralls.io/repos/github/hyperledger/identus-edge-agent-sdk-ts/badge.svg?branch=main)](https://coveralls.io/github/hyperledger/identus-edge-agent-sdk-ts?branch=main)
3+
<p align="center">
4+
<img src="https://cdn.jsdelivr.net/gh/hyperledger/identus@latest/resources/images/hyperledger-identus.svg" />
5+
</p>
6+
7+
[![Coverage Status](https://coveralls.io/repos/github/hyperledger/identus-edge-agent-sdk-ts/badge.svg?branch=master)](https://coveralls.io/github/hyperledger/identus-edge-agent-sdk-ts?branch=master)
48

59
---
610

0 commit comments

Comments
 (0)