Skip to content

Commit b0dd8c5

Browse files
authored
Merge pull request #50 from gorazdko/features
Features
2 parents 5830597 + 4599e52 commit b0dd8c5

Some content is hidden

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

53 files changed

+5309
-593
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Temporary Items
5656
*.a
5757
*.la
5858
*.lo
59+
libwally-embedded/
5960

6061
# Shared objects (inc. Windows DLLs)
6162
*.dll

.gitmodules

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
[submodule "deps/bc-shamir"]
55
path = deps/bc-shamir
66
url = [email protected]:BlockchainCommons/bc-shamir.git
7-
[submodule "deps/bc-slip39"]
8-
path = deps/bc-slip39
9-
url = [email protected]:BlockchainCommons/bc-slip39.git
107
[submodule "deps/TRNG-for-ATSAMD51J19A-Adafruit-Metro-M4-"]
118
path = deps/TRNG-for-ATSAMD51J19A-Adafruit-Metro-M4-
129
url = [email protected]:SapientHetero/TRNG-for-ATSAMD51J19A-Adafruit-Metro-M4-.git
@@ -16,3 +13,21 @@
1613
[submodule "deps/GxEPD2"]
1714
path = deps/GxEPD2
1815
url = [email protected]:BlockchainCommons/GxEPD2.git
16+
[submodule "deps/libwally-core"]
17+
path = deps/libwally-core
18+
url = [email protected]:ElementsProject/libwally-core.git
19+
[submodule "deps/secp256k1-embedded"]
20+
path = deps/secp256k1-embedded
21+
url = [email protected]:BlockchainCommons/secp256k1-embedded.git
22+
[submodule "deps/bc-bytewords"]
23+
path = deps/bc-bytewords
24+
url = [email protected]:BlockchainCommons/bc-bytewords.git
25+
[submodule "deps/bc-sskr"]
26+
path = deps/bc-sskr
27+
url = [email protected]:BlockchainCommons/bc-sskr.git
28+
[submodule "deps/Library-Arduino-Cbor"]
29+
path = deps/Library-Arduino-Cbor
30+
url = [email protected]:jjtara/Library-Arduino-Cbor.git
31+
[submodule "deps/ArduinoSTL"]
32+
path = deps/ArduinoSTL
33+
url = [email protected]:mike-matera/ArduinoSTL.git

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ This table below also establishes provenance (repository of origin, permalink, a
4747
| Cryptosuite | [https://github.com/ksedgwic/Cryptosuite](https://github.com/ksedgwic/Cryptosuite) | ae0e3eeb4eb00c53fe235e0c34f77ade11f1982a | 2010 Peter Knight | <none> |
4848
| bip39 | [https://github.com/ksedgwic/bip39](https://github.com/ksedgwic/bip39) | 9b8fa3c7d145c39558c2534f6cf40879477d93a1 | 2018 Chris Howe | [MIT License](https://github.com/ksedgwic/bip39/blob/master/LICENSE) |
4949
| TRNG-for-ATSAMD51J19A-Adafruit-Metro-M4- | [https://github.com/SapientHetero/TRNG-for-ATSAMD51J19A-Adafruit-Metro-M4-](https://github.com/SapientHetero/TRNG-for-ATSAMD51J19A-Adafruit-Metro-M4-) | 17d5e36cd922ce7df8047d9c89633dca9b5ae122 | 2019 Ron Sutton | [MIT License](https://github.com/SapientHetero/TRNG-for-ATSAMD51J19A-Adafruit-Metro-M4-/blob/master/LICENSE.txt) |
50+
| libwally-core | [https://github.com/ElementsProject/libwally-core](https://github.com/ElementsProject/libwally-core) | e0d0634aea716d813744326ea6c7590eb9fc381c | Jon Griffiths (Blockstream) 2016 | [BSD/MIT license](https://github.com/ElementsProject/libwally-core/blob/master/LICENSE) |
51+
| Library-arduino-cbor | [https://github.com/jjtara/Library-Arduino-Cbor](https://github.com/jjtara/Library-Arduino-Cbor) | 996bf4a853513ee1fb94286691209a067c915bfb | jjtara 20014 | [Apache license](https://github.com/jjtara/Library-Arduino-Cbor/blob/master/LICENSE) |
5052

5153
### Dependencies
5254

deps/ArduinoSTL

Submodule ArduinoSTL added at 7411816

deps/Library-Arduino-Cbor

Submodule Library-Arduino-Cbor added at 996bf4a

deps/bc-bytewords

Submodule bc-bytewords added at 81fbaa5

deps/bc-slip39

Lines changed: 0 additions & 1 deletion
This file was deleted.

deps/bc-sskr

Submodule bc-sskr added at 9714293
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This file provides metadata for the Arduino IDE.
2+
name=bc-ur-arduino
3+
version=0.1.0
4+
author=Christopher Allen <[email protected]>
5+
maintainer=Christopher Allen <[email protected]>
6+
sentence=Implementation of bc-ur
7+
paragraph=Implementation of bc-ur for use in Blockchain Commons Software Projects. Depends on bc-crypto-base and ArduinoSTL
8+
category=Other
9+
url=
10+
architectures=*
11+
includes=
12+
depends=bc-crypto-base, ArduinoSTL

0 commit comments

Comments
 (0)