Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/ENSsupport #53

Merged
merged 9 commits into from
Oct 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ xcode_scheme: web3swift-iOS
xcode_destination: platform=iOS Simulator, OS=12.0, name=iPhone X
before_install:
- gem install cocoapods --pre --no-rdoc --no-ri --no-document --quiet
- pod install
- pod install --repo-update
script:
- xcodebuild -scheme web3swift-iOS -workspace web3swift.xcworkspace -sdk iphonesimulator build test
after_success:
Expand Down
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
def import_pods
pod 'scrypt', '~> 2.0'
pod "PromiseKit", "~> 6.3"
pod "PromiseKit", "~> 6.4.1"
pod 'BigInt', '~> 3.1'
pod 'CryptoSwift', '~> 0.11'
pod 'Result', '~> 4.0'
Expand Down
20 changes: 10 additions & 10 deletions Podfile.lock
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ PODS:
- BigInt (3.1.0):
- SipHash (~> 1.2)
- CryptoSwift (0.12.0)
- PromiseKit (6.4.0):
- PromiseKit/CorePromise (= 6.4.0)
- PromiseKit/Foundation (= 6.4.0)
- PromiseKit/UIKit (= 6.4.0)
- PromiseKit/CorePromise (6.4.0)
- PromiseKit/Foundation (6.4.0):
- PromiseKit (6.4.1):
- PromiseKit/CorePromise (= 6.4.1)
- PromiseKit/Foundation (= 6.4.1)
- PromiseKit/UIKit (= 6.4.1)
- PromiseKit/CorePromise (6.4.1)
- PromiseKit/Foundation (6.4.1):
- PromiseKit/CorePromise
- PromiseKit/UIKit (6.4.0):
- PromiseKit/UIKit (6.4.1):
- PromiseKit/CorePromise
- Result (4.0.0)
- scrypt (2.0):
Expand All @@ -20,7 +20,7 @@ PODS:
DEPENDENCIES:
- BigInt (~> 3.1)
- CryptoSwift (~> 0.11)
- PromiseKit (~> 6.3)
- PromiseKit (~> 6.4.1)
- Result (~> 4.0)
- scrypt (~> 2.0)
- secp256k1_ios (from `https://github.com/shamatar/secp256k1_ios.git`)
Expand All @@ -46,12 +46,12 @@ CHECKOUT OPTIONS:
SPEC CHECKSUMS:
BigInt: 76b5dfdfa3e2e478d4ffdf161aeede5502e2742f
CryptoSwift: 1c07ca50843dd48bc54e6ea53d7a4dba3b645716
PromiseKit: ae3616f45d7bb9bf4ff1e91abc9b7a8c48a340e0
PromiseKit: 4c76a6506638034e3d7bede97b2ff7743f7bd2dc
Result: 7645bb3f50c2ce726dd0ff2fa7b6f42bbe6c3713
scrypt: 3fe5b1a3b0976f97cd87488673a8f7c65708cc84
secp256k1_ios: ac9ef04e761f43c58012b28548afa91493761f17
SipHash: fad90a4683e420c52ef28063063dbbce248ea6d4

PODFILE CHECKSUM: f6c71566157938ba8afa59f1e6a3ffc11d709d7b
PODFILE CHECKSUM: 809fc36118e9c566db575d7ab123e35b5acc3df5

COCOAPODS: 1.6.0.beta.1
Empty file modified Pods/BigInt/LICENSE.md
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/README.md
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Addition.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/BigInt.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/BigUInt.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Bitwise Ops.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Codable.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Comparable.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Data Conversion.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Division.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Exponentiation.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Floating Point Conversion.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/GCD.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Hashable.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Integer Conversion.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Multiplication.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Prime Test.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Random.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Shifts.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Square Root.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Strideable.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/String Conversion.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Subtraction.swift
100755 → 100644
Empty file.
Empty file modified Pods/BigInt/sources/Words and Bits.swift
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion Pods/Headers/Public/BigInt/BigInt-iOS-umbrella.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/BigInt/BigInt-iOS.modulemap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/BigInt/BigInt-macOS-umbrella.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/BigInt/BigInt-macOS.modulemap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/CryptoSwift/CryptoSwift-iOS-umbrella.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/CryptoSwift/CryptoSwift-iOS.modulemap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/PromiseKit/PromiseKit-umbrella.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/PromiseKit/PromiseKit.modulemap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/Result/Result-iOS-umbrella.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/Result/Result-iOS.modulemap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/Result/Result-macOS-umbrella.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/Result/Result-macOS.modulemap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/SipHash/SipHash-iOS-umbrella.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/SipHash/SipHash-iOS.modulemap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/SipHash/SipHash-macOS-umbrella.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/SipHash/SipHash-macOS.modulemap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/scrypt/scrypt-iOS-umbrella.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/scrypt/scrypt-iOS.modulemap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/scrypt/scrypt-macOS-umbrella.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Public/scrypt/scrypt-macOS.modulemap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file modified Pods/Local Podspecs/secp256k1_ios.podspec.json
100755 → 100644
Empty file.
20 changes: 10 additions & 10 deletions Pods/Manifest.lock
100755 → 100644

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading