Initial commit

This commit is contained in:
Alekos Filini 2020-01-22 23:13:11 +01:00
commit 96c87ea5ed
No known key found for this signature in database
GPG Key ID: 5E8AFC3034FDFA4F
8 changed files with 39 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.swp

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Magical Bitcoin Wallet
A modern, lightweight, generic multisig wallet written in Rust!

2
core/electrum_client/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
Cargo.lock

View File

@ -0,0 +1,9 @@
[package]
name = "electrum_client"
version = "0.1.0"
authors = ["Alekos Filini <alekos.filini@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}

2
core/lib/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
Cargo.lock

8
core/lib/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "magical-bitcoin-wallet"
version = "0.1.0"
authors = ["Riccardo Casatta <riccardo@casatta.it>", "Alekos Filini <alekos.filini@gmail.com>"]
edition = "2018"
[dependencies]
"electrum_client" = { version = "^0.1", path = "../electrum_client" }

7
core/lib/src/lib.rs Normal file
View File

@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}