This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: create ImmutableXWalletSDK cocoapods spec
- Loading branch information
1 parent
3311119
commit fbcf7f7
Showing
1 changed file
with
26 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'ImmutableXWalletSDK' | ||
s.version = '0.1.0' | ||
s.summary = 'The ImmutableX Wallet SDK iOS for applications written on the ImmutableX platform.' | ||
s.description = <<-DESC | ||
The ImmutableX Wallet SDK iOS provides an easy way to connect your users Layer 1 Ethereum wallets and the derivation of an Immutable Layer 2 wallet. | ||
Once both wallets are connected you will have access to the Signer (L1 wallet) and StarkSigner (L2 wallet) which can be used to perform transactions on ImmutableX. | ||
Session management is handled for you and any changes to the wallets connection will be notified through the callback. | ||
DESC | ||
s.homepage = 'https://github.com/immutable/imx-wallet-sdk-ios' | ||
s.license = { :type => 'Apache License 2.0', :file => 'LICENSE' } | ||
s.author = { 'Immutable' => '[email protected]' } | ||
s.source = { :http => 'https://github.com/immutable/imx-wallet-sdk-ios/releases/download/v0.1.0/ImmutableXWalletSDK.zip' } | ||
|
||
s.cocoapods_version = '>= 1.10.0' | ||
s.ios.deployment_target = '13' | ||
s.swift_version = '5.7' | ||
|
||
s.vendored_frameworks = 'ImmutableXWalletSDK.xcframework' | ||
|
||
s.dependency 'Valet', '~> 4.1.3' | ||
s.dependency 'WalletConnectSwift', '~> 1.7.0' | ||
s.dependency 'ImmutableXCore', '~> 0.4.0' | ||
end |