Skip to content

Swift Binding for Everscale, Venom SDK. Library for interacting with Everscale, Venom blockchain.

License

Notifications You must be signed in to change notification settings

nerzh/everscale-client-swift

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Swift Free Ton SDK

SPM

Setup TONSDK

  1. Install Rust to your OS
  2. git clone https://github.com/tonlabs/TON-SDK
  3. cd ./TON-SDK
  4. cargo update
  5. cargo build --release
  6. macOS : copy or create symlink of file ./TON-SDK/target/release/libton_client.dylib to /usr/local/lib/libton_client.dylib Linux : copy or create symlink of file ./TON-SDK/target/release/libton_client.so to /usr/lib/libton_client.so
  7. Create pkgConfig file : macOS :
prefix=/usr/local
exec_prefix=${prefix}
includedir=${prefix}/include
libdir=${exec_prefix}/lib

Name: ton_client
Description: ton_client
Version: 1.0.0
Cflags: -I${includedir}
Libs: -L${libdir} -lton_client
Linux:
prefix=/usr
exec_prefix=${prefix}
includedir=${prefix}/include
libdir=${exec_prefix}/lib

Name: ton_client
Description: ton_client
Version: 1.0.0
Cflags: -I${includedir}
Libs: -L${libdir} -lton_client

Tests

If you use Xcode for Test

Please, set custom working directory to project folder for your xcode scheme. This is necessary for the relative path "./" to the project folders to work. You may change it with the xcode edit scheme menu. Or inside file path_to_ton_sdk/.swiftpm/xcode/xcshareddata/xcschemes/TonClientSwift.xcscheme set to tag "LaunchAction" absolute path to this library with options: useCustomWorkingDirectory = "YES" customWorkingDirectory = "/path_to_ton_sdk"