forked from trustwallet/wallet-core
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename TrustWalletCore to PPTrustWalletCore
- Loading branch information
Showing
269 changed files
with
497 additions
and
496 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
Binary file not shown.
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,27 +1,27 @@ | ||
version = '0.13.0' | ||
version = '3.0.0' | ||
|
||
Pod::Spec.new do |s| | ||
s.name = 'TrustWalletCore' | ||
s.name = 'PPTrustWalletCore' | ||
s.version = version | ||
s.summary = 'Trust Wallet core data structures and algorithms.' | ||
s.homepage = 'https://github.com/TrustWallet/wallet-core' | ||
s.homepage = 'https://github.com/pumapayio/wallet-core' | ||
s.license = 'MIT' | ||
s.authors = { 'Alejandro Isaza' => '[email protected]' } | ||
s.authors = { 'Chirag Bhaiji' => '[email protected]' } | ||
|
||
s.ios.deployment_target = '11.0' | ||
s.osx.deployment_target = '10.12' | ||
s.swift_version = '5.1' | ||
|
||
s.source = { | ||
git: 'git@github.com:TrustWallet/wallet-core.git', | ||
git: 'https://github.com/pumapayio/wallet-core.git', | ||
tag: version, | ||
submodules: true | ||
} | ||
|
||
s.default_subspec = 'Core' | ||
|
||
s.subspec 'Types' do |ss| | ||
ss.source_files = | ||
ss.source_files = | ||
'swift/Sources/Generated/Enums/*.swift', | ||
'swift/Sources/Generated/Protobuf/*.swift' | ||
ss.dependency 'SwiftProtobuf' | ||
|
@@ -128,14 +128,14 @@ Pod::Spec.new do |s| | |
'src/proto/*.proto' | ||
ss.xcconfig = { | ||
'HEADER_SEARCH_PATHS' => '$(inherited) ' \ | ||
'${PODS_ROOT}/TrustWalletCore/src ' \ | ||
'${PODS_ROOT}/TrustWalletCore/trezor-crypto/src', | ||
'${PODS_ROOT}/PPTrustWalletCore/src ' \ | ||
'${PODS_ROOT}/PPTrustWalletCore/trezor-crypto/src', | ||
'SYSTEM_HEADER_SEARCH_PATHS' => '$(inherited) ' \ | ||
'/usr/local/include' \ | ||
'${PODS_ROOT}/TrustWalletCore/include ' \ | ||
'${PODS_ROOT}/TrustWalletCore/trezor-crypto/include ' \ | ||
"${PODS_ROOT}/TrustWalletCore/#{protobuf_source_dir}/src " \ | ||
"${PODS_ROOT}/TrustWalletCore/#{include_dir} ", | ||
'${PODS_ROOT}/PPTrustWalletCore/include ' \ | ||
'${PODS_ROOT}/PPTrustWalletCore/trezor-crypto/include ' \ | ||
"${PODS_ROOT}/PPTrustWalletCore/#{protobuf_source_dir}/src " \ | ||
"${PODS_ROOT}/PPTrustWalletCore/#{include_dir} ", | ||
'GCC_WARN_UNUSED_FUNCTION' => 'NO', | ||
'GCC_WARN_64_TO_32_BIT_CONVERSION' => 'NO', | ||
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++17', | ||
|
@@ -145,7 +145,7 @@ Pod::Spec.new do |s| | |
ss.pod_target_xcconfig = { | ||
'SYSTEM_HEADER_SEARCH_PATHS' => '$(inherited) /usr/local/include' | ||
} | ||
ss.dependency 'TrustWalletCore/Types' | ||
ss.dependency 'PPTrustWalletCore/Types' | ||
end | ||
s.prepare_command = 'tools/install-dependencies && tools/generate-files' | ||
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
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 |
---|---|---|
|
@@ -26,12 +26,12 @@ VERSION_CODE=1 | |
GROUP=com.trustwallet.walletcore | ||
|
||
POM_DESCRIPTION=Cross-platform, cross-blockchain wallet library. | ||
POM_URL=https://github.com/TrustWallet/wallet-core | ||
POM_SCM_URL=https://github.com/TrustWallet/wallet-core | ||
POM_SCM_CONNECTION=scm:[email protected]:TrustWallet/wallet-core.git | ||
POM_SCM_DEV_CONNECTION=scm:[email protected]:TrustWallet/wallet-core.git | ||
POM_URL=https://github.com/pumapayio/wallet-core | ||
POM_SCM_URL=https://github.com/pumapayio/wallet-core | ||
POM_SCM_CONNECTION=scm:[email protected]:pumapayio/wallet-core.git | ||
POM_SCM_DEV_CONNECTION=scm:[email protected]:pumapayio/wallet-core.git | ||
POM_LICENCE_NAME=MIT | ||
POM_LICENCE_URL=https://opensource.org/licenses/MIT | ||
POM_LICENCE_DIST=repo | ||
POM_DEVELOPER_ID=TrustWallet | ||
POM_DEVELOPER_NAME=Trust Wallet | ||
POM_DEVELOPER_NAME=Trust Wallet |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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 +1 @@ | ||
include ':app', ':trustwalletcore' | ||
include ':app', ':pptrustwalletcore' |
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
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
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
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
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
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
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
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
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.