filecoin-signing-tools
Filecoin Signing Library
File Explorer
Download Latest Version (.zip)- test_c.sh
- test_cpp.sh
- test_go.sh
- test_java.sh
- test_kotlin.sh
- test_objective-c.sh
- test_swift.sh
- wait_for_port.sh
- main.yaml
- publish.yaml
- dependabot.yml
- zondax_dark.png
- zondax_light.png
- .gitignore
- index.md
- rs_native_api.md
- wasm_api.md
- main.c
- README.md
- main.cpp
- README.md
- AndroidManifest.xml
- MainActivity.java
- launch_background.xml
- ic_launcher.png
- ic_launcher.png
- ic_launcher.png
- ic_launcher.png
- ic_launcher.png
- styles.xml
- AndroidManifest.xml
- AndroidManifest.xml
- build.gradle
- gradle-wrapper.properties
- .gitignore
- build.gradle
- gradle.properties
- settings.gradle
- AppFrameworkInfo.plist
- Debug.xcconfig
- Release.xcconfig
- Contents.json
- Icon-App-1024x1024@1x.png
- Icon-App-20x20@1x.png
- Icon-App-20x20@2x.png
- Icon-App-20x20@3x.png
- Icon-App-29x29@1x.png
- Icon-App-29x29@2x.png
- Icon-App-29x29@3x.png
- Icon-App-40x40@1x.png
- Icon-App-40x40@2x.png
- Icon-App-40x40@3x.png
- Icon-App-60x60@2x.png
- Icon-App-60x60@3x.png
- Icon-App-76x76@1x.png
- Icon-App-76x76@2x.png
- Icon-App-83.5x83.5@2x.png
- Contents.json
- LaunchImage.png
- LaunchImage@2x.png
- LaunchImage@3x.png
- README.md
- LaunchScreen.storyboard
- Main.storyboard
- AppDelegate.swift
- Info.plist
- Runner-Bridging-Header.h
- IDEWorkspaceChecks.plist
- WorkspaceSettings.xcsettings
- contents.xcworkspacedata
- Runner.xcscheme
- project.pbxproj
- IDEWorkspaceChecks.plist
- WorkspaceSettings.xcsettings
- contents.xcworkspacedata
- .gitignore
- main.dart
- .gitignore
- .metadata
- pubspec.lock
- pubspec.yaml
- README.md
- main.go
- README.md
- Main.java
- README.md
- Main.kt
- README.md
- main.m
- README.md
- main.swift
- README.md
- README.md
- openssl.cnf
- .gitignore
- bootstrap.js
- index-multisig.js
- index.html
- index.js
- package.json
- README.md
- webpack.config.js
- test_multisig.js
- test_only_js.js
- test_payment_channel.js
- tests_basic.js
- tests_scratch.js
- tests_utils.js
- utils.js
- .gitignore
- multisig.js
- package-lock.json
- package.json
- payment_channel.js
- README.md
- yarn.lock
- generated_test_cases.json
- manual_testvectors.json
- private_keys_base64.txt
- cron.rs
- init.rs
- json.rs
- lib.rs
- message.rs
- miner.rs
- multisig.rs
- paych.rs
- signature.rs
- signed_message.rs
- Cargo.toml
- Cargo.toml
- FUZZING.md
- signed-message.rs
- unsigned-message.rs
- generate.rs
- api.rs
- error.rs
- extended_key.rs
- lib.rs
- multisig_deprecated.rs
- utils.rs
- common.rs
- lib_test.rs
- Cargo.toml
- LICENSE
- GeneratedPluginRegistrant.java
- gradle-wrapper.properties
- FilecoinPlugin.java
- AndroidManifest.xml
- .gitignore
- build.gradle
- gradle.properties
- settings.gradle
- .gitkeep
- FilecoinPlugin.h
- FilecoinPlugin.m
- SwiftFilecoinPlugin.swift
- .gitignore
- filecoin.podspec
- filecoin.dart
- .gitignore
- .metadata
- pubspec.lock
- pubspec.yaml
- FilecoinSigner.java
- build.gradle
- error.rs
- extended_key.rs
- lib.rs
- macros.rs
- Cargo.toml
- cbindgen.toml
- LICENSE
- README.md
- constants.ts
- errors.ts
- extendedkey.ts
- index.ts
- methods.ts
- types.ts
- utils.ts
- .editorconfig
- .eslintrc.json
- .gitignore
- tsconfig.json
- yarn.lock
- index.ts
- types.ts
- .eslintrc.json
- tsconfig.json
- yarn.lock
- lib.rs
- browser.rs
- .cargo-ok
- .gitignore
- Cargo.toml
- LICENSE
- Makefile
- package-signer-js.json
- package-signer-rpc.json
- package-signer-wasm-browser.json
- package.json
- README.md
- webdriver.json
- bls_signature.json
- bls_wallet.json
- deserialize_constructor_params.json
- deserialize_params.json
- get_cid.json
- mnemonics.json
- multisig.json
- payment_channel.json
- README.md
- script.js
- serialize_params.json
- signed_message.json
- txs.json
- utils.json
- verify_signature.json
- voucher.json
- wallet.json
- .eslintrc.js
- .gitignore
- .prettierignore
- .prettierrc
- .sonarcloud.properties
- Cargo.toml
- LICENSE
- Makefile
- package-lock.json
- package.json
- README.md
- yarn.lock
# Installation Guide
1. Get the code
git clone https://github.com/Zondax/filecoin-signing-tools
Downloads the entire project code from GitHub to your computer.
cd filecoin-signing-tools
Moves into the project folder you just downloaded.
2. Gradle (Java/Kotlin)
Medium RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- JDK (Java) Required to build and run Java/Kotlin projects.
- Gradle If the repo includes gradlew (Gradle Wrapper), you don't need to install Gradle separately.
β οΈ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
cd signer-ffi/flutter/filecoin/android
This project's files live in a subfolder, so move into it first.
./gradlew build
Builds the project using Gradle.
A BUILD SUCCESSFUL message means it worked. The output is created under build/.
3. Node.js
EasyPrerequisites
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
4. Rust
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo test -p filecoin-signer
Type this command into your terminal and run it.
If cargo build finishes without errors, it worked. The executable is created under target/.
Pulled directly from this repo's README.
5. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make build_npm
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
