Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed secp256k1 package #102

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"object": {
"pins": [
{
"package": "secp256k1",
"repositoryURL": "https://github.com/Boilertalk/secp256k1.swift.git",
"package": "secp256k1_ios",
"repositoryURL": "https://github.com/shamatar/secp256k1_ios.git",
"state": {
"branch": null,
"revision": "cd187c632fb812fd93711a9f7e644adb7e5f97f0",
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ let package = Package(
],
dependencies: [
// Main depedencies
.package(url: "https://github.com/Boilertalk/secp256k1.swift.git", from: "0.1.0"),
.package(url: "https://github.com/shamatar/secp256k1_ios.git", from: "0.1.3"),
.package(url: "https://github.com/bitmark-inc/tweetnacl-swiftwrap.git", from: "1.0.2"),
.package(url: "https://github.com/bigearsenal/task-retrying-swift.git", from: "2.0.0"),

Expand All @@ -29,7 +29,7 @@ let package = Package(
.target(
name: "SolanaSwift",
dependencies: [
.product(name: "secp256k1", package: "secp256k1.swift"),
.product(name: "secp256k1", package: "secp256k1_ios"),
.product(name: "TweetNacl", package: "tweetnacl-swiftwrap"),
.product(name: "Task_retrying", package: "task-retrying-swift"),
]
Expand Down
2 changes: 1 addition & 1 deletion SolanaSwift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Solana-blockchain client, written in pure swift, which supports keypair generati

# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
s.dependency 'secp256k1.swift', '~> 0.1.4'
s.dependency 'secp256k1_ios', '~> 0.1.3'
s.dependency 'TweetNacl', '~> 1.0.2'
s.dependency 'Task_retrying', '~> 2.0.0'
end
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Foundation
import secp256k1
import secp256k1_ios

struct CKSecp256k1 {
/*
Expand Down