Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

Commit

Permalink
feat: create ImmutableXWalletSDK cocoapods spec
Browse files Browse the repository at this point in the history
  • Loading branch information
CassiusPacheco committed Oct 31, 2022
1 parent 3311119 commit fbcf7f7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions ImmutableXWalletSDK.podspec
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

0 comments on commit fbcf7f7

Please sign in to comment.