Skip to content
Open
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
Binary file added .DS_Store
Binary file not shown.
10 changes: 5 additions & 5 deletions HDWalletKit.podspec
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Pod::Spec.new do |s|
s.name = 'HDWalletKit'
s.version = '0.3.6'
s.name = 'HDWalletKit_jiwon'
s.version = '0.3.7'
s.summary = 'Hierarchical Deterministic(HD) wallet for cryptocurrencies in Swift'

s.description = <<-DESC
Simple Swift library for creating HD ([Hierarchical Deterministic Wallets](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki)) cryptocurrencies wallets and working with crypto Coins/ERC20 tokens.
DESC

s.homepage = 'https://github.com/essentiaone/HDWallet.git'
s.homepage = 'https://github.com/dev-jiwon/HDWallet.git'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'impl' => 'pavlo.bojkoo@gmail.com' }
s.source = { :git => 'https://github.com/essentiaone/HDWallet.git', :tag => s.version.to_s }
s.source = { :git => 'https://github.com/dev-jiwon/HDWallet.git', :tag => s.version.to_s }

s.swift_version= '5'
s.static_framework = true
Expand All @@ -22,6 +22,6 @@ Pod::Spec.new do |s|
s.source_files = 'HDWalletKit/**/*.{swift}'

s.dependency 'secp256k1.swift', '~> 0.1.4'
s.dependency 'CryptoSwift', '~> 1.0.0'
s.dependency 'CryptoSwift', '~> 1.4.0'

end
Binary file added HDWalletKit/.DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ platform :ios, '11.0'
target 'HDWalletKit' do
use_frameworks!
pod 'secp256k1.swift', '~> 0.1.4'
pod 'CryptoSwift', '~> 1.0.0'
pod 'CryptoSwift', '~> 1.4.0'

target 'HDWalletKit_Tests' do
pod 'CryptoSwift', '~> 1.0.0'
pod 'CryptoSwift', '~> 1.4.0'
pod 'secp256k1.swift', '~> 0.1.4'
end
end