Skip to content

Commit ddaa43e

Browse files
committed
Start splitting to modules that can be reused by other libraries
1 parent a1c0b95 commit ddaa43e

File tree

193 files changed

+3220
-2970
lines changed

Some content is hidden

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

193 files changed

+3220
-2970
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## Build generated
66
build/
77
DerivedData/
8-
8+
.build
99
## Various settings
1010
*.pbxuser
1111
!default.pbxuser

Podfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ def import_pods
22
pod 'scrypt', '~> 2.0'
33
pod "PromiseKit", "~> 6.4.1"
44
pod 'BigInt', '~> 3.1'
5-
pod 'CryptoSwift', '~> 0.11'
5+
pod 'CryptoSwift', '~> 0.12'
66
pod 'Result', '~> 4.0'
7-
pod 'secp256k1_ios', :git => 'https://github.com/shamatar/secp256k1_ios.git', :modular_headers => true
7+
pod 'secp256k1_swift', '~> 1.0.2', :modular_headers => true
8+
pod 'SwiftRLP', '~> 1.0.1'
89
end
910

1011
target 'web3swift-macOS' do

Podfile.lock

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,19 @@ PODS:
1414
- Result (4.0.0)
1515
- scrypt (2.0):
1616
- CryptoSwift (~> 0.11)
17-
- secp256k1_ios (0.1.3)
17+
- secp256k1_swift (1.0.2)
1818
- SipHash (1.2.2)
19+
- SwiftRLP (1.0.1):
20+
- BigInt (~> 3.1)
1921

2022
DEPENDENCIES:
2123
- BigInt (~> 3.1)
22-
- CryptoSwift (~> 0.11)
24+
- CryptoSwift (~> 0.12)
2325
- PromiseKit (~> 6.4.1)
2426
- Result (~> 4.0)
2527
- scrypt (~> 2.0)
26-
- secp256k1_ios (from `https://github.com/shamatar/secp256k1_ios.git`)
28+
- secp256k1_swift (~> 1.0.2)
29+
- SwiftRLP (~> 1.0.1)
2730

2831
SPEC REPOS:
2932
https://github.com/cocoapods/specs.git:
@@ -32,26 +35,20 @@ SPEC REPOS:
3235
- PromiseKit
3336
- Result
3437
- scrypt
38+
- secp256k1_swift
3539
- SipHash
36-
37-
EXTERNAL SOURCES:
38-
secp256k1_ios:
39-
:git: https://github.com/shamatar/secp256k1_ios.git
40-
41-
CHECKOUT OPTIONS:
42-
secp256k1_ios:
43-
:commit: e3ab3e26fafc3688436528f2ca24cc679c7d746e
44-
:git: https://github.com/shamatar/secp256k1_ios.git
40+
- SwiftRLP
4541

4642
SPEC CHECKSUMS:
4743
BigInt: 76b5dfdfa3e2e478d4ffdf161aeede5502e2742f
4844
CryptoSwift: 1c07ca50843dd48bc54e6ea53d7a4dba3b645716
4945
PromiseKit: 4c76a6506638034e3d7bede97b2ff7743f7bd2dc
5046
Result: 7645bb3f50c2ce726dd0ff2fa7b6f42bbe6c3713
5147
scrypt: 3fe5b1a3b0976f97cd87488673a8f7c65708cc84
52-
secp256k1_ios: ac9ef04e761f43c58012b28548afa91493761f17
48+
secp256k1_swift: 1e6ac4ee77fbef7f97f87e096a918a1248b8c4f6
5349
SipHash: fad90a4683e420c52ef28063063dbbce248ea6d4
50+
SwiftRLP: 9de2c9512a9a6bf0909cd84cc143a7ff1aff7820
5451

55-
PODFILE CHECKSUM: 809fc36118e9c566db575d7ab123e35b5acc3df5
52+
PODFILE CHECKSUM: bce98dcdfceae57faa2cd3bcb3d595f16beaad0b
5653

5754
COCOAPODS: 1.6.0.beta.1

Pods/Headers/Private/SwiftRLP/SwiftRLP.h

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Headers/Private/secp256k1_ios/basic-config.h

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

Pods/Headers/Private/secp256k1_ios/ecdsa.h

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

Pods/Headers/Private/secp256k1_ios/ecdsa_impl.h

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

Pods/Headers/Private/secp256k1_ios/eckey.h

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

Pods/Headers/Private/secp256k1_ios/eckey_impl.h

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

Pods/Headers/Private/secp256k1_ios/ecmult.h

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

0 commit comments

Comments
 (0)