-
Notifications
You must be signed in to change notification settings - Fork 444
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #136 from matter-labs/develop
2.1.1
- Loading branch information
Showing
10 changed files
with
912 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,35 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "web3swift" | ||
s.version = "2.0.1" | ||
s.version = "2.1.1" | ||
s.summary = "Web3 implementation in vanilla Swift for iOS ans macOS" | ||
|
||
s.description = <<-DESC | ||
Web3 implementation in vanilla Swift, intended for mobile developers of wallets, Dapps and Web3.0 | ||
DESC | ||
|
||
s.homepage = "https://github.com/matterinc/web3swift" | ||
s.homepage = "https://github.com/matter-labs/web3swift" | ||
s.license = 'Apache License 2.0' | ||
s.author = { "Alex Vlasov" => "[email protected]" } | ||
s.source = { :git => 'https://github.com/matterinc/web3swift.git', :tag => s.version.to_s } | ||
s.source = { :git => 'https://github.com/matter-labs/web3swift.git', :tag => s.version.to_s } | ||
s.social_media_url = 'https://twitter.com/shamatar' | ||
|
||
s.swift_version = '4.1' | ||
s.module_name = 'Web3swift' | ||
s.ios.deployment_target = "9.0" | ||
s.osx.deployment_target = "10.11" | ||
s.source_files = "web3swift/{PrecompiledContracts,Promises,Web3,Contract,KeystoreManager,Transaction,Convenience}/Classes/*.{h,swift}", "web3swift/Utils/Classes/{EIP67Code, EIP681}.swift", "web3swift/HookedFunctions/Classes/*.swift", "web3swift/web3swift.h" | ||
s.source_files = "web3swift/{Promises,HookedFunctions,Web3,Contract,KeystoreManager,Transaction,Convenience}/Classes/*.{h,swift}", "web3swift/Utils/Classes/{EIP67Code, EIP681, ENS, ENSResolver, NameHash}.swift", "web3swift/PrecompiledContracts/**/*.swift", "web3swift/web3swift.h" | ||
s.public_header_files = "web3swift/web3swift.h" | ||
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } | ||
|
||
s.frameworks = 'CoreImage' | ||
s.dependency 'scrypt', '~> 2.0' | ||
s.dependency 'PromiseKit', '~> 6.4.1' | ||
s.dependency 'BigInt', '~> 3.1' | ||
s.dependency 'CryptoSwift', '~> 0.13' | ||
s.dependency 'PromiseKit', '~> 6.3' | ||
s.dependency 'scrypt', '~> 2.0' | ||
s.dependency 'Result', '~> 4.0' | ||
s.dependency 'secp256k1_swift', '~> 1.0.3' | ||
s.dependency 'SwiftRLP', '~> 1.1' | ||
s.dependency 'EthereumAddress', '~> 1.0.0' | ||
s.dependency 'EthereumABI', '~> 1.1.1' | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.