blockchainethereumblockchain-walleterc20erc721walletxdaidappdecentralizederc1155erc875iosswifttokens
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.4 KiB
38 lines
1.4 KiB
#
|
|
# Be sure to run `pod lib lint AlphaWalletWeb3.podspec' to ensure this is a
|
|
# valid spec before submitting.
|
|
#
|
|
# Any lines starting with a # are optional, but their use is encouraged
|
|
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
|
|
#
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = "AlphaWalletWeb3"
|
|
s.version = "0.0.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/AlphaWallet/alpha-wallet-ios/tree/master/modules/AlphaWalletWeb3"
|
|
s.license = { :type => "MIT", :file => "LICENSE" }
|
|
s.author = { "Vladyslav Shepitko" => "vladyslav.shepitko@gmail.com" }
|
|
s.source = { :git => 'git@github.com:AlphaWallet/alpha-wallet-ios.git', :tag => "#{s.version}" }
|
|
|
|
s.swift_version = '5.0'
|
|
s.module_name = 'AlphaWalletWeb3'
|
|
s.ios.deployment_target = "10.0"
|
|
s.osx.deployment_target = "10.11"
|
|
s.source_files = 'modules/AlphaWalletWeb3/AlphaWalletWeb3/**/*.{h,m,swift}'
|
|
s.public_header_files = "AlphaWalletWeb3/**/*.{h}"
|
|
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
|
|
|
|
s.dependency 'AlphaWalletAddress'
|
|
s.dependency 'AlphaWalletCore'
|
|
s.dependency 'APIKit'
|
|
s.dependency 'BigInt'
|
|
s.dependency 'CryptoSwift'
|
|
s.dependency 'secp256k1_ios', '~> 0.1.3'
|
|
s.dependency 'PromiseKit', '~> 6.3.0'
|
|
end
|
|
|