Skip to content

Commit

Permalink
Merge pull request #14 from Concordium/add-credential-deployment
Browse files Browse the repository at this point in the history
Add credential deployment
  • Loading branch information
orhoj authored Oct 28, 2021
2 parents 41b5d71 + b734aac commit 8ce67b6
Show file tree
Hide file tree
Showing 29 changed files with 3,709 additions and 1,468 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@
],
"rules": {
"quotes": [2, "single", { "avoidEscape": true }]
}
},
"ignorePatterns": ["pkg/**/"]
}
8 changes: 8 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ jobs:
- name: Build gRPC
run: yarn generate

- name: Install rust
run: rustup default 1.53

- name: Get wasm-pack
uses: jetli/[email protected]
with:
version: 'latest'

- name: Build
run: yarn build

Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ node_modules

# Compiled files
lib
target

# Auto generate files from the gRPC proto file
grpc

# WASM files are generated with wasm-pack
pkg

# Manual testing files
testing.ts
testing.js
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "deps/concordium-grpc-api"]
path = deps/concordium-grpc-api
url = [email protected]:Concordium/concordium-grpc-api.git
[submodule "deps/concordium-base"]
path = deps/concordium-base
url = https://github.com/Concordium/concordium-base.git
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.3.0

### Added

- Support for the credential deployment transaction.
- Helpers to decrypt mobile wallet exports, in particular to extract identity information from the export.
Loading

0 comments on commit 8ce67b6

Please sign in to comment.