Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b7f445a330 | |||
| 360c7fda57 | |||
| 2cbb2d8327 |
@@ -3,27 +3,8 @@ import fetch from "node-fetch";
|
|||||||
import { Octokit } from "@octokit/rest";
|
import { Octokit } from "@octokit/rest";
|
||||||
import fs from "fs";
|
import fs from "fs";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import { execSync } from "child_process";
|
|
||||||
|
|
||||||
function getBinInfo(path) {
|
|
||||||
// let's be super naive about it. add a+x bits on the file and try to run the command
|
|
||||||
try {
|
|
||||||
let mode = fs.statSync(path).mode
|
|
||||||
fs.chmodSync(path, mode | 0o111)
|
|
||||||
|
|
||||||
const raw = execSync(`${path} build-info --output=json`, { stdio: 'pipe', encoding: "utf8" });
|
|
||||||
const parsed = JSON.parse(raw)
|
|
||||||
return parsed
|
|
||||||
} catch (_) {
|
|
||||||
return undefined
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function run(assets, algorithm, filename, cache) {
|
async function run(assets, algorithm, filename, cache) {
|
||||||
if (!cache) {
|
|
||||||
console.warn("cache is set to 'false', but we we no longer support it")
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
fs.mkdirSync('.tmp');
|
fs.mkdirSync('.tmp');
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
@@ -38,25 +19,26 @@ async function run(assets, algorithm, filename, cache) {
|
|||||||
|
|
||||||
let buffer = null;
|
let buffer = null;
|
||||||
let sig = null;
|
let sig = null;
|
||||||
|
if(cache) {
|
||||||
|
// cache in `${WORKING_DIR}/.tmp/`
|
||||||
|
const cacheFilename = path.resolve(`.tmp/${asset.name}`);
|
||||||
|
if(!fs.existsSync(cacheFilename)) {
|
||||||
|
console.log(`Downloading ${asset.browser_download_url}... to ${cacheFilename}`);
|
||||||
|
buffer = Buffer.from(await fetch(asset.browser_download_url).then(res => res.arrayBuffer()));
|
||||||
|
fs.writeFileSync(cacheFilename, buffer);
|
||||||
|
} else {
|
||||||
|
console.log(`Loading from ${cacheFilename}`);
|
||||||
|
buffer = Buffer.from(fs.readFileSync(cacheFilename));
|
||||||
|
|
||||||
// cache in `${WORKING_DIR}/.tmp/`
|
// console.log('Reading signature from content');
|
||||||
const cacheFilename = path.resolve(`.tmp/${asset.name}`);
|
// if(asset.name.endsWith('.sig')) {
|
||||||
if(!fs.existsSync(cacheFilename)) {
|
// sig = fs.readFileSync(cacheFilename).toString();
|
||||||
console.log(`Downloading ${asset.browser_download_url}... to ${cacheFilename}`);
|
// }
|
||||||
buffer = Buffer.from(await fetch(asset.browser_download_url).then(res => res.arrayBuffer()));
|
}
|
||||||
fs.writeFileSync(cacheFilename, buffer);
|
|
||||||
} else {
|
} else {
|
||||||
console.log(`Loading from ${cacheFilename}`);
|
// fetch always
|
||||||
buffer = Buffer.from(fs.readFileSync(cacheFilename));
|
buffer = Buffer.from(await fetch(asset.browser_download_url).then(res => res.arrayBuffer()));
|
||||||
|
|
||||||
// console.log('Reading signature from content');
|
|
||||||
// if(asset.name.endsWith('.sig')) {
|
|
||||||
// sig = fs.readFileSync(cacheFilename).toString();
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const binInfo = getBinInfo(cacheFilename)
|
|
||||||
|
|
||||||
if(!hashes[asset.name]) {
|
if(!hashes[asset.name]) {
|
||||||
hashes[asset.name] = {};
|
hashes[asset.name] = {};
|
||||||
}
|
}
|
||||||
@@ -117,9 +99,6 @@ async function run(assets, algorithm, filename, cache) {
|
|||||||
if(kind) {
|
if(kind) {
|
||||||
hashes[asset.name].kind = kind;
|
hashes[asset.name].kind = kind;
|
||||||
}
|
}
|
||||||
if(binInfo) {
|
|
||||||
hashes[asset.name].details = binInfo;
|
|
||||||
}
|
|
||||||
|
|
||||||
// process Tauri signature files
|
// process Tauri signature files
|
||||||
if(asset.name.endsWith('.sig')) {
|
if(asset.name.endsWith('.sig')) {
|
||||||
@@ -246,8 +225,6 @@ export async function createHashesFromReleaseTagOrNameOrId({ releaseTagOrNameOrI
|
|||||||
assets: hashes,
|
assets: hashes,
|
||||||
};
|
};
|
||||||
|
|
||||||
console.log(output)
|
|
||||||
|
|
||||||
if(upload) {
|
if(upload) {
|
||||||
console.log(`🚚 Uploading ${filename} to release name="${release.name}" id=${release.id} (${release.upload_url})...`);
|
console.log(`🚚 Uploading ${filename} to release name="${release.name}" id=${release.id} (${release.upload_url})...`);
|
||||||
|
|
||||||
|
|||||||
@@ -2,14 +2,15 @@ name: cd-docs
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- 'documentation/docs/**'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-20.04-16-core
|
runs-on: custom-linux
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Install Dependencies (Linux)
|
|
||||||
run: sudo apt-get update && sudo apt-get install -y build-essential curl wget libssl-dev libudev-dev squashfs-tools protobuf-compiler
|
|
||||||
- name: Install rsync
|
- name: Install rsync
|
||||||
run: sudo apt-get install rsync
|
run: sudo apt-get install rsync
|
||||||
- uses: rlespinasse/github-slug-action@v3.x
|
- uses: rlespinasse/github-slug-action@v3.x
|
||||||
@@ -25,11 +26,14 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
command: build
|
command: build
|
||||||
args: --workspace --release
|
args: --workspace --release
|
||||||
- name: Install mdbook and plugins
|
- name: Install mdbook
|
||||||
run: cd documentation && ./install_mdbook_deps.sh
|
run: (test -x $HOME/.cargo/bin/mdbook || cargo install --vers "^0.4.33" mdbook)
|
||||||
- name: Remove existing Nym config directory (`~/.nym/`)
|
- name: Install mdbook plugins
|
||||||
run: cd documentation && ./remove_existing_config.sh
|
run: |
|
||||||
continue-on-error: false
|
cargo install --vers "=0.2.2" mdbook-variables && cargo install \
|
||||||
|
--vers "^1.8.0" mdbook-admonish && cargo install --vers \
|
||||||
|
"^0.1.2" mdbook-last-changed && cargo install --vers "^0.1.2" mdbook-theme \
|
||||||
|
&& cargo install --vers "^0.7.7" mdbook-linkcheck
|
||||||
- name: Build all projects in documentation/ & move to ~/dist/docs/
|
- name: Build all projects in documentation/ & move to ~/dist/docs/
|
||||||
run: cd documentation && ./build_all_to_dist.sh
|
run: cd documentation && ./build_all_to_dist.sh
|
||||||
continue-on-error: false
|
continue-on-error: false
|
||||||
@@ -48,7 +52,6 @@ jobs:
|
|||||||
|
|
||||||
- name: Install Vercel CLI
|
- name: Install Vercel CLI
|
||||||
run: npm install --global vercel@latest
|
run: npm install --global vercel@latest
|
||||||
continue-on-error: false
|
|
||||||
|
|
||||||
- name: Pull Vercel Environment Information (preview)
|
- name: Pull Vercel Environment Information (preview)
|
||||||
if: github.ref != 'refs/heads/master'
|
if: github.ref != 'refs/heads/master'
|
||||||
@@ -58,18 +61,15 @@ jobs:
|
|||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
|
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
|
||||||
working-directory: dist/docs
|
working-directory: dist/docs
|
||||||
continue-on-error: false
|
|
||||||
|
|
||||||
- name: Build Project Artifacts (preview)
|
- name: Build Project Artifacts (preview)
|
||||||
if: github.ref != 'refs/heads/master'
|
if: github.ref != 'refs/heads/master'
|
||||||
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
|
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
|
||||||
working-directory: dist/docs
|
working-directory: dist/docs
|
||||||
continue-on-error: false
|
|
||||||
- name: Build Project Artifacts (production)
|
- name: Build Project Artifacts (production)
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
|
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
|
||||||
working-directory: dist/docs
|
working-directory: dist/docs
|
||||||
continue-on-error: false
|
|
||||||
|
|
||||||
- name: Deploy Project Artifacts to Vercel (preview)
|
- name: Deploy Project Artifacts to Vercel (preview)
|
||||||
if: github.ref != 'refs/heads/master'
|
if: github.ref != 'refs/heads/master'
|
||||||
@@ -79,7 +79,6 @@ jobs:
|
|||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
|
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
|
||||||
working-directory: dist/docs
|
working-directory: dist/docs
|
||||||
continue-on-error: false
|
|
||||||
|
|
||||||
- name: Matrix - Node Install
|
- name: Matrix - Node Install
|
||||||
run: npm install
|
run: npm install
|
||||||
|
|||||||
@@ -75,29 +75,28 @@ jobs:
|
|||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: build
|
command: build
|
||||||
# Enable wireguard by default on linux only
|
args: --workspace
|
||||||
args: --workspace --features wireguard
|
|
||||||
|
|
||||||
- name: Build all examples
|
- name: Build all examples
|
||||||
if: matrix.os == 'custom-linux'
|
if: matrix.os == 'custom-linux'
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: build
|
command: build
|
||||||
args: --workspace --examples --features wireguard
|
args: --workspace --examples
|
||||||
|
|
||||||
- name: Run all tests
|
- name: Run all tests
|
||||||
if: matrix.os == 'custom-linux'
|
if: matrix.os == 'custom-linux'
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: test
|
command: test
|
||||||
args: --workspace --features wireguard
|
args: --workspace
|
||||||
|
|
||||||
- name: Run expensive tests
|
- name: Run expensive tests
|
||||||
if: (github.ref == 'refs/heads/develop' || github.event.pull_request.base.ref == 'develop' || github.event.pull_request.base.ref == 'master') && matrix.os == 'custom-linux'
|
if: (github.ref == 'refs/heads/develop' || github.event.pull_request.base.ref == 'develop' || github.event.pull_request.base.ref == 'master') && matrix.os == 'custom-linux'
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: test
|
command: test
|
||||||
args: --workspace --features wireguard -- --ignored
|
args: --workspace -- --ignored
|
||||||
|
|
||||||
- name: Annotate with clippy checks
|
- name: Annotate with clippy checks
|
||||||
if: matrix.os == 'custom-linux'
|
if: matrix.os == 'custom-linux'
|
||||||
@@ -105,10 +104,10 @@ jobs:
|
|||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
args: --workspace --features wireguard
|
args: --workspace
|
||||||
|
|
||||||
- name: Clippy
|
- name: Clippy
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: clippy
|
command: clippy
|
||||||
args: --workspace --all-targets --features wireguard -- -D warnings
|
args: --workspace --all-targets -- -D warnings
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
name: ci-cargo-deny
|
|
||||||
on: [workflow_dispatch]
|
|
||||||
jobs:
|
|
||||||
cargo-deny:
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
checks:
|
|
||||||
# - advisories
|
|
||||||
- licenses
|
|
||||||
- bans sources
|
|
||||||
|
|
||||||
continue-on-error: ${{ matrix.checks == 'licenses' }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- uses: EmbarkStudios/cargo-deny-action@v1
|
|
||||||
with:
|
|
||||||
log-level: warn
|
|
||||||
command: check ${{ matrix.checks }}
|
|
||||||
argument: --all-features
|
|
||||||
@@ -9,11 +9,9 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-20.04-16-core
|
runs-on: custom-linux
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Install Dependencies (Linux)
|
|
||||||
run: sudo apt-get update && sudo apt-get install -y build-essential curl wget libssl-dev libudev-dev squashfs-tools protobuf-compiler
|
|
||||||
- name: Install rsync
|
- name: Install rsync
|
||||||
run: sudo apt-get install rsync
|
run: sudo apt-get install rsync
|
||||||
- uses: rlespinasse/github-slug-action@v3.x
|
- uses: rlespinasse/github-slug-action@v3.x
|
||||||
@@ -29,15 +27,22 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
command: build
|
command: build
|
||||||
args: --workspace --release
|
args: --workspace --release
|
||||||
- name: Install mdbook and plugins
|
- name: Install mdbook
|
||||||
run: cd documentation && ./install_mdbook_deps.sh
|
run: (test -x $HOME/.cargo/bin/mdbook || cargo install --vers "^0.4.35" mdbook)
|
||||||
- name: Remove existing Nym config directory (`~/.nym/`)
|
- name: Install mdbook plugins
|
||||||
run: cd documentation && ./remove_existing_config.sh
|
run: |
|
||||||
continue-on-error: false
|
cargo install --vers "=0.2.2" mdbook-variables && cargo install \
|
||||||
- name: Build all projects in documentation/ & move to ~/dist/docs/
|
--vers "^1.8.0" mdbook-admonish --force && cargo install --vers \
|
||||||
run: cd documentation && ./build_all_to_dist.sh
|
"^0.1.2" mdbook-last-changed && cargo install --vers "^0.1.2" mdbook-theme \
|
||||||
continue-on-error: false
|
&& cargo install --vers "^0.7.7" mdbook-linkcheck \
|
||||||
|
# && cd documentation \
|
||||||
|
# && mdbook-admonish install dev-portal \
|
||||||
|
# && mdbook-admonish install docs \
|
||||||
|
# && mdbook-admonish install operators
|
||||||
|
|
||||||
|
- name: Build all projects in documentation/ & move to ~/dist/docs/
|
||||||
|
run: cd documentation && ./build_all_to_dist.sh
|
||||||
|
continue-on-error: false
|
||||||
- name: Deploy branch to CI www
|
- name: Deploy branch to CI www
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
uses: easingthemes/ssh-deploy@main
|
uses: easingthemes/ssh-deploy@main
|
||||||
@@ -49,7 +54,6 @@ jobs:
|
|||||||
REMOTE_USER: ${{ secrets.CI_WWW_REMOTE_USER }}
|
REMOTE_USER: ${{ secrets.CI_WWW_REMOTE_USER }}
|
||||||
TARGET: ${{ secrets.CI_WWW_REMOTE_TARGET }}/docs-${{ env.GITHUB_REF_SLUG }}
|
TARGET: ${{ secrets.CI_WWW_REMOTE_TARGET }}/docs-${{ env.GITHUB_REF_SLUG }}
|
||||||
EXCLUDE: "/node_modules/"
|
EXCLUDE: "/node_modules/"
|
||||||
|
|
||||||
- name: Matrix - Node Install
|
- name: Matrix - Node Install
|
||||||
run: npm install
|
run: npm install
|
||||||
working-directory: .github/workflows/support-files
|
working-directory: .github/workflows/support-files
|
||||||
|
|||||||
@@ -17,9 +17,6 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: install yarn in root
|
|
||||||
run: cd ../.. yarn install
|
|
||||||
|
|
||||||
- name: Install npm
|
- name: Install npm
|
||||||
run: npm install
|
run: npm install
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,40 @@
|
|||||||
|
name: ci-nym-vpn-ui-js
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- 'nym-vpn/ui/src/**'
|
||||||
|
- 'nym-vpn/ui/package.json'
|
||||||
|
- 'nym-vpn/ui/index.html'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
runs-on: custom-linux
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Install Node
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
- name: Install Yarn
|
||||||
|
run: npm install -g yarn
|
||||||
|
- name: Install dependencies
|
||||||
|
working-directory: nym-vpn/ui
|
||||||
|
run: yarn
|
||||||
|
- name: Type-check
|
||||||
|
working-directory: nym-vpn/ui
|
||||||
|
run: yarn typecheck
|
||||||
|
- name: Check lint
|
||||||
|
working-directory: nym-vpn/ui
|
||||||
|
run: yarn lint
|
||||||
|
- name: Check formatting
|
||||||
|
working-directory: nym-vpn/ui
|
||||||
|
run: yarn fmt:check
|
||||||
|
# - name: Run tests
|
||||||
|
# working-directory: nym-vpn/ui
|
||||||
|
# run: yarn test
|
||||||
|
- name: Check build
|
||||||
|
working-directory: nym-vpn/ui
|
||||||
|
run: yarn build
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
name: ci-nym-vpn-ui-rust
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- 'nym-vpn/ui/src-tauri/**'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: custom-linux
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
CARGOTOML_PATH: ./nym-vpn/ui/src-tauri/Cargo.toml
|
||||||
|
steps:
|
||||||
|
- name: Install Dependencies (Linux)
|
||||||
|
run: sudo apt-get update && sudo apt-get -y install libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev squashfs-tools libayatana-appindicator3-dev
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install rust toolchain
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: stable
|
||||||
|
override: true
|
||||||
|
components: rustfmt, clippy
|
||||||
|
|
||||||
|
- name: Prepare build
|
||||||
|
run: mkdir nym-vpn/ui/dist
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: build
|
||||||
|
args: --manifest-path ${{ env.CARGOTOML_PATH }} --lib --features custom-protocol
|
||||||
|
|
||||||
|
# - name: Run all tests
|
||||||
|
# uses: actions-rs/cargo@v1
|
||||||
|
# with:
|
||||||
|
# command: test
|
||||||
|
# args: --manifest-path ${{ env.CARGOTOML_PATH }}
|
||||||
|
|
||||||
|
- name: Check formatting
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: fmt
|
||||||
|
args: --manifest-path ${{ env.CARGOTOML_PATH }} --all -- --check
|
||||||
|
|
||||||
|
- name: Annotate with clippy checks
|
||||||
|
uses: actions-rs/clippy-check@v1
|
||||||
|
continue-on-error: true
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
args: --manifest-path ${{ env.CARGOTOML_PATH }} --all-features
|
||||||
|
|
||||||
|
- name: Clippy
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: clippy
|
||||||
|
args: --manifest-path ${{ env.CARGOTOML_PATH }} --all-features --all-targets -- -D warnings
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
# Simple workflow for deploying static content to GitHub Pages
|
|
||||||
name: Deploy static content to Pages
|
|
||||||
|
|
||||||
on:
|
|
||||||
# Runs on pushes targeting the default branch
|
|
||||||
push:
|
|
||||||
branches: ["feature/ppa-repo"]
|
|
||||||
|
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
pages: write
|
|
||||||
id-token: write
|
|
||||||
|
|
||||||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
|
||||||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
|
||||||
concurrency:
|
|
||||||
group: "pages"
|
|
||||||
cancel-in-progress: false
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
# Single deploy job since we're just deploying
|
|
||||||
deploy:
|
|
||||||
environment:
|
|
||||||
name: github-pages
|
|
||||||
url: ${{ steps.deployment.outputs.page_url }}
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
- name: Setup Pages
|
|
||||||
uses: actions/configure-pages@v3
|
|
||||||
- name: Upload artifact
|
|
||||||
uses: actions/upload-pages-artifact@v2
|
|
||||||
with:
|
|
||||||
# Upload entire repository
|
|
||||||
path: './ppa'
|
|
||||||
- name: Deploy to GitHub Pages
|
|
||||||
id: deployment
|
|
||||||
uses: actions/deploy-pages@v2
|
|
||||||
+1
-4
@@ -9,7 +9,6 @@
|
|||||||
target
|
target
|
||||||
.env
|
.env
|
||||||
.env.dev
|
.env.dev
|
||||||
envs/devnet.env
|
|
||||||
/.vscode/settings.json
|
/.vscode/settings.json
|
||||||
validator/.vscode
|
validator/.vscode
|
||||||
sample-configs/validator-config.toml
|
sample-configs/validator-config.toml
|
||||||
@@ -46,6 +45,4 @@ envs/qwerty.env
|
|||||||
cpu-cycles/libcpucycles/build
|
cpu-cycles/libcpucycles/build
|
||||||
foxyfox.env
|
foxyfox.env
|
||||||
|
|
||||||
.next
|
.next
|
||||||
ppa-private-key.b64
|
|
||||||
ppa-private-key.asc
|
|
||||||
@@ -4,41 +4,17 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https://
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
## [2023.5-rolo] (2023-11-28)
|
|
||||||
|
|
||||||
- Gateway won't open websocket listener until embedded Network Requester becomes available ([#4166])
|
|
||||||
- Feature/gateway described nr ([#4147])
|
|
||||||
- Bugfix/prerelease versionbump ([#4145])
|
|
||||||
- returning 'nil' for non-existing origin as opposed to an empty string ([#4135])
|
|
||||||
- using performance^20 when calculating active set selection weight ([#4126])
|
|
||||||
- Change default http API timeout from 3s to 10s ([#4117])
|
|
||||||
|
|
||||||
[#4166]: https://github.com/nymtech/nym/issues/4166
|
|
||||||
[#4147]: https://github.com/nymtech/nym/pull/4147
|
|
||||||
[#4145]: https://github.com/nymtech/nym/pull/4145
|
|
||||||
[#4135]: https://github.com/nymtech/nym/pull/4135
|
|
||||||
[#4126]: https://github.com/nymtech/nym/pull/4126
|
|
||||||
[#4117]: https://github.com/nymtech/nym/pull/4117
|
|
||||||
|
|
||||||
## [2023.nyxd-upgrade] (2023-11-22)
|
|
||||||
|
|
||||||
- Chore/nyxd 043 upgrade ([#3968])
|
|
||||||
|
|
||||||
[#3968]: https://github.com/nymtech/nym/pull/3968
|
|
||||||
|
|
||||||
## [2023.4-galaxy] (2023-11-07)
|
## [2023.4-galaxy] (2023-11-07)
|
||||||
|
|
||||||
- DRY up client cli ([#4077])
|
- DRY up client cli ([#4077])
|
||||||
- [mixnode] replace rocket with axum ([#4071])
|
- [mixnode] replace rocket with axum ([#4071])
|
||||||
- incorporate the nym node HTTP api into the mixnode ([#4070])
|
- incorporate the nym node HTTP api into the mixnode ([#4070])
|
||||||
- replaced '--disable-sign-ext' with '--signext-lowering' when running wasm-opt ([#3896])
|
- replaced '--disable-sign-ext' with '--signext-lowering' when running wasm-opt ([#3896])
|
||||||
- Added PPA repo hosting support and nym-mixnode package with tooling for publishing ([#4165])
|
|
||||||
|
|
||||||
[#4077]: https://github.com/nymtech/nym/pull/4077
|
[#4077]: https://github.com/nymtech/nym/pull/4077
|
||||||
[#4071]: https://github.com/nymtech/nym/pull/4071
|
[#4071]: https://github.com/nymtech/nym/pull/4071
|
||||||
[#4070]: https://github.com/nymtech/nym/issues/4070
|
[#4070]: https://github.com/nymtech/nym/issues/4070
|
||||||
[#3896]: https://github.com/nymtech/nym/pull/3896
|
[#3896]: https://github.com/nymtech/nym/pull/3896
|
||||||
[#4165]: https://github.com/nymtech/nym/pull/4165
|
|
||||||
|
|
||||||
## [2023.3-kinder] (2023-10-31)
|
## [2023.3-kinder] (2023-10-31)
|
||||||
|
|
||||||
|
|||||||
Generated
+487
-548
File diff suppressed because it is too large
Load Diff
+18
-45
@@ -49,7 +49,6 @@ members = [
|
|||||||
"common/exit-policy",
|
"common/exit-policy",
|
||||||
"common/http-api-client",
|
"common/http-api-client",
|
||||||
"common/inclusion-probability",
|
"common/inclusion-probability",
|
||||||
"common/ip-packet-requests",
|
|
||||||
"common/ledger",
|
"common/ledger",
|
||||||
"common/mixnode-common",
|
"common/mixnode-common",
|
||||||
"common/network-defaults",
|
"common/network-defaults",
|
||||||
@@ -67,7 +66,6 @@ members = [
|
|||||||
"common/nymsphinx/params",
|
"common/nymsphinx/params",
|
||||||
"common/nymsphinx/routing",
|
"common/nymsphinx/routing",
|
||||||
"common/nymsphinx/types",
|
"common/nymsphinx/types",
|
||||||
"common/nyxd-scraper",
|
|
||||||
"common/pemstore",
|
"common/pemstore",
|
||||||
"common/socks5-client-core",
|
"common/socks5-client-core",
|
||||||
"common/socks5/proxy-helpers",
|
"common/socks5/proxy-helpers",
|
||||||
@@ -76,7 +74,6 @@ members = [
|
|||||||
"common/store-cipher",
|
"common/store-cipher",
|
||||||
"common/task",
|
"common/task",
|
||||||
"common/topology",
|
"common/topology",
|
||||||
"common/tun",
|
|
||||||
"common/types",
|
"common/types",
|
||||||
"common/wasm/client-core",
|
"common/wasm/client-core",
|
||||||
"common/wasm/storage",
|
"common/wasm/storage",
|
||||||
@@ -102,12 +99,10 @@ members = [
|
|||||||
"nym-node",
|
"nym-node",
|
||||||
"nym-node/nym-node-requests",
|
"nym-node/nym-node-requests",
|
||||||
"nym-outfox",
|
"nym-outfox",
|
||||||
"nym-validator-rewarder",
|
|
||||||
"tools/internal/ssl-inject",
|
"tools/internal/ssl-inject",
|
||||||
"tools/internal/sdk-version-bump",
|
"tools/internal/sdk-version-bump",
|
||||||
"tools/nym-cli",
|
"tools/nym-cli",
|
||||||
"tools/nym-nr-query",
|
"tools/nym-nr-query",
|
||||||
"tools/nymvisor",
|
|
||||||
"tools/ts-rs-cli",
|
"tools/ts-rs-cli",
|
||||||
"wasm/client",
|
"wasm/client",
|
||||||
# "wasm/full-nym-wasm",
|
# "wasm/full-nym-wasm",
|
||||||
@@ -123,9 +118,7 @@ default-members = [
|
|||||||
"service-providers/network-statistics",
|
"service-providers/network-statistics",
|
||||||
"mixnode",
|
"mixnode",
|
||||||
"nym-api",
|
"nym-api",
|
||||||
"tools/nymvisor",
|
|
||||||
"explorer-api",
|
"explorer-api",
|
||||||
"nym-validator-rewarder",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
exclude = ["explorer", "contracts", "nym-wallet", "nym-connect/mobile/src-tauri", "nym-connect/desktop", "nym-vpn/ui/src-tauri", "cpu-cycles"]
|
exclude = ["explorer", "contracts", "nym-wallet", "nym-connect/mobile/src-tauri", "nym-connect/desktop", "nym-vpn/ui/src-tauri", "cpu-cycles"]
|
||||||
@@ -144,8 +137,24 @@ async-trait = "0.1.68"
|
|||||||
axum = "0.6.20"
|
axum = "0.6.20"
|
||||||
base64 = "0.21.4"
|
base64 = "0.21.4"
|
||||||
bip39 = { version = "2.0.0", features = ["zeroize"] }
|
bip39 = { version = "2.0.0", features = ["zeroize"] }
|
||||||
|
boringtun = { git = "https://github.com/cloudflare/boringtun", rev = "e1d6360d6ab4529fc942a078e4c54df107abe2ba" }
|
||||||
clap = "4.4.7"
|
clap = "4.4.7"
|
||||||
cfg-if = "1.0.0"
|
cfg-if = "1.0.0"
|
||||||
|
cosmwasm-derive = "=1.3.0"
|
||||||
|
cosmwasm-schema = "=1.3.0"
|
||||||
|
cosmwasm-std = "=1.3.0"
|
||||||
|
# use 0.5.0 as that's the version used by cosmwasm-std 1.3.0
|
||||||
|
# (and ideally we don't want to pull the same dependency twice)
|
||||||
|
serde-json-wasm = "=0.5.0"
|
||||||
|
cosmwasm-storage = "=1.3.0"
|
||||||
|
cosmrs = "=0.14.0"
|
||||||
|
# same version as used by cosmrs
|
||||||
|
cw-utils = "=1.0.1"
|
||||||
|
cw-storage-plus = "=1.1.0"
|
||||||
|
cw2 = { version = "=1.1.0" }
|
||||||
|
cw3 = { version = "=1.1.0" }
|
||||||
|
cw4 = { version = "=1.1.0" }
|
||||||
|
cw-controllers = { version = "=1.1.0" }
|
||||||
dashmap = "5.5.3"
|
dashmap = "5.5.3"
|
||||||
dotenvy = "0.15.6"
|
dotenvy = "0.15.6"
|
||||||
futures = "0.3.28"
|
futures = "0.3.28"
|
||||||
@@ -162,12 +171,10 @@ reqwest = "0.11.22"
|
|||||||
schemars = "0.8.1"
|
schemars = "0.8.1"
|
||||||
serde = "1.0.152"
|
serde = "1.0.152"
|
||||||
serde_json = "1.0.91"
|
serde_json = "1.0.91"
|
||||||
sqlx = "0.6.3"
|
|
||||||
tap = "1.0.1"
|
tap = "1.0.1"
|
||||||
time = "0.3.30"
|
tendermint-rpc = "0.32" # same version as used by cosmrs
|
||||||
thiserror = "1.0.48"
|
thiserror = "1.0.48"
|
||||||
tokio = "1.33.0"
|
tokio = "1.24.1"
|
||||||
tokio-util = "0.7.10"
|
|
||||||
tokio-tungstenite = "0.20.1"
|
tokio-tungstenite = "0.20.1"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
tungstenite = { version = "0.20.1", default-features = false }
|
tungstenite = { version = "0.20.1", default-features = false }
|
||||||
@@ -177,40 +184,6 @@ utoipa-swagger-ui = "3.1.5"
|
|||||||
url = "2.4"
|
url = "2.4"
|
||||||
zeroize = "1.6.0"
|
zeroize = "1.6.0"
|
||||||
|
|
||||||
# coconut/DKG related
|
|
||||||
# unfortunately until https://github.com/zkcrypto/bls12_381/issues/10 is resolved, we have to rely on the fork
|
|
||||||
# as we need to be able to serialize Gt so that we could create the lookup table for baby-step-giant-step algorithm
|
|
||||||
bls12_381 = { git = "https://github.com/jstuczyn/bls12_381", branch ="feature/gt-serialization-0.8.0" }
|
|
||||||
group = "0.13.0"
|
|
||||||
ff = "0.13.0"
|
|
||||||
|
|
||||||
|
|
||||||
# cosmwasm-related
|
|
||||||
cosmwasm-derive = "=1.3.0"
|
|
||||||
cosmwasm-schema = "=1.3.0"
|
|
||||||
cosmwasm-std = "=1.3.0"
|
|
||||||
# use 0.5.0 as that's the version used by cosmwasm-std 1.3.0
|
|
||||||
# (and ideally we don't want to pull the same dependency twice)
|
|
||||||
serde-json-wasm = "=0.5.0"
|
|
||||||
cosmwasm-storage = "=1.3.0"
|
|
||||||
# same version as used by cosmwasm
|
|
||||||
cw-utils = "=1.0.1"
|
|
||||||
cw-storage-plus = "=1.1.0"
|
|
||||||
cw2 = { version = "=1.1.0" }
|
|
||||||
cw3 = { version = "=1.1.0" }
|
|
||||||
cw4 = { version = "=1.1.0" }
|
|
||||||
cw-controllers = { version = "=1.1.0" }
|
|
||||||
|
|
||||||
# cosmrs-related
|
|
||||||
bip32 = "0.5.1"
|
|
||||||
|
|
||||||
# temporarily using a fork again (yay.) because we need staking and slashing support
|
|
||||||
cosmrs = { git = "https://github.com/jstuczyn/cosmos-rust", branch ="nym-temp/all-validator-features" }
|
|
||||||
#cosmrs = { git = "https://github.com/jstuczyn/cosmos-rust", branch = "nym-temp/all-validator-features" } # unfortuntely we need a fork by yours truly to get the staking support
|
|
||||||
tendermint = "0.34" # same version as used by cosmrs
|
|
||||||
tendermint-rpc = "0.34" # same version as used by cosmrs
|
|
||||||
prost = "0.12"
|
|
||||||
|
|
||||||
# wasm-related dependencies
|
# wasm-related dependencies
|
||||||
gloo-utils = "0.1.7"
|
gloo-utils = "0.1.7"
|
||||||
js-sys = "0.3.63"
|
js-sys = "0.3.63"
|
||||||
|
|||||||
@@ -1,439 +0,0 @@
|
|||||||
Attribution-NonCommercial-ShareAlike 4.0 International
|
|
||||||
|
|
||||||
=======================================================================
|
|
||||||
|
|
||||||
Creative Commons Corporation ("Creative Commons") is not a law firm and
|
|
||||||
does not provide legal services or legal advice. Distribution of
|
|
||||||
Creative Commons public licenses does not create a lawyer-client or
|
|
||||||
other relationship. Creative Commons makes its licenses and related
|
|
||||||
information available on an "as-is" basis. Creative Commons gives no
|
|
||||||
warranties regarding its licenses, any material licensed under their
|
|
||||||
terms and conditions, or any related information. Creative Commons
|
|
||||||
disclaims all liability for damages resulting from their use to the
|
|
||||||
fullest extent possible.
|
|
||||||
|
|
||||||
Using Creative Commons Public Licenses
|
|
||||||
|
|
||||||
Creative Commons public licenses provide a standard set of terms and
|
|
||||||
conditions that creators and other rights holders may use to share
|
|
||||||
original works of authorship and other material subject to copyright
|
|
||||||
and certain other rights specified in the public license below. The
|
|
||||||
following considerations are for informational purposes only, are not
|
|
||||||
exhaustive, and do not form part of our licenses.
|
|
||||||
|
|
||||||
Considerations for licensors: Our public licenses are
|
|
||||||
intended for use by those authorized to give the public
|
|
||||||
permission to use material in ways otherwise restricted by
|
|
||||||
copyright and certain other rights. Our licenses are
|
|
||||||
irrevocable. Licensors should read and understand the terms
|
|
||||||
and conditions of the license they choose before applying it.
|
|
||||||
Licensors should also secure all rights necessary before
|
|
||||||
applying our licenses so that the public can reuse the
|
|
||||||
material as expected. Licensors should clearly mark any
|
|
||||||
material not subject to the license. This includes other CC-
|
|
||||||
licensed material, or material used under an exception or
|
|
||||||
limitation to copyright. More considerations for licensors:
|
|
||||||
wiki.creativecommons.org/Considerations_for_licensors
|
|
||||||
|
|
||||||
Considerations for the public: By using one of our public
|
|
||||||
licenses, a licensor grants the public permission to use the
|
|
||||||
licensed material under specified terms and conditions. If
|
|
||||||
the licensor's permission is not necessary for any reason--for
|
|
||||||
example, because of any applicable exception or limitation to
|
|
||||||
copyright--then that use is not regulated by the license. Our
|
|
||||||
licenses grant only permissions under copyright and certain
|
|
||||||
other rights that a licensor has authority to grant. Use of
|
|
||||||
the licensed material may still be restricted for other
|
|
||||||
reasons, including because others have copyright or other
|
|
||||||
rights in the material. A licensor may make special requests,
|
|
||||||
such as asking that all changes be marked or described.
|
|
||||||
Although not required by our licenses, you are encouraged to
|
|
||||||
respect those requests where reasonable. More considerations
|
|
||||||
for the public:
|
|
||||||
wiki.creativecommons.org/Considerations_for_licensees
|
|
||||||
|
|
||||||
=======================================================================
|
|
||||||
|
|
||||||
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
|
|
||||||
Public License
|
|
||||||
|
|
||||||
By exercising the Licensed Rights (defined below), You accept and agree
|
|
||||||
to be bound by the terms and conditions of this Creative Commons
|
|
||||||
Attribution-NonCommercial-ShareAlike 4.0 International Public License
|
|
||||||
("Public License"). To the extent this Public License may be
|
|
||||||
interpreted as a contract, You are granted the Licensed Rights in
|
|
||||||
consideration of Your acceptance of these terms and conditions, and the
|
|
||||||
Licensor grants You such rights in consideration of benefits the
|
|
||||||
Licensor receives from making the Licensed Material available under
|
|
||||||
these terms and conditions.
|
|
||||||
|
|
||||||
|
|
||||||
Section 1 -- Definitions.
|
|
||||||
|
|
||||||
a. Adapted Material means material subject to Copyright and Similar
|
|
||||||
Rights that is derived from or based upon the Licensed Material
|
|
||||||
and in which the Licensed Material is translated, altered,
|
|
||||||
arranged, transformed, or otherwise modified in a manner requiring
|
|
||||||
permission under the Copyright and Similar Rights held by the
|
|
||||||
Licensor. For purposes of this Public License, where the Licensed
|
|
||||||
Material is a musical work, performance, or sound recording,
|
|
||||||
Adapted Material is always produced where the Licensed Material is
|
|
||||||
synched in timed relation with a moving image.
|
|
||||||
|
|
||||||
b. Adapter's License means the license You apply to Your Copyright
|
|
||||||
and Similar Rights in Your contributions to Adapted Material in
|
|
||||||
accordance with the terms and conditions of this Public License.
|
|
||||||
|
|
||||||
c. BY-NC-SA Compatible License means a license listed at
|
|
||||||
creativecommons.org/compatiblelicenses, approved by Creative
|
|
||||||
Commons as essentially the equivalent of this Public License.
|
|
||||||
|
|
||||||
d. Copyright and Similar Rights means copyright and/or similar rights
|
|
||||||
closely related to copyright including, without limitation,
|
|
||||||
performance, broadcast, sound recording, and Sui Generis Database
|
|
||||||
Rights, without regard to how the rights are labeled or
|
|
||||||
categorized. For purposes of this Public License, the rights
|
|
||||||
specified in Section 2(b)(1)-(2) are not Copyright and Similar
|
|
||||||
Rights.
|
|
||||||
|
|
||||||
e. Effective Technological Measures means those measures that, in the
|
|
||||||
absence of proper authority, may not be circumvented under laws
|
|
||||||
fulfilling obligations under Article 11 of the WIPO Copyright
|
|
||||||
Treaty adopted on December 20, 1996, and/or similar international
|
|
||||||
agreements.
|
|
||||||
|
|
||||||
f. Exceptions and Limitations means fair use, fair dealing, and/or
|
|
||||||
any other exception or limitation to Copyright and Similar Rights
|
|
||||||
that applies to Your use of the Licensed Material.
|
|
||||||
|
|
||||||
g. License Elements means the license attributes listed in the name
|
|
||||||
of a Creative Commons Public License. The License Elements of this
|
|
||||||
Public License are Attribution, NonCommercial, and ShareAlike.
|
|
||||||
|
|
||||||
h. Licensed Material means the artistic or literary work, database,
|
|
||||||
or other material to which the Licensor applied this Public
|
|
||||||
License.
|
|
||||||
|
|
||||||
i. Licensed Rights means the rights granted to You subject to the
|
|
||||||
terms and conditions of this Public License, which are limited to
|
|
||||||
all Copyright and Similar Rights that apply to Your use of the
|
|
||||||
Licensed Material and that the Licensor has authority to license.
|
|
||||||
|
|
||||||
j. Licensor means the individual(s) or entity(ies) granting rights
|
|
||||||
under this Public License.
|
|
||||||
|
|
||||||
k. NonCommercial means not primarily intended for or directed towards
|
|
||||||
commercial advantage or monetary compensation. For purposes of
|
|
||||||
this Public License, the exchange of the Licensed Material for
|
|
||||||
other material subject to Copyright and Similar Rights by digital
|
|
||||||
file-sharing or similar means is NonCommercial provided there is
|
|
||||||
no payment of monetary compensation in connection with the
|
|
||||||
exchange.
|
|
||||||
|
|
||||||
l. Share means to provide material to the public by any means or
|
|
||||||
process that requires permission under the Licensed Rights, such
|
|
||||||
as reproduction, public display, public performance, distribution,
|
|
||||||
dissemination, communication, or importation, and to make material
|
|
||||||
available to the public including in ways that members of the
|
|
||||||
public may access the material from a place and at a time
|
|
||||||
individually chosen by them.
|
|
||||||
|
|
||||||
m. Sui Generis Database Rights means rights other than copyright
|
|
||||||
resulting from Directive 96/9/EC of the European Parliament and of
|
|
||||||
the Council of 11 March 1996 on the legal protection of databases,
|
|
||||||
as amended and/or succeeded, as well as other essentially
|
|
||||||
equivalent rights anywhere in the world.
|
|
||||||
|
|
||||||
n. You means the individual or entity exercising the Licensed Rights
|
|
||||||
under this Public License. Your has a corresponding meaning.
|
|
||||||
|
|
||||||
|
|
||||||
Section 2 -- Scope.
|
|
||||||
|
|
||||||
a. License grant.
|
|
||||||
|
|
||||||
1. Subject to the terms and conditions of this Public License,
|
|
||||||
the Licensor hereby grants You a worldwide, royalty-free,
|
|
||||||
non-sublicensable, non-exclusive, irrevocable license to
|
|
||||||
exercise the Licensed Rights in the Licensed Material to:
|
|
||||||
|
|
||||||
a. reproduce and Share the Licensed Material, in whole or
|
|
||||||
in part, for NonCommercial purposes only; and
|
|
||||||
|
|
||||||
b. produce, reproduce, and Share Adapted Material for
|
|
||||||
NonCommercial purposes only.
|
|
||||||
|
|
||||||
2. Exceptions and Limitations. For the avoidance of doubt, where
|
|
||||||
Exceptions and Limitations apply to Your use, this Public
|
|
||||||
License does not apply, and You do not need to comply with
|
|
||||||
its terms and conditions.
|
|
||||||
|
|
||||||
3. Term. The term of this Public License is specified in Section
|
|
||||||
6(a).
|
|
||||||
|
|
||||||
4. Media and formats; technical modifications allowed. The
|
|
||||||
Licensor authorizes You to exercise the Licensed Rights in
|
|
||||||
all media and formats whether now known or hereafter created,
|
|
||||||
and to make technical modifications necessary to do so. The
|
|
||||||
Licensor waives and/or agrees not to assert any right or
|
|
||||||
authority to forbid You from making technical modifications
|
|
||||||
necessary to exercise the Licensed Rights, including
|
|
||||||
technical modifications necessary to circumvent Effective
|
|
||||||
Technological Measures. For purposes of this Public License,
|
|
||||||
simply making modifications authorized by this Section 2(a)
|
|
||||||
(4) never produces Adapted Material.
|
|
||||||
|
|
||||||
5. Downstream recipients.
|
|
||||||
|
|
||||||
a. Offer from the Licensor -- Licensed Material. Every
|
|
||||||
recipient of the Licensed Material automatically
|
|
||||||
receives an offer from the Licensor to exercise the
|
|
||||||
Licensed Rights under the terms and conditions of this
|
|
||||||
Public License.
|
|
||||||
|
|
||||||
b. Additional offer from the Licensor -- Adapted Material.
|
|
||||||
Every recipient of Adapted Material from You
|
|
||||||
automatically receives an offer from the Licensor to
|
|
||||||
exercise the Licensed Rights in the Adapted Material
|
|
||||||
under the conditions of the Adapter's License You apply.
|
|
||||||
|
|
||||||
c. No downstream restrictions. You may not offer or impose
|
|
||||||
any additional or different terms or conditions on, or
|
|
||||||
apply any Effective Technological Measures to, the
|
|
||||||
Licensed Material if doing so restricts exercise of the
|
|
||||||
Licensed Rights by any recipient of the Licensed
|
|
||||||
Material.
|
|
||||||
|
|
||||||
6. No endorsement. Nothing in this Public License constitutes or
|
|
||||||
may be construed as permission to assert or imply that You
|
|
||||||
are, or that Your use of the Licensed Material is, connected
|
|
||||||
with, or sponsored, endorsed, or granted official status by,
|
|
||||||
the Licensor or others designated to receive attribution as
|
|
||||||
provided in Section 3(a)(1)(A)(i).
|
|
||||||
|
|
||||||
b. Other rights.
|
|
||||||
|
|
||||||
1. Moral rights, such as the right of integrity, are not
|
|
||||||
licensed under this Public License, nor are publicity,
|
|
||||||
privacy, and/or other similar personality rights; however, to
|
|
||||||
the extent possible, the Licensor waives and/or agrees not to
|
|
||||||
assert any such rights held by the Licensor to the limited
|
|
||||||
extent necessary to allow You to exercise the Licensed
|
|
||||||
Rights, but not otherwise.
|
|
||||||
|
|
||||||
2. Patent and trademark rights are not licensed under this
|
|
||||||
Public License.
|
|
||||||
|
|
||||||
3. To the extent possible, the Licensor waives any right to
|
|
||||||
collect royalties from You for the exercise of the Licensed
|
|
||||||
Rights, whether directly or through a collecting society
|
|
||||||
under any voluntary or waivable statutory or compulsory
|
|
||||||
licensing scheme. In all other cases the Licensor expressly
|
|
||||||
reserves any right to collect such royalties, including when
|
|
||||||
the Licensed Material is used other than for NonCommercial
|
|
||||||
purposes.
|
|
||||||
|
|
||||||
|
|
||||||
Section 3 -- License Conditions.
|
|
||||||
|
|
||||||
Your exercise of the Licensed Rights is expressly made subject to the
|
|
||||||
following conditions.
|
|
||||||
|
|
||||||
a. Attribution.
|
|
||||||
|
|
||||||
1. If You Share the Licensed Material (including in modified
|
|
||||||
form), You must:
|
|
||||||
|
|
||||||
a. retain the following if it is supplied by the Licensor
|
|
||||||
with the Licensed Material:
|
|
||||||
|
|
||||||
i. identification of the creator(s) of the Licensed
|
|
||||||
Material and any others designated to receive
|
|
||||||
attribution, in any reasonable manner requested by
|
|
||||||
the Licensor (including by pseudonym if
|
|
||||||
designated);
|
|
||||||
|
|
||||||
ii. a copyright notice;
|
|
||||||
|
|
||||||
iii. a notice that refers to this Public License;
|
|
||||||
|
|
||||||
iv. a notice that refers to the disclaimer of
|
|
||||||
warranties;
|
|
||||||
|
|
||||||
v. a URI or hyperlink to the Licensed Material to the
|
|
||||||
extent reasonably practicable;
|
|
||||||
|
|
||||||
b. indicate if You modified the Licensed Material and
|
|
||||||
retain an indication of any previous modifications; and
|
|
||||||
|
|
||||||
c. indicate the Licensed Material is licensed under this
|
|
||||||
Public License, and include the text of, or the URI or
|
|
||||||
hyperlink to, this Public License.
|
|
||||||
|
|
||||||
2. You may satisfy the conditions in Section 3(a)(1) in any
|
|
||||||
reasonable manner based on the medium, means, and context in
|
|
||||||
which You Share the Licensed Material. For example, it may be
|
|
||||||
reasonable to satisfy the conditions by providing a URI or
|
|
||||||
hyperlink to a resource that includes the required
|
|
||||||
information.
|
|
||||||
3. If requested by the Licensor, You must remove any of the
|
|
||||||
information required by Section 3(a)(1)(A) to the extent
|
|
||||||
reasonably practicable.
|
|
||||||
|
|
||||||
b. ShareAlike.
|
|
||||||
|
|
||||||
In addition to the conditions in Section 3(a), if You Share
|
|
||||||
Adapted Material You produce, the following conditions also apply.
|
|
||||||
|
|
||||||
1. The Adapter's License You apply must be a Creative Commons
|
|
||||||
license with the same License Elements, this version or
|
|
||||||
later, or a BY-NC-SA Compatible License.
|
|
||||||
|
|
||||||
2. You must include the text of, or the URI or hyperlink to, the
|
|
||||||
Adapter's License You apply. You may satisfy this condition
|
|
||||||
in any reasonable manner based on the medium, means, and
|
|
||||||
context in which You Share Adapted Material.
|
|
||||||
|
|
||||||
3. You may not offer or impose any additional or different terms
|
|
||||||
or conditions on, or apply any Effective Technological
|
|
||||||
Measures to, Adapted Material that restrict exercise of the
|
|
||||||
rights granted under the Adapter's License You apply.
|
|
||||||
|
|
||||||
|
|
||||||
Section 4 -- Sui Generis Database Rights.
|
|
||||||
|
|
||||||
Where the Licensed Rights include Sui Generis Database Rights that
|
|
||||||
apply to Your use of the Licensed Material:
|
|
||||||
|
|
||||||
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
|
|
||||||
to extract, reuse, reproduce, and Share all or a substantial
|
|
||||||
portion of the contents of the database for NonCommercial purposes
|
|
||||||
only;
|
|
||||||
|
|
||||||
b. if You include all or a substantial portion of the database
|
|
||||||
contents in a database in which You have Sui Generis Database
|
|
||||||
Rights, then the database in which You have Sui Generis Database
|
|
||||||
Rights (but not its individual contents) is Adapted Material,
|
|
||||||
including for purposes of Section 3(b); and
|
|
||||||
|
|
||||||
c. You must comply with the conditions in Section 3(a) if You Share
|
|
||||||
all or a substantial portion of the contents of the database.
|
|
||||||
|
|
||||||
For the avoidance of doubt, this Section 4 supplements and does not
|
|
||||||
replace Your obligations under this Public License where the Licensed
|
|
||||||
Rights include other Copyright and Similar Rights.
|
|
||||||
|
|
||||||
|
|
||||||
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
|
|
||||||
|
|
||||||
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
|
|
||||||
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
|
|
||||||
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
|
|
||||||
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
|
|
||||||
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
|
|
||||||
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
||||||
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
|
|
||||||
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
|
|
||||||
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
|
|
||||||
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
|
|
||||||
|
|
||||||
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
|
|
||||||
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
|
|
||||||
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
|
|
||||||
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
|
|
||||||
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
|
|
||||||
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
|
|
||||||
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
|
|
||||||
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
|
|
||||||
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
|
|
||||||
|
|
||||||
c. The disclaimer of warranties and limitation of liability provided
|
|
||||||
above shall be interpreted in a manner that, to the extent
|
|
||||||
possible, most closely approximates an absolute disclaimer and
|
|
||||||
waiver of all liability.
|
|
||||||
|
|
||||||
|
|
||||||
Section 6 -- Term and Termination.
|
|
||||||
|
|
||||||
a. This Public License applies for the term of the Copyright and
|
|
||||||
Similar Rights licensed here. However, if You fail to comply with
|
|
||||||
this Public License, then Your rights under this Public License
|
|
||||||
terminate automatically.
|
|
||||||
|
|
||||||
b. Where Your right to use the Licensed Material has terminated under
|
|
||||||
Section 6(a), it reinstates:
|
|
||||||
|
|
||||||
1. automatically as of the date the violation is cured, provided
|
|
||||||
it is cured within 30 days of Your discovery of the
|
|
||||||
violation; or
|
|
||||||
|
|
||||||
2. upon express reinstatement by the Licensor.
|
|
||||||
|
|
||||||
For the avoidance of doubt, this Section 6(b) does not affect any
|
|
||||||
right the Licensor may have to seek remedies for Your violations
|
|
||||||
of this Public License.
|
|
||||||
|
|
||||||
c. For the avoidance of doubt, the Licensor may also offer the
|
|
||||||
Licensed Material under separate terms or conditions or stop
|
|
||||||
distributing the Licensed Material at any time; however, doing so
|
|
||||||
will not terminate this Public License.
|
|
||||||
|
|
||||||
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
|
|
||||||
License.
|
|
||||||
|
|
||||||
|
|
||||||
Section 7 -- Other Terms and Conditions.
|
|
||||||
|
|
||||||
a. The Licensor shall not be bound by any additional or different
|
|
||||||
terms or conditions communicated by You unless expressly agreed.
|
|
||||||
|
|
||||||
b. Any arrangements, understandings, or agreements regarding the
|
|
||||||
Licensed Material not stated herein are separate from and
|
|
||||||
independent of the terms and conditions of this Public License.
|
|
||||||
|
|
||||||
|
|
||||||
Section 8 -- Interpretation.
|
|
||||||
|
|
||||||
a. For the avoidance of doubt, this Public License does not, and
|
|
||||||
shall not be interpreted to, reduce, limit, restrict, or impose
|
|
||||||
conditions on any use of the Licensed Material that could lawfully
|
|
||||||
be made without permission under this Public License.
|
|
||||||
|
|
||||||
b. To the extent possible, if any provision of this Public License is
|
|
||||||
deemed unenforceable, it shall be automatically reformed to the
|
|
||||||
minimum extent necessary to make it enforceable. If the provision
|
|
||||||
cannot be reformed, it shall be severed from this Public License
|
|
||||||
without affecting the enforceability of the remaining terms and
|
|
||||||
conditions.
|
|
||||||
|
|
||||||
c. No term or condition of this Public License will be waived and no
|
|
||||||
failure to comply consented to unless expressly agreed to by the
|
|
||||||
Licensor.
|
|
||||||
|
|
||||||
d. Nothing in this Public License constitutes or may be interpreted
|
|
||||||
as a limitation upon, or waiver of, any privileges and immunities
|
|
||||||
that apply to the Licensor or You, including from the legal
|
|
||||||
processes of any jurisdiction or authority.
|
|
||||||
|
|
||||||
=======================================================================
|
|
||||||
|
|
||||||
Creative Commons is not a party to its public
|
|
||||||
licenses. Notwithstanding, Creative Commons may elect to apply one of
|
|
||||||
its public licenses to material it publishes and in those instances
|
|
||||||
will be considered the “Licensor.†The text of the Creative Commons
|
|
||||||
public licenses is dedicated to the public domain under the CC0 Public
|
|
||||||
Domain Dedication. Except for the limited purpose of indicating that
|
|
||||||
material is shared under a Creative Commons public license or as
|
|
||||||
otherwise permitted by the Creative Commons policies published at
|
|
||||||
creativecommons.org/policies, Creative Commons does not authorize the
|
|
||||||
use of the trademark "Creative Commons" or any other trademark or logo
|
|
||||||
of Creative Commons without its prior written consent including,
|
|
||||||
without limitation, in connection with any unauthorized modifications
|
|
||||||
to any of its public licenses or any other arrangements,
|
|
||||||
understandings, or agreements concerning use of licensed material. For
|
|
||||||
the avoidance of doubt, this paragraph does not form part of the
|
|
||||||
public licenses.
|
|
||||||
|
|
||||||
Creative Commons may be contacted at creativecommons.org.
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,675 +0,0 @@
|
|||||||
GNU GENERAL PUBLIC LICENSE
|
|
||||||
Version 3, 29 June 2007
|
|
||||||
|
|
||||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
|
||||||
of this license document, but changing it is not allowed.
|
|
||||||
|
|
||||||
Preamble
|
|
||||||
|
|
||||||
The GNU General Public License is a free, copyleft license for
|
|
||||||
software and other kinds of works.
|
|
||||||
|
|
||||||
The licenses for most software and other practical works are designed
|
|
||||||
to take away your freedom to share and change the works. By contrast,
|
|
||||||
the GNU General Public License is intended to guarantee your freedom to
|
|
||||||
share and change all versions of a program--to make sure it remains free
|
|
||||||
software for all its users. We, the Free Software Foundation, use the
|
|
||||||
GNU General Public License for most of our software; it applies also to
|
|
||||||
any other work released this way by its authors. You can apply it to
|
|
||||||
your programs, too.
|
|
||||||
|
|
||||||
When we speak of free software, we are referring to freedom, not
|
|
||||||
price. Our General Public Licenses are designed to make sure that you
|
|
||||||
have the freedom to distribute copies of free software (and charge for
|
|
||||||
them if you wish), that you receive source code or can get it if you
|
|
||||||
want it, that you can change the software or use pieces of it in new
|
|
||||||
free programs, and that you know you can do these things.
|
|
||||||
|
|
||||||
To protect your rights, we need to prevent others from denying you
|
|
||||||
these rights or asking you to surrender the rights. Therefore, you have
|
|
||||||
certain responsibilities if you distribute copies of the software, or if
|
|
||||||
you modify it: responsibilities to respect the freedom of others.
|
|
||||||
|
|
||||||
For example, if you distribute copies of such a program, whether
|
|
||||||
gratis or for a fee, you must pass on to the recipients the same
|
|
||||||
freedoms that you received. You must make sure that they, too, receive
|
|
||||||
or can get the source code. And you must show them these terms so they
|
|
||||||
know their rights.
|
|
||||||
|
|
||||||
Developers that use the GNU GPL protect your rights with two steps:
|
|
||||||
(1) assert copyright on the software, and (2) offer you this License
|
|
||||||
giving you legal permission to copy, distribute and/or modify it.
|
|
||||||
|
|
||||||
For the developers' and authors' protection, the GPL clearly explains
|
|
||||||
that there is no warranty for this free software. For both users' and
|
|
||||||
authors' sake, the GPL requires that modified versions be marked as
|
|
||||||
changed, so that their problems will not be attributed erroneously to
|
|
||||||
authors of previous versions.
|
|
||||||
|
|
||||||
Some devices are designed to deny users access to install or run
|
|
||||||
modified versions of the software inside them, although the manufacturer
|
|
||||||
can do so. This is fundamentally incompatible with the aim of
|
|
||||||
protecting users' freedom to change the software. The systematic
|
|
||||||
pattern of such abuse occurs in the area of products for individuals to
|
|
||||||
use, which is precisely where it is most unacceptable. Therefore, we
|
|
||||||
have designed this version of the GPL to prohibit the practice for those
|
|
||||||
products. If such problems arise substantially in other domains, we
|
|
||||||
stand ready to extend this provision to those domains in future versions
|
|
||||||
of the GPL, as needed to protect the freedom of users.
|
|
||||||
|
|
||||||
Finally, every program is threatened constantly by software patents.
|
|
||||||
States should not allow patents to restrict development and use of
|
|
||||||
software on general-purpose computers, but in those that do, we wish to
|
|
||||||
avoid the special danger that patents applied to a free program could
|
|
||||||
make it effectively proprietary. To prevent this, the GPL assures that
|
|
||||||
patents cannot be used to render the program non-free.
|
|
||||||
|
|
||||||
The precise terms and conditions for copying, distribution and
|
|
||||||
modification follow.
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
0. Definitions.
|
|
||||||
|
|
||||||
"This License" refers to version 3 of the GNU General Public License.
|
|
||||||
|
|
||||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
|
||||||
works, such as semiconductor masks.
|
|
||||||
|
|
||||||
"The Program" refers to any copyrightable work licensed under this
|
|
||||||
License. Each licensee is addressed as "you". "Licensees" and
|
|
||||||
"recipients" may be individuals or organizations.
|
|
||||||
|
|
||||||
To "modify" a work means tocopy from or adapt all or part of the work
|
|
||||||
in a fashion requiring copyright permission, other than the making of an
|
|
||||||
exact copy. The resulting work is called a "modified version" of the
|
|
||||||
earlier work or a work "based on" the earlier work.
|
|
||||||
|
|
||||||
A "covered work" means either the unmodified Program or a work based
|
|
||||||
on the Program.
|
|
||||||
|
|
||||||
To "propagate" a work means to do anything with it that, without
|
|
||||||
permission, would make you directly or secondarily liable for
|
|
||||||
infringement under applicable copyright law, except executing it on a
|
|
||||||
computer or modifying a private copy. Propagation includes copying,
|
|
||||||
distribution (with or without modification), making available to the
|
|
||||||
public, and in some countries other activities as well.
|
|
||||||
|
|
||||||
To "convey" a work means any kind of propagation that enables other
|
|
||||||
parties to make or receive copies. Mere interaction with a user through
|
|
||||||
a computer network, with no transfer of a copy, is not conveying.
|
|
||||||
|
|
||||||
An interactive user interface displays "Appropriate Legal Notices"
|
|
||||||
to the extent that it includes a convenient and prominently visible
|
|
||||||
feature that (1) displays an appropriate copyright notice, and (2)
|
|
||||||
tells the user that there is no warranty for the work (except to the
|
|
||||||
extent that warranties are provided), that licensees may convey the
|
|
||||||
work under this License, and how to view a copy of this License. If
|
|
||||||
the interface presents a list of user commands or options, such as a
|
|
||||||
menu, a prominent item in the list meets this criterion.
|
|
||||||
|
|
||||||
1. Source Code.
|
|
||||||
|
|
||||||
The "source code" for a work means the preferred form of the work
|
|
||||||
for making modifications to it. "Object code" means any non-source
|
|
||||||
form of a work.
|
|
||||||
|
|
||||||
A "Standard Interface" means an interface that either is an official
|
|
||||||
standard defined by a recognized standards body, or, in the case of
|
|
||||||
interfaces specified for a particular programming language, one that
|
|
||||||
is widely used among developers working in that language.
|
|
||||||
|
|
||||||
The "System Libraries" of an executable work include anything, other
|
|
||||||
than the work as a whole, that (a) is included in the normal form of
|
|
||||||
packaging a Major Component, but which is not part of that Major
|
|
||||||
Component, and (b) serves only to enable use of the work with that
|
|
||||||
Major Component, or to implement a Standard Interface for which an
|
|
||||||
implementation is available to the public in source code form. A
|
|
||||||
"Major Component", in this context, means a major essential component
|
|
||||||
(kernel, window system, and so on) of the specific operating system
|
|
||||||
(if any) on which the executable work runs, or a compiler used to
|
|
||||||
produce the work, or an object code interpreter used to run it.
|
|
||||||
|
|
||||||
The "Corresponding Source" for a work in object code form means all
|
|
||||||
the source code needed to generate, install, and (for an executable
|
|
||||||
work) run the object code and to modify the work, including scripts to
|
|
||||||
control those activities. However, it does not include the work's
|
|
||||||
System Libraries, or general-purpose tools or generally available free
|
|
||||||
programs which are used unmodified in performing those activities but
|
|
||||||
which are not part of the work. For example, Corresponding Source
|
|
||||||
includes interface definition files associated with source files for
|
|
||||||
the work, and the source code for shared libraries and dynamically
|
|
||||||
linked subprograms that the work is specifically designed to require,
|
|
||||||
such as by intimate data communication or control flow between those
|
|
||||||
subprograms and other parts of the work.
|
|
||||||
|
|
||||||
The Corresponding Source need not include anything that users
|
|
||||||
can regenerate automatically from other parts of the Corresponding
|
|
||||||
Source.
|
|
||||||
|
|
||||||
The Corresponding Source for a work in source code form is that
|
|
||||||
same work.
|
|
||||||
|
|
||||||
2. Basic Permissions.
|
|
||||||
|
|
||||||
All rights granted under this License are granted for the term of
|
|
||||||
copyright on the Program, and are irrevocable provided the stated
|
|
||||||
conditions are met. This License explicitly affirms your unlimited
|
|
||||||
permission to run the unmodified Program. The output from running a
|
|
||||||
covered work is covered by this License only if the output, given its
|
|
||||||
content, constitutes a covered work. This License acknowledges your
|
|
||||||
rights of fair use or other equivalent, as provided by copyright law.
|
|
||||||
|
|
||||||
You may make, run and propagate covered works that you do not
|
|
||||||
convey, without conditions so long as your license otherwise remains
|
|
||||||
in force. You may convey covered works to others for the sole purpose
|
|
||||||
of having them make modifications exclusively for you, or provide you
|
|
||||||
with facilities for running those works, provided that you comply with
|
|
||||||
the terms of this License in conveying all material for which you do
|
|
||||||
not control copyright. Those thus making or running the covered works
|
|
||||||
for you must do so exclusively on your behalf, under your direction
|
|
||||||
and control, on terms that prohibit them from making any copies of
|
|
||||||
your copyrighted material outside their relationship with you.
|
|
||||||
|
|
||||||
Conveying under any other circumstances is permitted solely under
|
|
||||||
the conditions stated below. Sublicensing is not allowed; section 10
|
|
||||||
makes it unnecessary.
|
|
||||||
|
|
||||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
|
||||||
|
|
||||||
No covered work shall be deemed part of an effective technological
|
|
||||||
measure under any applicable law fulfilling obligations under article
|
|
||||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
|
||||||
similar laws prohibiting or restricting circumvention of such
|
|
||||||
measures.
|
|
||||||
|
|
||||||
When you convey a covered work, you waive any legal power to forbid
|
|
||||||
circumvention of technological measures to the extent such circumvention
|
|
||||||
is effected by exercising rights under this License with respect to
|
|
||||||
the covered work, and you disclaim any intention to limit operation or
|
|
||||||
modification of the work as a means of enforcing, against the work's
|
|
||||||
users, your or third parties' legal rights to forbid circumvention of
|
|
||||||
technological measures.
|
|
||||||
|
|
||||||
4. Conveying Verbatim Copies.
|
|
||||||
|
|
||||||
You may convey verbatim copies of the Program's source code as you
|
|
||||||
receive it, in any medium, provided that you conspicuously and
|
|
||||||
appropriately publish on each copy an appropriate copyright notice;
|
|
||||||
keep intact all notices stating that this License and any
|
|
||||||
non-permissive terms added in accord with section 7 apply to the code;
|
|
||||||
keep intact all notices of the absence of any warranty; and give all
|
|
||||||
recipients a copy of this License along with the Program.
|
|
||||||
|
|
||||||
You may charge any price or no price for each copy that you convey,
|
|
||||||
and you may offer support or warranty protection for a fee.
|
|
||||||
|
|
||||||
5. Conveying Modified Source Versions.
|
|
||||||
|
|
||||||
You may convey a work based on the Program, or the modifications to
|
|
||||||
produce it from the Program, in the form of source code under the
|
|
||||||
terms of section 4, provided that you also meet all of these conditions:
|
|
||||||
|
|
||||||
a) The work must carry prominent notices stating that you modified
|
|
||||||
it, and giving a relevant date.
|
|
||||||
|
|
||||||
b) The work must carry prominent notices stating that it is
|
|
||||||
released under this License and any conditions added under section
|
|
||||||
7. This requirement modifies the requirement in section 4 to
|
|
||||||
"keep intact all notices".
|
|
||||||
|
|
||||||
c) You must license the entire work, as a whole, under this
|
|
||||||
License to anyone who comes into possession of a copy. This
|
|
||||||
License will therefore apply, along with any applicable section 7
|
|
||||||
additional terms, to the whole of the work, and all its parts,
|
|
||||||
regardless of how they are packaged. This License gives no
|
|
||||||
permission to license the work in any other way, but it does not
|
|
||||||
invalidate such permission if you have separately received it.
|
|
||||||
|
|
||||||
d) If the work has interactive user interfaces, each must display
|
|
||||||
Appropriate Legal Notices; however, if the Program has interactive
|
|
||||||
interfaces that do not display Appropriate Legal Notices, your
|
|
||||||
work need not make them do so.
|
|
||||||
|
|
||||||
A compilation of a covered work with other separate and independent
|
|
||||||
works, which are not by their nature extensions of the covered work,
|
|
||||||
and which are not combined with it such as to form a larger program,
|
|
||||||
in or on a volume of a storage or distribution medium, is called an
|
|
||||||
"aggregate" if the compilation and its resulting copyright are not
|
|
||||||
used to limit the access or legal rights of the compilation's users
|
|
||||||
beyond what the individual works permit. Inclusion of a covered work
|
|
||||||
in an aggregate does not cause this License to apply to the other
|
|
||||||
parts of the aggregate.
|
|
||||||
|
|
||||||
6. Conveying Non-Source Forms.
|
|
||||||
|
|
||||||
You may convey a covered work in object code form under the terms
|
|
||||||
of sections 4 and 5, provided that you also convey the
|
|
||||||
machine-readable Corresponding Source under the terms of this License,
|
|
||||||
in one of these ways:
|
|
||||||
|
|
||||||
a) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by the
|
|
||||||
Corresponding Source fixed on a durable physical medium
|
|
||||||
customarily used for software interchange.
|
|
||||||
|
|
||||||
b) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by a
|
|
||||||
written offer, valid for at least three years and valid for as
|
|
||||||
long as you offer spare parts or customer support for that product
|
|
||||||
model, to give anyone who possesses the object code either (1) a
|
|
||||||
copy of the Corresponding Source for all the software in the
|
|
||||||
product that is covered by this License, on a durable physical
|
|
||||||
medium customarily used for software interchange, for a price no
|
|
||||||
more than your reasonable cost of physically performing this
|
|
||||||
conveying of source, or (2) access to copy the
|
|
||||||
Corresponding Source from a network server at no charge.
|
|
||||||
|
|
||||||
c) Convey individual copies of the object code with a copy of the
|
|
||||||
written offer to provide the Corresponding Source. This
|
|
||||||
alternative is allowed only occasionally and noncommercially, and
|
|
||||||
only if you received the object code with such an offer, in accord
|
|
||||||
with subsection 6b.
|
|
||||||
|
|
||||||
d) Convey the object code by offering access from a designated
|
|
||||||
place (gratis or for a charge), and offer equivalent access to the
|
|
||||||
Corresponding Source in the same way through the same place at no
|
|
||||||
further charge. You need not require recipients to copy the
|
|
||||||
Corresponding Source along with the object code. If the place to
|
|
||||||
copy the object code is a network server, the Corresponding Source
|
|
||||||
may be on a different server (operated by you or a third party)
|
|
||||||
that supports equivalent copying facilities, provided you maintain
|
|
||||||
clear directions next to the object code saying where to find the
|
|
||||||
Corresponding Source. Regardless of what server hosts the
|
|
||||||
Corresponding Source, you remain obligated to ensure that it is
|
|
||||||
available for as long as needed to satisfy these requirements.
|
|
||||||
|
|
||||||
e) Convey the object code using peer-to-peer transmission, provided
|
|
||||||
you inform other peers where the object code and Corresponding
|
|
||||||
Source of the work are being offered to the general public at no
|
|
||||||
charge under subsection 6d.
|
|
||||||
|
|
||||||
A separable portion of the object code, whose source code is excluded
|
|
||||||
from the Corresponding Source as a System Library, need not be
|
|
||||||
included in conveying the object code work.
|
|
||||||
|
|
||||||
A "User Product" is either (1) a "consumer product", which means any
|
|
||||||
tangible personal property which is normally used for personal, family,
|
|
||||||
or household purposes, or (2) anything designed or sold for incorporation
|
|
||||||
into a dwelling. In determining whether a product is a consumer product,
|
|
||||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
|
||||||
product received by a particular user, "normally used" refers to a
|
|
||||||
typical or common use of that class of product, regardless of the status
|
|
||||||
of the particular user or of the way in which the particular user
|
|
||||||
actually uses, or expects or is expected to use, the product. A product
|
|
||||||
is a consumer product regardless of whether the product has substantial
|
|
||||||
commercial, industrial or non-consumer uses, unless such uses represent
|
|
||||||
the only significant mode of use of the product.
|
|
||||||
|
|
||||||
"Installation Information" for a User Product means any methods,
|
|
||||||
procedures, authorization keys, or other information required to install
|
|
||||||
and execute modified versions of a covered work in that User Product from
|
|
||||||
a modified version of its Corresponding Source. The information must
|
|
||||||
suffice to ensure that the continued functioning of the modified object
|
|
||||||
code is in no case prevented or interfered with solely because
|
|
||||||
modification has been made.
|
|
||||||
|
|
||||||
If you convey an object code work under this section in, or with, or
|
|
||||||
specifically for use in, a User Product, and the conveying occurs as
|
|
||||||
part of a transaction in which the right of possession and use of the
|
|
||||||
User Product is transferred to the recipient in perpetuity or for a
|
|
||||||
fixed term (regardless of how the transaction is characterized), the
|
|
||||||
Corresponding Source conveyed under this section must be accompanied
|
|
||||||
by the Installation Information. But this requirement does not apply
|
|
||||||
if neither you nor any third party retains the ability to install
|
|
||||||
modified object code on the User Product (for example, the work has
|
|
||||||
been installed in ROM).
|
|
||||||
|
|
||||||
The requirement to provide Installation Information does not include a
|
|
||||||
requirement to continue to provide support service, warranty, or updates
|
|
||||||
for a work that has been modified or installed by the recipient, or for
|
|
||||||
the User Product in which it has been modified or installed. Access to a
|
|
||||||
network may be denied when the modification itself materially and
|
|
||||||
adversely affects the operation of the network or violates the rules and
|
|
||||||
protocols for communication across the network.
|
|
||||||
|
|
||||||
Corresponding Source conveyed, and Installation Information provided,
|
|
||||||
in accord with this section must be in a format that is publicly
|
|
||||||
documented (and with an implementation available to the public in
|
|
||||||
source code form), and must require no special password or key for
|
|
||||||
unpacking, reading or copying.
|
|
||||||
|
|
||||||
7. Additional Terms.
|
|
||||||
|
|
||||||
"Additional permissions" are terms that supplement the terms of this
|
|
||||||
License by making exceptions from one or more of its conditions.
|
|
||||||
Additional permissions that are applicable to the entire Program shall
|
|
||||||
be treated as though they were included in this License, to the extent
|
|
||||||
that they are valid under applicable law. If additional permissions
|
|
||||||
apply only to part of the Program, that part may be used separately
|
|
||||||
under those permissions, but the entire Program remains governed by
|
|
||||||
this License without regard to the additional permissions.
|
|
||||||
|
|
||||||
When you convey a copy of a covered work, you may at your option
|
|
||||||
remove any additional permissions from that copy, or from any part of
|
|
||||||
it. (Additional permissions may be written to require their own
|
|
||||||
removal in certain cases when you modify the work.) You may place
|
|
||||||
additional permissions on material, added by you to a covered work,
|
|
||||||
for which you have or can give appropriate copyright permission.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, for material you
|
|
||||||
add to a covered work, you may (if authorized by the copyright holders of
|
|
||||||
that material) supplement the terms of this License with terms:
|
|
||||||
|
|
||||||
a) Disclaiming warranty or limiting liability differently from the
|
|
||||||
terms of sections 15 and 16 of this License; or
|
|
||||||
|
|
||||||
b) Requiring preservation of specified reasonable legal notices or
|
|
||||||
author attributions in that material or in the Appropriate Legal
|
|
||||||
Notices displayed by works containing it; or
|
|
||||||
|
|
||||||
c) Prohibiting misrepresentation of the origin of that material, or
|
|
||||||
requiring that modified versions of such material be marked in
|
|
||||||
reasonable ways as different from the original version; or
|
|
||||||
|
|
||||||
d) Limiting the use for publicity purposes of names of licensors or
|
|
||||||
authors of the material; or
|
|
||||||
|
|
||||||
e) Declining to grant rights under trademark law for use of some
|
|
||||||
trade names, trademarks, or service marks; or
|
|
||||||
|
|
||||||
f) Requiring indemnification of licensors and authors of that
|
|
||||||
material by anyone who conveys the material (or modified versions of
|
|
||||||
it) with contractual assumptions of liability to the recipient, for
|
|
||||||
any liability that these contractual assumptions directly impose on
|
|
||||||
those licensors and authors.
|
|
||||||
|
|
||||||
All other non-permissive additional terms are considered "further
|
|
||||||
restrictions" within the meaning of section 10. If the Program as you
|
|
||||||
received it, or any part of it, contains a notice stating that it is
|
|
||||||
governed by this License along with a term that is a further
|
|
||||||
restriction, you may remove that term. If a license document contains
|
|
||||||
a further restriction but permits relicensing or conveying under this
|
|
||||||
License, you may add to a covered work material governed by the terms
|
|
||||||
of that license document, provided that the further restriction does
|
|
||||||
not survive such relicensing or conveying.
|
|
||||||
|
|
||||||
If you add terms to a covered work in accord with this section, you
|
|
||||||
must place, in the relevant source files, a statement of the
|
|
||||||
additional terms that apply to those files, or a notice indicating
|
|
||||||
where to find the applicable terms.
|
|
||||||
|
|
||||||
Additional terms, permissive or non-permissive, may be stated in the
|
|
||||||
form of a separately written license, or stated as exceptions;
|
|
||||||
the above requirements apply either way.
|
|
||||||
|
|
||||||
8. Termination.
|
|
||||||
|
|
||||||
You may not propagate or modify a covered work except as expressly
|
|
||||||
provided under this License. Any attempt otherwise to propagate or
|
|
||||||
modify it is void, and will automatically terminate your rights under
|
|
||||||
this License (including any patent licenses granted under the third
|
|
||||||
paragraph of section 11).
|
|
||||||
|
|
||||||
However, if you cease all violation of this License, then your
|
|
||||||
license from a particular copyright holder is reinstated (a)
|
|
||||||
provisionally, unless and until the copyright holder explicitly and
|
|
||||||
finally terminates your license, and (b) permanently, if the copyright
|
|
||||||
holder fails to notify you of the violation by some reasonable means
|
|
||||||
prior to 60 days after the cessation.
|
|
||||||
|
|
||||||
Moreover, your license from a particular copyright holder is
|
|
||||||
reinstated permanently if the copyright holder notifies you of the
|
|
||||||
violation by some reasonable means, this is the first time you have
|
|
||||||
received notice of violation of this License (for any work) from that
|
|
||||||
copyright holder, and you cure the violation prior to 30 days after
|
|
||||||
your receipt of the notice.
|
|
||||||
|
|
||||||
Termination of your rights under this section does not terminate the
|
|
||||||
licenses of parties who have received copies or rights from you under
|
|
||||||
this License. If your rights have been terminated and not permanently
|
|
||||||
reinstated, you do not qualify to receive new licenses for the same
|
|
||||||
material under section 10.
|
|
||||||
|
|
||||||
9. Acceptance Not Required for Having Copies.
|
|
||||||
|
|
||||||
You are not required to accept this License in order to receive or
|
|
||||||
run a copy of the Program. Ancillary propagation of a covered work
|
|
||||||
occurring solely as a consequence of using peer-to-peer transmission
|
|
||||||
to receive a copy likewise does not require acceptance. However,
|
|
||||||
nothing other than this License grants you permission to propagate or
|
|
||||||
modify any covered work. These actions infringe copyright if you do
|
|
||||||
not accept this License. Therefore, by modifying or propagating a
|
|
||||||
covered work, you indicate your acceptance of this License to do so.
|
|
||||||
|
|
||||||
10. Automatic Licensing of Downstream Recipients.
|
|
||||||
|
|
||||||
Each time you convey a covered work, the recipient automatically
|
|
||||||
receives a license from the original licensors, to run, modify and
|
|
||||||
propagate that work, subject to this License. You are not responsible
|
|
||||||
for enforcing compliance by third parties with this License.
|
|
||||||
|
|
||||||
An "entity transaction" is a transaction transferring control of an
|
|
||||||
organization, or substantially all assets of one, or subdividing an
|
|
||||||
organization, or merging organizations. If propagation of a covered
|
|
||||||
work results from an entity transaction, each party to that
|
|
||||||
transaction who receives a copy of the work also receives whatever
|
|
||||||
licenses to the work the party's predecessor in interest had or could
|
|
||||||
give under the previous paragraph, plus a right to possession of the
|
|
||||||
Corresponding Source of the work from the predecessor in interest, if
|
|
||||||
the predecessor has it or can get it with reasonable efforts.
|
|
||||||
|
|
||||||
You may not impose any further restrictions on the exercise of the
|
|
||||||
rights granted or affirmed under this License. For example, you may
|
|
||||||
not impose a license fee, royalty, or other charge for exercise of
|
|
||||||
rights granted under this License, and you may not initiate litigation
|
|
||||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
||||||
any patent claim is infringed by making, using, selling, offering for
|
|
||||||
sale, or importing the Program or any portion of it.
|
|
||||||
|
|
||||||
11. Patents.
|
|
||||||
|
|
||||||
A "contributor" is a copyright holder who authorizes use under this
|
|
||||||
License of the Program or a work on which the Program is based. The
|
|
||||||
work thus licensed is called the contributor's "contributor version".
|
|
||||||
|
|
||||||
A contributor's "essential patent claims" are all patent claims
|
|
||||||
owned or controlled by the contributor, whether already acquired or
|
|
||||||
hereafter acquired, that would be infringed by some manner, permitted
|
|
||||||
by this License, of making, using, or selling its contributor version,
|
|
||||||
but do not include claims that would be infringed only as a
|
|
||||||
consequence of further modification of the contributor version. For
|
|
||||||
purposes of this definition, "control" includes the right to grant
|
|
||||||
patent sublicenses in a manner consistent with the requirements of
|
|
||||||
this License.
|
|
||||||
|
|
||||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
|
||||||
patent license under the contributor's essential patent claims, to
|
|
||||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
|
||||||
propagate the contents of its contributor version.
|
|
||||||
|
|
||||||
In the following three paragraphs, a "patent license" is any express
|
|
||||||
agreement or commitment, however denominated, not to enforce a patent
|
|
||||||
(such as an express permission to practice a patent or covenant not to
|
|
||||||
sue for patent infringement). To "grant" such a patent license to a
|
|
||||||
party means to make such an agreement or commitment not to enforce a
|
|
||||||
patent against the party.
|
|
||||||
|
|
||||||
If you convey a covered work, knowingly relying on a patent license,
|
|
||||||
and the Corresponding Source of the work is not available for anyone
|
|
||||||
to copy, free of charge and under the terms of this License, through a
|
|
||||||
publicly available network server or other readily accessible means,
|
|
||||||
then you must either (1) cause the Corresponding Source to be so
|
|
||||||
available, or (2) arrange to deprive yourself of the benefit of the
|
|
||||||
patent license for this particular work, or (3) arrange, in a manner
|
|
||||||
consistent with the requirements of this License, to extend the patent
|
|
||||||
license to downstream recipients. "Knowingly relying" means you have
|
|
||||||
actual knowledge that, but for the patent license, your conveying the
|
|
||||||
covered work in a country, or your recipient's use of the covered work
|
|
||||||
in a country, would infringe one or more identifiable patents in that
|
|
||||||
country that you have reason to believe are valid.
|
|
||||||
|
|
||||||
If, pursuant to or in connection with a single transaction or
|
|
||||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
|
||||||
covered work, and grant a patent license to some of the parties
|
|
||||||
receiving the covered work authorizing them to use, propagate, modify
|
|
||||||
or convey a specific copy of the covered work, then the patent license
|
|
||||||
you grant is automatically extended to all recipients of the covered
|
|
||||||
work and works based on it.
|
|
||||||
|
|
||||||
A patent license is "discriminatory" if it does not include within
|
|
||||||
the scope of its coverage, prohibits the exercise of, or is
|
|
||||||
conditioned on the non-exercise of one or more of the rights that are
|
|
||||||
specifically granted under this License. You may not convey a covered
|
|
||||||
work if you are a party to an arrangement with a third party that is
|
|
||||||
in the business of distributing software, under which you make payment
|
|
||||||
to the third party based on the extent of your activity of conveying
|
|
||||||
the work, and under which the third party grants, to any of the
|
|
||||||
parties who would receive the covered work from you, a discriminatory
|
|
||||||
patent license (a) in connection with copies of the covered work
|
|
||||||
conveyed by you (or copies made from those copies), or (b) primarily
|
|
||||||
for and in connection with specific products or compilations that
|
|
||||||
contain the covered work, unless you entered into that arrangement,
|
|
||||||
or that patent license was granted, prior to 28 March 2007.
|
|
||||||
|
|
||||||
Nothing in this License shall be construed as excluding or limiting
|
|
||||||
any implied license or other defenses to infringement that may
|
|
||||||
otherwise be available to you under applicable patent law.
|
|
||||||
|
|
||||||
12. No Surrender of Others' Freedom.
|
|
||||||
|
|
||||||
If conditions are imposed on you (whether by court order, agreement or
|
|
||||||
otherwise) that contradict the conditions of this License, they do not
|
|
||||||
excuse you from the conditions of this License. If you cannot convey a
|
|
||||||
covered work so as to satisfy simultaneously your obligations under this
|
|
||||||
License and any other pertinent obligations, then as a consequence you may
|
|
||||||
not convey it at all. For example, if you agree to terms that obligate you
|
|
||||||
to collect a royalty for further conveying from those to whom you convey
|
|
||||||
the Program, the only way you could satisfy both those terms and this
|
|
||||||
License would be to refrain entirely from conveying the Program.
|
|
||||||
|
|
||||||
13. Use with the GNU Affero General Public License.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, you have
|
|
||||||
permission to link or combine any covered work with a work licensed
|
|
||||||
under version 3 of the GNU Affero General Public License into a single
|
|
||||||
combined work, and to convey the resulting work. The terms of this
|
|
||||||
License will continue to apply to the part which is the covered work,
|
|
||||||
but the special requirements of the GNU Affero General Public License,
|
|
||||||
section 13, concerning interaction through a network will apply to the
|
|
||||||
combination as such.
|
|
||||||
|
|
||||||
14. Revised Versions of this License.
|
|
||||||
|
|
||||||
The Free Software Foundation may publish revised and/or new versions of
|
|
||||||
the GNU General Public License from time to time. Such new versions will
|
|
||||||
be similar in spirit to the present version, but may differ in detail to
|
|
||||||
address new problems or concerns.
|
|
||||||
|
|
||||||
Each version is given a distinguishing version number. If the
|
|
||||||
Program specifies that a certain numbered version of the GNU General
|
|
||||||
Public License "or any later version" applies to it, you have the
|
|
||||||
option of following the terms and conditions either of that numbered
|
|
||||||
version or of any later version published by the Free Software
|
|
||||||
Foundation. If the Program does not specify a version number of the
|
|
||||||
GNU General Public License, you may choose any version ever published
|
|
||||||
by the Free Software Foundation.
|
|
||||||
|
|
||||||
If the Program specifies that a proxy can decide which future
|
|
||||||
versions of the GNU General Public License can be used, that proxy's
|
|
||||||
public statement of acceptance of a version permanently authorizes you
|
|
||||||
to choose that version for the Program.
|
|
||||||
|
|
||||||
Later license versions may give you additional or different
|
|
||||||
permissions. However, no additional obligations are imposed on any
|
|
||||||
author or copyright holder as a result of your choosing to follow a
|
|
||||||
later version.
|
|
||||||
|
|
||||||
15. Disclaimer of Warranty.
|
|
||||||
|
|
||||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
|
||||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
|
||||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
|
||||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
||||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
|
||||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
|
||||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
|
||||||
|
|
||||||
16. Limitation of Liability.
|
|
||||||
|
|
||||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
|
||||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
|
||||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
|
||||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
|
||||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
|
||||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
|
||||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
|
||||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
|
||||||
SUCH DAMAGES.
|
|
||||||
|
|
||||||
17. Interpretation of Sections 15 and 16.
|
|
||||||
|
|
||||||
If the disclaimer of warranty and limitation of liability provided
|
|
||||||
above cannot be given local legal effect according to their terms,
|
|
||||||
reviewing courts shall apply local law that most closely approximates
|
|
||||||
an absolute waiver of all civil liability in connection with the
|
|
||||||
Program, unless a warranty or assumption of liability accompanies a
|
|
||||||
copy of the Program in return for a fee.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
How to Apply These Terms to Your New Programs
|
|
||||||
|
|
||||||
If you develop a new program, and you want it to be of the greatest
|
|
||||||
possible use to the public, the best way to achieve this is to make it
|
|
||||||
free software which everyone can redistribute and change under these terms.
|
|
||||||
|
|
||||||
To do so, attach the following notices to the program. It is safest
|
|
||||||
to attach them to the start of each source file to most effectively
|
|
||||||
state the exclusion of warranty; and each file should have at least
|
|
||||||
the "copyright" line and a pointer to where the full notice is found.
|
|
||||||
|
|
||||||
<one line to give the program's name and a brief idea of what it does.>
|
|
||||||
Copyright (C) <year> <name of author>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
|
||||||
|
|
||||||
If the program does terminal interaction, make it output a short
|
|
||||||
notice like this when it starts in an interactive mode:
|
|
||||||
|
|
||||||
<program> Copyright (C) <year> <name of author>
|
|
||||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
||||||
This is free software, and you are welcome to redistribute it
|
|
||||||
under certain conditions; type `show c' for details.
|
|
||||||
|
|
||||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
|
||||||
parts of the General Public License. Of course, your program's commands
|
|
||||||
might be different; for a GUI interface, you would use an "about box".
|
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or school,
|
|
||||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
|
||||||
For more information on this, and how to apply and follow the GNU GPL, see
|
|
||||||
<https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
The GNU General Public License does not permit incorporating your program
|
|
||||||
into proprietary programs. If your program is a subroutine library, you
|
|
||||||
may consider it more useful to permit linking proprietary applications with
|
|
||||||
the library. If this is what you want to do, use the GNU Lesser General
|
|
||||||
Public License instead of this License. But first, please read
|
|
||||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
|
||||||
|
|
||||||
@@ -168,7 +168,3 @@ generate-typescript:
|
|||||||
run-api-tests:
|
run-api-tests:
|
||||||
cd nym-api/tests/functional_test && yarn test:qa
|
cd nym-api/tests/functional_test && yarn test:qa
|
||||||
|
|
||||||
# Build debian package, and update PPA
|
|
||||||
# Requires base64 encode GPG key to be set up in environment PPA_SIGNING_KEY
|
|
||||||
deb:
|
|
||||||
scripts/ppa.sh
|
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ The platform is composed of multiple Rust crates. Top-level executable binary cr
|
|||||||
* nym-explorer - a (projected) block explorer and (existing) mixnet viewer.
|
* nym-explorer - a (projected) block explorer and (existing) mixnet viewer.
|
||||||
* nym-wallet - a desktop wallet implemented using the [Tauri](https://tauri.studio/en/docs/about/intro) framework.
|
* nym-wallet - a desktop wallet implemented using the [Tauri](https://tauri.studio/en/docs/about/intro) framework.
|
||||||
|
|
||||||
|
[](https://opensource.org/licenses/Apache-2.0)
|
||||||
[](https://github.com/nymtech/nym/actions?query=branch%3Adevelop)
|
[](https://github.com/nymtech/nym/actions?query=branch%3Adevelop)
|
||||||
|
|
||||||
|
|
||||||
@@ -82,11 +83,4 @@ where `s'` is stake `s` scaled over total token circulating supply.
|
|||||||
|
|
||||||
### Licensing and copyright information
|
### Licensing and copyright information
|
||||||
|
|
||||||
This is a monorepo and components that make up Nym as a system are licensed individually, so for accurate information, please check individual files.
|
This program is available as open source under the terms of the Apache 2.0 license. However, some elements are being licensed under CC0-1.0 and MIT. For accurate information, please check individual files.
|
||||||
|
|
||||||
As a general approach, licensing is as follows this pattern:
|
|
||||||
- applications and binaries are GPLv3
|
|
||||||
- libraries and components are Apache 2.0 or MIT
|
|
||||||
- documentation is Apache 2.0 or CC0-1.0
|
|
||||||
|
|
||||||
Again, for accurate information, please check individual files.
|
|
||||||
|
|||||||
@@ -1,70 +0,0 @@
|
|||||||
<html>
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<style>
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
body {
|
|
||||||
background: #333;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
color: skyblue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.container {
|
|
||||||
font-family: sans-serif;
|
|
||||||
max-width: 800px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
.intro {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.licenses-list {
|
|
||||||
list-style-type: none;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
.license-used-by {
|
|
||||||
margin-top: -10px;
|
|
||||||
}
|
|
||||||
.license-text {
|
|
||||||
max-height: 200px;
|
|
||||||
overflow-y: scroll;
|
|
||||||
white-space: pre-wrap;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<main class="container">
|
|
||||||
<div class="intro">
|
|
||||||
<h1>Third Party Licenses</h1>
|
|
||||||
<p>This page lists the licenses of the projects used in cargo-about.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Overview of licenses:</h2>
|
|
||||||
<ul class="licenses-overview">
|
|
||||||
{{#each overview}}
|
|
||||||
<li><a href="#{{id}}">{{name}}</a> ({{count}})</li>
|
|
||||||
{{/each}}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h2>All license text:</h2>
|
|
||||||
<ul class="licenses-list">
|
|
||||||
{{#each licenses}}
|
|
||||||
<li class="license">
|
|
||||||
<h3 id="{{id}}">{{name}}</h3>
|
|
||||||
<h4>Used by:</h4>
|
|
||||||
<ul class="license-used-by">
|
|
||||||
{{#each used_by}}
|
|
||||||
<li><a href="{{#if crate.repository}} {{crate.repository}} {{else}} https://crates.io/crates/{{crate.name}} {{/if}}">{{crate.name}} {{crate.version}}</a></li>
|
|
||||||
{{/each}}
|
|
||||||
</ul>
|
|
||||||
<pre class="license-text">{{text}}</pre>
|
|
||||||
</li>
|
|
||||||
{{/each}}
|
|
||||||
</ul>
|
|
||||||
</main>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
-19
@@ -1,19 +0,0 @@
|
|||||||
private = { ignore = true }
|
|
||||||
|
|
||||||
accepted = [
|
|
||||||
"0BSD",
|
|
||||||
"Apache-2.0",
|
|
||||||
"BSD-2-Clause",
|
|
||||||
"BSD-3-Clause",
|
|
||||||
"CC0-1.0",
|
|
||||||
"ISC",
|
|
||||||
"MIT",
|
|
||||||
"MPL-2.0",
|
|
||||||
"Unicode-DFS-2016",
|
|
||||||
"OpenSSL",
|
|
||||||
]
|
|
||||||
|
|
||||||
workarounds = [
|
|
||||||
"ring",
|
|
||||||
"rustls",
|
|
||||||
]
|
|
||||||
@@ -1,11 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "nym-client"
|
name = "nym-client"
|
||||||
version = "1.1.32"
|
version = "1.1.31"
|
||||||
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>", "Jędrzej Stuczyński <andrew@nymtech.net>"]
|
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>", "Jędrzej Stuczyński <andrew@nymtech.net>"]
|
||||||
description = "Implementation of the Nym Client"
|
description = "Implementation of the Nym Client"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.65"
|
rust-version = "1.65"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|||||||
@@ -1667,9 +1667,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/follow-redirects": {
|
"node_modules/follow-redirects": {
|
||||||
"version": "1.15.4",
|
"version": "1.14.9",
|
||||||
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.4.tgz",
|
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz",
|
||||||
"integrity": "sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==",
|
"integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -5800,9 +5800,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"follow-redirects": {
|
"follow-redirects": {
|
||||||
"version": "1.15.4",
|
"version": "1.14.9",
|
||||||
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.4.tgz",
|
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz",
|
||||||
"integrity": "sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==",
|
"integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"forwarded": {
|
"forwarded": {
|
||||||
|
|||||||
@@ -22,10 +22,5 @@ async fn main() -> Result<(), Box<dyn Error + Send + Sync>> {
|
|||||||
}
|
}
|
||||||
setup_logging();
|
setup_logging();
|
||||||
|
|
||||||
if let Err(err) = commands::execute(args).await {
|
commands::execute(args).await
|
||||||
log::error!("{err}");
|
|
||||||
println!("An error occurred: {err}");
|
|
||||||
std::process::exit(1);
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ name = "nym-client-websocket-requests"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Jędrzej Stuczyński <andrew@nymtech.net>"]
|
authors = ["Jędrzej Stuczyński <andrew@nymtech.net>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "nym-socks5-client"
|
name = "nym-socks5-client"
|
||||||
version = "1.1.32"
|
version = "1.1.31"
|
||||||
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>"]
|
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>"]
|
||||||
description = "A SOCKS5 localhost proxy that converts incoming messages to Sphinx and sends them to a Nym address"
|
description = "A SOCKS5 localhost proxy that converts incoming messages to Sphinx and sends them to a Nym address"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56"
|
rust-version = "1.56"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { workspace = true, features = ["cargo", "derive"] }
|
clap = { workspace = true, features = ["cargo", "derive"] }
|
||||||
|
|||||||
@@ -21,10 +21,5 @@ async fn main() -> Result<(), Box<dyn Error + Send + Sync>> {
|
|||||||
}
|
}
|
||||||
setup_logging();
|
setup_logging();
|
||||||
|
|
||||||
if let Err(err) = commands::execute(args).await {
|
commands::execute(args).await
|
||||||
log::error!("{err}");
|
|
||||||
println!("An error occurred: {err}");
|
|
||||||
std::process::exit(1);
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
ConfigHandler: require('./config/configHandler.ts'),
|
|
||||||
RestClient: require('./restClient/RestClient.ts')
|
|
||||||
};
|
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
name = "async-file-watcher"
|
name = "async-file-watcher"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|||||||
@@ -10,8 +10,6 @@ use std::path::{Path, PathBuf};
|
|||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
use tokio::time::Instant;
|
use tokio::time::Instant;
|
||||||
|
|
||||||
pub use notify::{Error as NotifyError, Result as NotifyResult};
|
|
||||||
|
|
||||||
pub type FileWatcherEventSender = mpsc::UnboundedSender<Event>;
|
pub type FileWatcherEventSender = mpsc::UnboundedSender<Event>;
|
||||||
pub type FileWatcherEventReceiver = mpsc::UnboundedReceiver<Event>;
|
pub type FileWatcherEventReceiver = mpsc::UnboundedReceiver<Event>;
|
||||||
|
|
||||||
@@ -24,7 +22,7 @@ pub struct AsyncFileWatcher {
|
|||||||
last_received: HashMap<EventKind, Instant>,
|
last_received: HashMap<EventKind, Instant>,
|
||||||
tick_duration: Duration,
|
tick_duration: Duration,
|
||||||
|
|
||||||
inner_rx: mpsc::UnboundedReceiver<NotifyResult<Event>>,
|
inner_rx: mpsc::UnboundedReceiver<notify::Result<Event>>,
|
||||||
event_sender: FileWatcherEventSender,
|
event_sender: FileWatcherEventSender,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -32,7 +30,7 @@ impl AsyncFileWatcher {
|
|||||||
pub fn new_file_changes_watcher<P: AsRef<Path>>(
|
pub fn new_file_changes_watcher<P: AsRef<Path>>(
|
||||||
path: P,
|
path: P,
|
||||||
event_sender: FileWatcherEventSender,
|
event_sender: FileWatcherEventSender,
|
||||||
) -> NotifyResult<Self> {
|
) -> notify::Result<Self> {
|
||||||
Self::new(
|
Self::new(
|
||||||
path,
|
path,
|
||||||
event_sender,
|
event_sender,
|
||||||
@@ -50,7 +48,7 @@ impl AsyncFileWatcher {
|
|||||||
event_sender: FileWatcherEventSender,
|
event_sender: FileWatcherEventSender,
|
||||||
filters: Option<Vec<EventKind>>,
|
filters: Option<Vec<EventKind>>,
|
||||||
tick_duration: Option<Duration>,
|
tick_duration: Option<Duration>,
|
||||||
) -> NotifyResult<Self> {
|
) -> notify::Result<Self> {
|
||||||
let watcher_config = Config::default();
|
let watcher_config = Config::default();
|
||||||
let (inner_tx, inner_rx) = mpsc::unbounded();
|
let (inner_tx, inner_rx) = mpsc::unbounded();
|
||||||
let watcher = RecommendedWatcher::new(
|
let watcher = RecommendedWatcher::new(
|
||||||
@@ -114,17 +112,17 @@ impl AsyncFileWatcher {
|
|||||||
false
|
false
|
||||||
}
|
}
|
||||||
|
|
||||||
fn start_watching(&mut self) -> NotifyResult<()> {
|
fn start_watching(&mut self) -> notify::Result<()> {
|
||||||
self.is_watching = true;
|
self.is_watching = true;
|
||||||
self.watcher.watch(&self.path, RecursiveMode::NonRecursive)
|
self.watcher.watch(&self.path, RecursiveMode::NonRecursive)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn stop_watching(&mut self) -> NotifyResult<()> {
|
fn stop_watching(&mut self) -> notify::Result<()> {
|
||||||
self.is_watching = false;
|
self.is_watching = false;
|
||||||
self.watcher.unwatch(&self.path)
|
self.watcher.unwatch(&self.path)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn watch(&mut self) -> NotifyResult<()> {
|
pub async fn watch(&mut self) -> notify::Result<()> {
|
||||||
self.start_watching()?;
|
self.start_watching()?;
|
||||||
|
|
||||||
while let Some(event) = self.inner_rx.next().await {
|
while let Some(event) = self.inner_rx.next().await {
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
name = "nym-bandwidth-controller"
|
name = "nym-bandwidth-controller"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@@ -11,7 +10,6 @@ bip39 = { workspace = true }
|
|||||||
rand = "0.7.3"
|
rand = "0.7.3"
|
||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
url = { workspace = true }
|
url = { workspace = true }
|
||||||
zeroize = { workspace = true }
|
|
||||||
|
|
||||||
nym-coconut-interface = { path = "../coconut-interface" }
|
nym-coconut-interface = { path = "../coconut-interface" }
|
||||||
nym-credential-storage = { path = "../credential-storage" }
|
nym-credential-storage = { path = "../credential-storage" }
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
// SPDX-License-Identifier: Apache-2.0
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
use crate::error::BandwidthControllerError;
|
use crate::error::BandwidthControllerError;
|
||||||
use nym_coconut_interface::Base58;
|
use nym_coconut_interface::{Base58, Parameters};
|
||||||
use nym_credential_storage::storage::Storage;
|
use nym_credential_storage::storage::Storage;
|
||||||
use nym_credentials::coconut::bandwidth::BandwidthVoucher;
|
use nym_credentials::coconut::bandwidth::{BandwidthVoucher, TOTAL_ATTRIBUTES};
|
||||||
use nym_credentials::coconut::utils::obtain_aggregate_signature;
|
use nym_credentials::coconut::utils::obtain_aggregate_signature;
|
||||||
use nym_crypto::asymmetric::{encryption, identity};
|
use nym_crypto::asymmetric::{encryption, identity};
|
||||||
use nym_network_defaults::VOUCHER_INFO;
|
use nym_network_defaults::VOUCHER_INFO;
|
||||||
@@ -12,8 +12,10 @@ use nym_validator_client::coconut::all_coconut_api_clients;
|
|||||||
use nym_validator_client::nyxd::contract_traits::CoconutBandwidthSigningClient;
|
use nym_validator_client::nyxd::contract_traits::CoconutBandwidthSigningClient;
|
||||||
use nym_validator_client::nyxd::contract_traits::DkgQueryClient;
|
use nym_validator_client::nyxd::contract_traits::DkgQueryClient;
|
||||||
use nym_validator_client::nyxd::Coin;
|
use nym_validator_client::nyxd::Coin;
|
||||||
|
use nym_validator_client::nyxd::Hash;
|
||||||
use rand::rngs::OsRng;
|
use rand::rngs::OsRng;
|
||||||
use state::State;
|
use state::{KeyPair, State};
|
||||||
|
use std::str::FromStr;
|
||||||
|
|
||||||
pub mod state;
|
pub mod state;
|
||||||
|
|
||||||
@@ -22,29 +24,30 @@ where
|
|||||||
C: CoconutBandwidthSigningClient + Sync,
|
C: CoconutBandwidthSigningClient + Sync,
|
||||||
{
|
{
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let signing_key = identity::PrivateKey::new(&mut rng);
|
let signing_keypair = KeyPair::from(identity::KeyPair::new(&mut rng));
|
||||||
let encryption_key = encryption::PrivateKey::new(&mut rng);
|
let encryption_keypair = KeyPair::from(encryption::KeyPair::new(&mut rng));
|
||||||
let params = BandwidthVoucher::default_parameters();
|
let params = Parameters::new(TOTAL_ATTRIBUTES).unwrap();
|
||||||
let voucher_value = amount.amount.to_string();
|
let voucher_value = amount.amount.to_string();
|
||||||
|
|
||||||
let tx_hash = client
|
let tx_hash = client
|
||||||
.deposit(
|
.deposit(
|
||||||
amount,
|
amount,
|
||||||
String::from(VOUCHER_INFO),
|
String::from(VOUCHER_INFO),
|
||||||
signing_key.public_key().to_base58_string(),
|
signing_keypair.public_key.clone(),
|
||||||
encryption_key.public_key().to_base58_string(),
|
encryption_keypair.public_key.clone(),
|
||||||
None,
|
None,
|
||||||
)
|
)
|
||||||
.await?
|
.await?
|
||||||
.transaction_hash;
|
.transaction_hash
|
||||||
|
.to_string();
|
||||||
|
|
||||||
let voucher = BandwidthVoucher::new(
|
let voucher = BandwidthVoucher::new(
|
||||||
¶ms,
|
¶ms,
|
||||||
voucher_value,
|
voucher_value,
|
||||||
VOUCHER_INFO.to_string(),
|
VOUCHER_INFO.to_string(),
|
||||||
tx_hash,
|
Hash::from_str(&tx_hash).map_err(|_| BandwidthControllerError::InvalidTxHash)?,
|
||||||
signing_key,
|
identity::PrivateKey::from_base58_string(&signing_keypair.private_key)?,
|
||||||
encryption_key,
|
encryption::PrivateKey::from_base58_string(&encryption_keypair.private_key)?,
|
||||||
);
|
);
|
||||||
|
|
||||||
let state = State { voucher, params };
|
let state = State { voucher, params };
|
||||||
|
|||||||
@@ -2,7 +2,32 @@
|
|||||||
// SPDX-License-Identifier: Apache-2.0
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
use nym_coconut_interface::Parameters;
|
use nym_coconut_interface::Parameters;
|
||||||
use nym_credentials::coconut::bandwidth::BandwidthVoucher;
|
use nym_credentials::coconut::bandwidth::{BandwidthVoucher, TOTAL_ATTRIBUTES};
|
||||||
|
|
||||||
|
use nym_crypto::asymmetric::{encryption, identity};
|
||||||
|
|
||||||
|
pub(crate) struct KeyPair {
|
||||||
|
pub public_key: String,
|
||||||
|
pub private_key: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl From<identity::KeyPair> for KeyPair {
|
||||||
|
fn from(kp: identity::KeyPair) -> Self {
|
||||||
|
Self {
|
||||||
|
public_key: kp.public_key().to_base58_string(),
|
||||||
|
private_key: kp.private_key().to_base58_string(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl From<encryption::KeyPair> for KeyPair {
|
||||||
|
fn from(kp: encryption::KeyPair) -> Self {
|
||||||
|
Self {
|
||||||
|
public_key: kp.public_key().to_base58_string(),
|
||||||
|
private_key: kp.private_key().to_base58_string(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub struct State {
|
pub struct State {
|
||||||
pub voucher: BandwidthVoucher,
|
pub voucher: BandwidthVoucher,
|
||||||
@@ -13,7 +38,7 @@ impl State {
|
|||||||
pub fn new(voucher: BandwidthVoucher) -> Self {
|
pub fn new(voucher: BandwidthVoucher) -> Self {
|
||||||
State {
|
State {
|
||||||
voucher,
|
voucher,
|
||||||
params: BandwidthVoucher::default_parameters(),
|
params: Parameters::new(TOTAL_ATTRIBUTES).unwrap(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ use nym_credential_storage::storage::Storage;
|
|||||||
use nym_validator_client::coconut::all_coconut_api_clients;
|
use nym_validator_client::coconut::all_coconut_api_clients;
|
||||||
use nym_validator_client::nyxd::contract_traits::DkgQueryClient;
|
use nym_validator_client::nyxd::contract_traits::DkgQueryClient;
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
use zeroize::Zeroizing;
|
|
||||||
use {
|
use {
|
||||||
nym_coconut_interface::Base58,
|
nym_coconut_interface::Base58,
|
||||||
nym_credentials::coconut::{
|
nym_credentials::coconut::{
|
||||||
@@ -47,12 +46,10 @@ impl<C, St: Storage> BandwidthController<C, St> {
|
|||||||
let voucher_value = u64::from_str(&bandwidth_credential.voucher_value)
|
let voucher_value = u64::from_str(&bandwidth_credential.voucher_value)
|
||||||
.map_err(|_| StorageError::InconsistentData)?;
|
.map_err(|_| StorageError::InconsistentData)?;
|
||||||
let voucher_info = bandwidth_credential.voucher_info.clone();
|
let voucher_info = bandwidth_credential.voucher_info.clone();
|
||||||
let serial_number = Zeroizing::new(nym_coconut_interface::Attribute::try_from_bs58(
|
let serial_number =
|
||||||
bandwidth_credential.serial_number,
|
nym_coconut_interface::Attribute::try_from_bs58(bandwidth_credential.serial_number)?;
|
||||||
)?);
|
let binding_number =
|
||||||
let binding_number = Zeroizing::new(nym_coconut_interface::Attribute::try_from_bs58(
|
nym_coconut_interface::Attribute::try_from_bs58(bandwidth_credential.binding_number)?;
|
||||||
bandwidth_credential.binding_number,
|
|
||||||
)?);
|
|
||||||
let signature =
|
let signature =
|
||||||
nym_coconut_interface::Signature::try_from_bs58(bandwidth_credential.signature)?;
|
nym_coconut_interface::Signature::try_from_bs58(bandwidth_credential.signature)?;
|
||||||
let epoch_id = u64::from_str(&bandwidth_credential.epoch_id)
|
let epoch_id = u64::from_str(&bandwidth_credential.epoch_id)
|
||||||
@@ -67,8 +64,8 @@ impl<C, St: Storage> BandwidthController<C, St> {
|
|||||||
prepare_for_spending(
|
prepare_for_spending(
|
||||||
voucher_value,
|
voucher_value,
|
||||||
voucher_info,
|
voucher_info,
|
||||||
&serial_number,
|
serial_number,
|
||||||
&binding_number,
|
binding_number,
|
||||||
epoch_id,
|
epoch_id,
|
||||||
&signature,
|
&signature,
|
||||||
&verification_key,
|
&verification_key,
|
||||||
|
|||||||
@@ -35,10 +35,9 @@ opentelemetry = { version = "0.19.0", optional = true, features = ["rt-tokio"] }
|
|||||||
|
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
vergen = { version = "=8.2.6", default-features = false, features = [
|
vergen = { version = "=7.4.3", default-features = false, features = [
|
||||||
"build",
|
"build",
|
||||||
"git",
|
"git",
|
||||||
"gitcl",
|
|
||||||
"rustc",
|
"rustc",
|
||||||
"cargo",
|
"cargo",
|
||||||
] }
|
] }
|
||||||
@@ -48,9 +47,8 @@ default = []
|
|||||||
openapi = ["utoipa"]
|
openapi = ["utoipa"]
|
||||||
output_format = ["serde_json"]
|
output_format = ["serde_json"]
|
||||||
bin_info_schema = ["schemars"]
|
bin_info_schema = ["schemars"]
|
||||||
basic_tracing = ["tracing-subscriber"]
|
|
||||||
tracing = [
|
tracing = [
|
||||||
"basic_tracing",
|
"tracing-subscriber",
|
||||||
"tracing-tree",
|
"tracing-tree",
|
||||||
"opentelemetry-jaeger",
|
"opentelemetry-jaeger",
|
||||||
"tracing-opentelemetry",
|
"tracing-opentelemetry",
|
||||||
|
|||||||
@@ -1,14 +1,13 @@
|
|||||||
// Copyright 2023 - Nym Technologies SA <contact@nymtech.net>
|
// Copyright 2023 - Nym Technologies SA <contact@nymtech.net>
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
use vergen::EmitBuilder;
|
use vergen::{vergen, Config};
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
EmitBuilder::builder()
|
let mut config = Config::default();
|
||||||
.all_build()
|
if std::env::var("DOCS_RS").is_ok() {
|
||||||
.all_git()
|
// If we don't have access to git information, such as in a docs.rs build, don't error
|
||||||
.all_rustc()
|
*config.git_mut().skip_if_error_mut() = true;
|
||||||
.all_cargo()
|
}
|
||||||
.emit()
|
vergen(config).expect("failed to extract build metadata");
|
||||||
.expect("failed to extract build metadata");
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,9 +40,9 @@ pub struct BinaryBuildInformation {
|
|||||||
/// Provides the rustc channel that was used for the build, for example `nightly`.
|
/// Provides the rustc channel that was used for the build, for example `nightly`.
|
||||||
pub rustc_channel: &'static str,
|
pub rustc_channel: &'static str,
|
||||||
|
|
||||||
// VERGEN_CARGO_DEBUG
|
// VERGEN_CARGO_PROFILE
|
||||||
/// Provides the cargo debug mode that was used for the build.
|
/// Provides the cargo profile that was used for the build, for example `debug`.
|
||||||
pub cargo_debug: &'static str,
|
pub cargo_profile: &'static str,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl BinaryBuildInformation {
|
impl BinaryBuildInformation {
|
||||||
@@ -57,7 +57,7 @@ impl BinaryBuildInformation {
|
|||||||
commit_branch: env!("VERGEN_GIT_BRANCH"),
|
commit_branch: env!("VERGEN_GIT_BRANCH"),
|
||||||
rustc_version: env!("VERGEN_RUSTC_SEMVER"),
|
rustc_version: env!("VERGEN_RUSTC_SEMVER"),
|
||||||
rustc_channel: env!("VERGEN_RUSTC_CHANNEL"),
|
rustc_channel: env!("VERGEN_RUSTC_CHANNEL"),
|
||||||
cargo_debug: env!("VERGEN_CARGO_DEBUG"),
|
cargo_profile: env!("VERGEN_CARGO_PROFILE"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -71,7 +71,7 @@ impl BinaryBuildInformation {
|
|||||||
commit_branch: self.commit_branch.to_owned(),
|
commit_branch: self.commit_branch.to_owned(),
|
||||||
rustc_version: self.rustc_version.to_owned(),
|
rustc_version: self.rustc_version.to_owned(),
|
||||||
rustc_channel: self.rustc_channel.to_owned(),
|
rustc_channel: self.rustc_channel.to_owned(),
|
||||||
cargo_debug: self.cargo_debug.to_owned(),
|
cargo_profile: self.cargo_profile.to_owned(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -80,7 +80,7 @@ impl BinaryBuildInformation {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq)]
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
||||||
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
|
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
|
||||||
#[cfg_attr(feature = "bin_info_schema", derive(schemars::JsonSchema))]
|
#[cfg_attr(feature = "bin_info_schema", derive(schemars::JsonSchema))]
|
||||||
pub struct BinaryBuildInformationOwned {
|
pub struct BinaryBuildInformationOwned {
|
||||||
@@ -115,9 +115,9 @@ pub struct BinaryBuildInformationOwned {
|
|||||||
/// Provides the rustc channel that was used for the build, for example `nightly`.
|
/// Provides the rustc channel that was used for the build, for example `nightly`.
|
||||||
pub rustc_channel: String,
|
pub rustc_channel: String,
|
||||||
|
|
||||||
// VERGEN_CARGO_DEBUG
|
// VERGEN_CARGO_PROFILE
|
||||||
/// Provides the cargo debug mode that was used for the build.
|
/// Provides the cargo profile that was used for the build, for example `debug`.
|
||||||
pub cargo_debug: String,
|
pub cargo_profile: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Display for BinaryBuildInformationOwned {
|
impl Display for BinaryBuildInformationOwned {
|
||||||
@@ -151,8 +151,8 @@ impl Display for BinaryBuildInformationOwned {
|
|||||||
self.rustc_version,
|
self.rustc_version,
|
||||||
"rustc Channel:",
|
"rustc Channel:",
|
||||||
self.rustc_channel,
|
self.rustc_channel,
|
||||||
"cargo Debug:",
|
"cargo Profile:",
|
||||||
self.cargo_debug,
|
self.cargo_profile,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,30 +43,6 @@ pub fn setup_logging() {
|
|||||||
.init();
|
.init();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "basic_tracing")]
|
|
||||||
pub fn setup_tracing_logger() {
|
|
||||||
let log_builder = tracing_subscriber::fmt()
|
|
||||||
// Use a more compact, abbreviated log format
|
|
||||||
.compact()
|
|
||||||
// Display source code file paths
|
|
||||||
.with_file(true)
|
|
||||||
// Display source code line numbers
|
|
||||||
.with_line_number(true)
|
|
||||||
// Don't display the event's target (module path)
|
|
||||||
.with_target(false);
|
|
||||||
|
|
||||||
if ::std::env::var("RUST_LOG").is_ok() {
|
|
||||||
log_builder
|
|
||||||
.with_env_filter(tracing_subscriber::filter::EnvFilter::from_default_env())
|
|
||||||
.init()
|
|
||||||
} else {
|
|
||||||
// default to 'Info
|
|
||||||
log_builder
|
|
||||||
.with_max_level(tracing_subscriber::filter::LevelFilter::INFO)
|
|
||||||
.init()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: This has to be a macro, running it as a function does not work for the file_appender for some reason
|
// TODO: This has to be a macro, running it as a function does not work for the file_appender for some reason
|
||||||
#[cfg(feature = "tracing")]
|
#[cfg(feature = "tracing")]
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ version = "1.1.15"
|
|||||||
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>"]
|
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.66"
|
rust-version = "1.66"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@@ -59,7 +58,7 @@ features = ["time"]
|
|||||||
version = "0.20.1"
|
version = "0.20.1"
|
||||||
|
|
||||||
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.sqlx]
|
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.sqlx]
|
||||||
workspace = true
|
version = "0.6.2"
|
||||||
features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"]
|
features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"]
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
@@ -90,7 +89,7 @@ tempfile = "3.1.0"
|
|||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
||||||
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"] }
|
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ pub struct PersistedGatewayConfig {
|
|||||||
key_hash: Vec<u8>,
|
key_hash: Vec<u8>,
|
||||||
|
|
||||||
/// Actual gateway details being persisted.
|
/// Actual gateway details being persisted.
|
||||||
pub details: GatewayEndpointConfig,
|
pub(crate) details: GatewayEndpointConfig,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
// Copyright 2022 - Nym Technologies SA <contact@nymtech.net>
|
// Copyright 2022 - Nym Technologies SA <contact@nymtech.net>
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
#![allow(unused_imports)]
|
|
||||||
|
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
pub use wasmtimer::{std::Instant, tokio::*};
|
pub use wasmtimer::{std::Instant, tokio::*};
|
||||||
|
|||||||
@@ -28,7 +28,6 @@ pub enum InputMessage {
|
|||||||
recipient: Recipient,
|
recipient: Recipient,
|
||||||
data: Vec<u8>,
|
data: Vec<u8>,
|
||||||
lane: TransmissionLane,
|
lane: TransmissionLane,
|
||||||
mix_hops: Option<u8>,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/// Creates a message used for a duplex anonymous communication where the recipient
|
/// Creates a message used for a duplex anonymous communication where the recipient
|
||||||
@@ -44,7 +43,6 @@ pub enum InputMessage {
|
|||||||
data: Vec<u8>,
|
data: Vec<u8>,
|
||||||
reply_surbs: u32,
|
reply_surbs: u32,
|
||||||
lane: TransmissionLane,
|
lane: TransmissionLane,
|
||||||
mix_hops: Option<u8>,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/// Attempt to use our internally received and stored `ReplySurb` to send the message back
|
/// Attempt to use our internally received and stored `ReplySurb` to send the message back
|
||||||
@@ -94,29 +92,6 @@ impl InputMessage {
|
|||||||
recipient,
|
recipient,
|
||||||
data,
|
data,
|
||||||
lane,
|
lane,
|
||||||
mix_hops: None,
|
|
||||||
};
|
|
||||||
if let Some(packet_type) = packet_type {
|
|
||||||
InputMessage::new_wrapper(message, packet_type)
|
|
||||||
} else {
|
|
||||||
message
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// IMHO `new_regular` should take `mix_hops: Option<u8>` as an argument instead of creating
|
|
||||||
// this function, but that would potentially break backwards compatibility with the current API
|
|
||||||
pub fn new_regular_with_custom_hops(
|
|
||||||
recipient: Recipient,
|
|
||||||
data: Vec<u8>,
|
|
||||||
lane: TransmissionLane,
|
|
||||||
packet_type: Option<PacketType>,
|
|
||||||
mix_hops: Option<u8>,
|
|
||||||
) -> Self {
|
|
||||||
let message = InputMessage::Regular {
|
|
||||||
recipient,
|
|
||||||
data,
|
|
||||||
lane,
|
|
||||||
mix_hops,
|
|
||||||
};
|
};
|
||||||
if let Some(packet_type) = packet_type {
|
if let Some(packet_type) = packet_type {
|
||||||
InputMessage::new_wrapper(message, packet_type)
|
InputMessage::new_wrapper(message, packet_type)
|
||||||
@@ -137,31 +112,6 @@ impl InputMessage {
|
|||||||
data,
|
data,
|
||||||
reply_surbs,
|
reply_surbs,
|
||||||
lane,
|
lane,
|
||||||
mix_hops: None,
|
|
||||||
};
|
|
||||||
if let Some(packet_type) = packet_type {
|
|
||||||
InputMessage::new_wrapper(message, packet_type)
|
|
||||||
} else {
|
|
||||||
message
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// IMHO `new_anonymous` should take `mix_hops: Option<u8>` as an argument instead of creating
|
|
||||||
// this function, but that would potentially break backwards compatibility with the current API
|
|
||||||
pub fn new_anonymous_with_custom_hops(
|
|
||||||
recipient: Recipient,
|
|
||||||
data: Vec<u8>,
|
|
||||||
reply_surbs: u32,
|
|
||||||
lane: TransmissionLane,
|
|
||||||
packet_type: Option<PacketType>,
|
|
||||||
mix_hops: Option<u8>,
|
|
||||||
) -> Self {
|
|
||||||
let message = InputMessage::Anonymous {
|
|
||||||
recipient,
|
|
||||||
data,
|
|
||||||
reply_surbs,
|
|
||||||
lane,
|
|
||||||
mix_hops,
|
|
||||||
};
|
};
|
||||||
if let Some(packet_type) = packet_type {
|
if let Some(packet_type) = packet_type {
|
||||||
InputMessage::new_wrapper(message, packet_type)
|
InputMessage::new_wrapper(message, packet_type)
|
||||||
|
|||||||
+2
-5
@@ -127,9 +127,7 @@ impl ActionController {
|
|||||||
.insert(frag_id, (Arc::new(pending_ack), None))
|
.insert(frag_id, (Arc::new(pending_ack), None))
|
||||||
.is_some()
|
.is_some()
|
||||||
{
|
{
|
||||||
// This used to be a panic, however since we've seen this actually happen in the
|
panic!("Tried to insert duplicate pending ack")
|
||||||
// wild, let's not take the whole client (and possibly gateway) down because of it.
|
|
||||||
error!("Tried to insert duplicate pending ack! This should not be possible!")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -265,7 +263,7 @@ impl ActionController {
|
|||||||
pub(super) async fn run_with_shutdown(&mut self, mut shutdown: nym_task::TaskClient) {
|
pub(super) async fn run_with_shutdown(&mut self, mut shutdown: nym_task::TaskClient) {
|
||||||
debug!("Started ActionController with graceful shutdown support");
|
debug!("Started ActionController with graceful shutdown support");
|
||||||
|
|
||||||
loop {
|
while !shutdown.is_shutdown() {
|
||||||
tokio::select! {
|
tokio::select! {
|
||||||
action = self.incoming_actions.next() => match action {
|
action = self.incoming_actions.next() => match action {
|
||||||
Some(action) => self.process_action(action),
|
Some(action) => self.process_action(action),
|
||||||
@@ -285,7 +283,6 @@ impl ActionController {
|
|||||||
},
|
},
|
||||||
_ = shutdown.recv_with_delay() => {
|
_ = shutdown.recv_with_delay() => {
|
||||||
log::trace!("ActionController: Received shutdown");
|
log::trace!("ActionController: Received shutdown");
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+8
-35
@@ -73,11 +73,10 @@ where
|
|||||||
content: Vec<u8>,
|
content: Vec<u8>,
|
||||||
lane: TransmissionLane,
|
lane: TransmissionLane,
|
||||||
packet_type: PacketType,
|
packet_type: PacketType,
|
||||||
mix_hops: Option<u8>,
|
|
||||||
) {
|
) {
|
||||||
if let Err(err) = self
|
if let Err(err) = self
|
||||||
.message_handler
|
.message_handler
|
||||||
.try_send_plain_message(recipient, content, lane, packet_type, mix_hops)
|
.try_send_plain_message(recipient, content, lane, packet_type)
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
warn!("failed to send a plain message - {err}")
|
warn!("failed to send a plain message - {err}")
|
||||||
@@ -91,18 +90,10 @@ where
|
|||||||
reply_surbs: u32,
|
reply_surbs: u32,
|
||||||
lane: TransmissionLane,
|
lane: TransmissionLane,
|
||||||
packet_type: PacketType,
|
packet_type: PacketType,
|
||||||
mix_hops: Option<u8>,
|
|
||||||
) {
|
) {
|
||||||
if let Err(err) = self
|
if let Err(err) = self
|
||||||
.message_handler
|
.message_handler
|
||||||
.try_send_message_with_reply_surbs(
|
.try_send_message_with_reply_surbs(recipient, content, reply_surbs, lane, packet_type)
|
||||||
recipient,
|
|
||||||
content,
|
|
||||||
reply_surbs,
|
|
||||||
lane,
|
|
||||||
packet_type,
|
|
||||||
mix_hops,
|
|
||||||
)
|
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
warn!("failed to send a repliable message - {err}")
|
warn!("failed to send a repliable message - {err}")
|
||||||
@@ -115,9 +106,8 @@ where
|
|||||||
recipient,
|
recipient,
|
||||||
data,
|
data,
|
||||||
lane,
|
lane,
|
||||||
mix_hops,
|
|
||||||
} => {
|
} => {
|
||||||
self.handle_plain_message(recipient, data, lane, PacketType::Mix, mix_hops)
|
self.handle_plain_message(recipient, data, lane, PacketType::Mix)
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
InputMessage::Anonymous {
|
InputMessage::Anonymous {
|
||||||
@@ -125,17 +115,9 @@ where
|
|||||||
data,
|
data,
|
||||||
reply_surbs,
|
reply_surbs,
|
||||||
lane,
|
lane,
|
||||||
mix_hops,
|
|
||||||
} => {
|
} => {
|
||||||
self.handle_repliable_message(
|
self.handle_repliable_message(recipient, data, reply_surbs, lane, PacketType::Mix)
|
||||||
recipient,
|
.await
|
||||||
data,
|
|
||||||
reply_surbs,
|
|
||||||
lane,
|
|
||||||
PacketType::Mix,
|
|
||||||
mix_hops,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
}
|
}
|
||||||
InputMessage::Reply {
|
InputMessage::Reply {
|
||||||
recipient_tag,
|
recipient_tag,
|
||||||
@@ -153,9 +135,8 @@ where
|
|||||||
recipient,
|
recipient,
|
||||||
data,
|
data,
|
||||||
lane,
|
lane,
|
||||||
mix_hops,
|
|
||||||
} => {
|
} => {
|
||||||
self.handle_plain_message(recipient, data, lane, packet_type, mix_hops)
|
self.handle_plain_message(recipient, data, lane, packet_type)
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
InputMessage::Anonymous {
|
InputMessage::Anonymous {
|
||||||
@@ -163,17 +144,9 @@ where
|
|||||||
data,
|
data,
|
||||||
reply_surbs,
|
reply_surbs,
|
||||||
lane,
|
lane,
|
||||||
mix_hops,
|
|
||||||
} => {
|
} => {
|
||||||
self.handle_repliable_message(
|
self.handle_repliable_message(recipient, data, reply_surbs, lane, packet_type)
|
||||||
recipient,
|
.await
|
||||||
data,
|
|
||||||
reply_surbs,
|
|
||||||
lane,
|
|
||||||
packet_type,
|
|
||||||
mix_hops,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
}
|
}
|
||||||
InputMessage::Reply {
|
InputMessage::Reply {
|
||||||
recipient_tag,
|
recipient_tag,
|
||||||
|
|||||||
@@ -69,7 +69,6 @@ pub(crate) struct PendingAcknowledgement {
|
|||||||
message_chunk: Fragment,
|
message_chunk: Fragment,
|
||||||
delay: SphinxDelay,
|
delay: SphinxDelay,
|
||||||
destination: PacketDestination,
|
destination: PacketDestination,
|
||||||
mix_hops: Option<u8>,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl PendingAcknowledgement {
|
impl PendingAcknowledgement {
|
||||||
@@ -78,13 +77,11 @@ impl PendingAcknowledgement {
|
|||||||
message_chunk: Fragment,
|
message_chunk: Fragment,
|
||||||
delay: SphinxDelay,
|
delay: SphinxDelay,
|
||||||
recipient: Recipient,
|
recipient: Recipient,
|
||||||
mix_hops: Option<u8>,
|
|
||||||
) -> Self {
|
) -> Self {
|
||||||
PendingAcknowledgement {
|
PendingAcknowledgement {
|
||||||
message_chunk,
|
message_chunk,
|
||||||
delay,
|
delay,
|
||||||
destination: PacketDestination::KnownRecipient(recipient.into()),
|
destination: PacketDestination::KnownRecipient(recipient.into()),
|
||||||
mix_hops,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -101,9 +98,6 @@ impl PendingAcknowledgement {
|
|||||||
recipient_tag,
|
recipient_tag,
|
||||||
extra_surb_request,
|
extra_surb_request,
|
||||||
},
|
},
|
||||||
// Messages sent using SURBs are using the number of mix hops set by the recipient when
|
|
||||||
// they provided the SURBs, so it doesn't make sense to include it here.
|
|
||||||
mix_hops: None,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+1
-8
@@ -49,18 +49,12 @@ where
|
|||||||
packet_recipient: Recipient,
|
packet_recipient: Recipient,
|
||||||
chunk_data: Fragment,
|
chunk_data: Fragment,
|
||||||
packet_type: PacketType,
|
packet_type: PacketType,
|
||||||
mix_hops: Option<u8>,
|
|
||||||
) -> Result<PreparedFragment, PreparationError> {
|
) -> Result<PreparedFragment, PreparationError> {
|
||||||
debug!("retransmitting normal packet...");
|
debug!("retransmitting normal packet...");
|
||||||
|
|
||||||
// TODO: Figure out retransmission packet type signaling
|
// TODO: Figure out retransmission packet type signaling
|
||||||
self.message_handler
|
self.message_handler
|
||||||
.try_prepare_single_chunk_for_sending(
|
.try_prepare_single_chunk_for_sending(packet_recipient, chunk_data, packet_type)
|
||||||
packet_recipient,
|
|
||||||
chunk_data,
|
|
||||||
packet_type,
|
|
||||||
mix_hops,
|
|
||||||
)
|
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,7 +89,6 @@ where
|
|||||||
**recipient,
|
**recipient,
|
||||||
timed_out_ack.message_chunk.clone(),
|
timed_out_ack.message_chunk.clone(),
|
||||||
packet_type,
|
packet_type,
|
||||||
timed_out_ack.mix_hops,
|
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-2
@@ -40,7 +40,7 @@ impl SentNotificationListener {
|
|||||||
pub(super) async fn run_with_shutdown(&mut self, mut shutdown: nym_task::TaskClient) {
|
pub(super) async fn run_with_shutdown(&mut self, mut shutdown: nym_task::TaskClient) {
|
||||||
debug!("Started SentNotificationListener with graceful shutdown support");
|
debug!("Started SentNotificationListener with graceful shutdown support");
|
||||||
|
|
||||||
loop {
|
while !shutdown.is_shutdown() {
|
||||||
tokio::select! {
|
tokio::select! {
|
||||||
frag_id = self.sent_notifier.next() => match frag_id {
|
frag_id = self.sent_notifier.next() => match frag_id {
|
||||||
Some(frag_id) => {
|
Some(frag_id) => {
|
||||||
@@ -53,7 +53,6 @@ impl SentNotificationListener {
|
|||||||
},
|
},
|
||||||
_ = shutdown.recv_with_delay() => {
|
_ = shutdown.recv_with_delay() => {
|
||||||
log::trace!("SentNotificationListener: Received shutdown");
|
log::trace!("SentNotificationListener: Received shutdown");
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -418,10 +418,9 @@ where
|
|||||||
message: Vec<u8>,
|
message: Vec<u8>,
|
||||||
lane: TransmissionLane,
|
lane: TransmissionLane,
|
||||||
packet_type: PacketType,
|
packet_type: PacketType,
|
||||||
mix_hops: Option<u8>,
|
|
||||||
) -> Result<(), PreparationError> {
|
) -> Result<(), PreparationError> {
|
||||||
let message = NymMessage::new_plain(message);
|
let message = NymMessage::new_plain(message);
|
||||||
self.try_split_and_send_non_reply_message(message, recipient, lane, packet_type, mix_hops)
|
self.try_split_and_send_non_reply_message(message, recipient, lane, packet_type)
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -431,7 +430,6 @@ where
|
|||||||
recipient: Recipient,
|
recipient: Recipient,
|
||||||
lane: TransmissionLane,
|
lane: TransmissionLane,
|
||||||
packet_type: PacketType,
|
packet_type: PacketType,
|
||||||
mix_hops: Option<u8>,
|
|
||||||
) -> Result<(), PreparationError> {
|
) -> Result<(), PreparationError> {
|
||||||
debug!("Sending non-reply message with packet type {packet_type}");
|
debug!("Sending non-reply message with packet type {packet_type}");
|
||||||
// TODO: I really dislike existence of this assertion, it implies code has to be re-organised
|
// TODO: I really dislike existence of this assertion, it implies code has to be re-organised
|
||||||
@@ -463,7 +461,6 @@ where
|
|||||||
&self.config.ack_key,
|
&self.config.ack_key,
|
||||||
&recipient,
|
&recipient,
|
||||||
packet_type,
|
packet_type,
|
||||||
mix_hops,
|
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
let real_message = RealMessage::new(
|
let real_message = RealMessage::new(
|
||||||
@@ -471,8 +468,7 @@ where
|
|||||||
Some(fragment.fragment_identifier()),
|
Some(fragment.fragment_identifier()),
|
||||||
);
|
);
|
||||||
let delay = prepared_fragment.total_delay;
|
let delay = prepared_fragment.total_delay;
|
||||||
let pending_ack =
|
let pending_ack = PendingAcknowledgement::new_known(fragment, delay, recipient);
|
||||||
PendingAcknowledgement::new_known(fragment, delay, recipient, mix_hops);
|
|
||||||
|
|
||||||
real_messages.push(real_message);
|
real_messages.push(real_message);
|
||||||
pending_acks.push(pending_ack);
|
pending_acks.push(pending_ack);
|
||||||
@@ -489,7 +485,6 @@ where
|
|||||||
recipient: Recipient,
|
recipient: Recipient,
|
||||||
amount: u32,
|
amount: u32,
|
||||||
packet_type: PacketType,
|
packet_type: PacketType,
|
||||||
mix_hops: Option<u8>,
|
|
||||||
) -> Result<(), PreparationError> {
|
) -> Result<(), PreparationError> {
|
||||||
debug!("Sending additional reply SURBs with packet type {packet_type}");
|
debug!("Sending additional reply SURBs with packet type {packet_type}");
|
||||||
let sender_tag = self.get_or_create_sender_tag(&recipient);
|
let sender_tag = self.get_or_create_sender_tag(&recipient);
|
||||||
@@ -506,7 +501,6 @@ where
|
|||||||
recipient,
|
recipient,
|
||||||
TransmissionLane::AdditionalReplySurbs,
|
TransmissionLane::AdditionalReplySurbs,
|
||||||
packet_type,
|
packet_type,
|
||||||
mix_hops,
|
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
@@ -523,7 +517,6 @@ where
|
|||||||
num_reply_surbs: u32,
|
num_reply_surbs: u32,
|
||||||
lane: TransmissionLane,
|
lane: TransmissionLane,
|
||||||
packet_type: PacketType,
|
packet_type: PacketType,
|
||||||
mix_hops: Option<u8>,
|
|
||||||
) -> Result<(), SurbWrappedPreparationError> {
|
) -> Result<(), SurbWrappedPreparationError> {
|
||||||
debug!("Sending message with reply SURBs with packet type {packet_type}");
|
debug!("Sending message with reply SURBs with packet type {packet_type}");
|
||||||
let sender_tag = self.get_or_create_sender_tag(&recipient);
|
let sender_tag = self.get_or_create_sender_tag(&recipient);
|
||||||
@@ -534,7 +527,7 @@ where
|
|||||||
let message =
|
let message =
|
||||||
NymMessage::new_repliable(RepliableMessage::new_data(message, sender_tag, reply_surbs));
|
NymMessage::new_repliable(RepliableMessage::new_data(message, sender_tag, reply_surbs));
|
||||||
|
|
||||||
self.try_split_and_send_non_reply_message(message, recipient, lane, packet_type, mix_hops)
|
self.try_split_and_send_non_reply_message(message, recipient, lane, packet_type)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
log::trace!("storing {} reply keys", reply_keys.len());
|
log::trace!("storing {} reply keys", reply_keys.len());
|
||||||
@@ -548,7 +541,6 @@ where
|
|||||||
recipient: Recipient,
|
recipient: Recipient,
|
||||||
chunk: Fragment,
|
chunk: Fragment,
|
||||||
packet_type: PacketType,
|
packet_type: PacketType,
|
||||||
mix_hops: Option<u8>,
|
|
||||||
) -> Result<PreparedFragment, PreparationError> {
|
) -> Result<PreparedFragment, PreparationError> {
|
||||||
debug!("Sending single chunk with packet type {packet_type}");
|
debug!("Sending single chunk with packet type {packet_type}");
|
||||||
let topology_permit = self.topology_access.get_read_permit().await;
|
let topology_permit = self.topology_access.get_read_permit().await;
|
||||||
@@ -562,7 +554,6 @@ where
|
|||||||
&self.config.ack_key,
|
&self.config.ack_key,
|
||||||
&recipient,
|
&recipient,
|
||||||
packet_type,
|
packet_type,
|
||||||
mix_hops,
|
|
||||||
)
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
|
|||||||
@@ -500,12 +500,11 @@ where
|
|||||||
{
|
{
|
||||||
let mut status_timer = tokio::time::interval(Duration::from_secs(5));
|
let mut status_timer = tokio::time::interval(Duration::from_secs(5));
|
||||||
|
|
||||||
loop {
|
while !shutdown.is_shutdown() {
|
||||||
tokio::select! {
|
tokio::select! {
|
||||||
biased;
|
biased;
|
||||||
_ = shutdown.recv_with_delay() => {
|
_ = shutdown.recv_with_delay() => {
|
||||||
log::trace!("OutQueueControl: Received shutdown");
|
log::trace!("OutQueueControl: Received shutdown");
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
_ = status_timer.tick() => {
|
_ = status_timer.tick() => {
|
||||||
self.log_status(&mut shutdown);
|
self.log_status(&mut shutdown);
|
||||||
|
|||||||
@@ -516,7 +516,6 @@ where
|
|||||||
recipient,
|
recipient,
|
||||||
to_send,
|
to_send,
|
||||||
nym_sphinx::params::PacketType::Mix,
|
nym_sphinx::params::PacketType::Mix,
|
||||||
self.config.reply_surbs.surb_mix_hops,
|
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ where
|
|||||||
mem_state: CombinedReplyStorage,
|
mem_state: CombinedReplyStorage,
|
||||||
mut shutdown: nym_task::TaskClient,
|
mut shutdown: nym_task::TaskClient,
|
||||||
) {
|
) {
|
||||||
use log::{debug, error, info};
|
use log::{debug, error, info, warn};
|
||||||
|
|
||||||
debug!("Started PersistentReplyStorage");
|
debug!("Started PersistentReplyStorage");
|
||||||
if let Err(err) = self.backend.start_storage_session().await {
|
if let Err(err) = self.backend.start_storage_session().await {
|
||||||
@@ -50,7 +50,7 @@ where
|
|||||||
shutdown.recv().await;
|
shutdown.recv().await;
|
||||||
|
|
||||||
info!("PersistentReplyStorage is flushing all reply-related data to underlying storage");
|
info!("PersistentReplyStorage is flushing all reply-related data to underlying storage");
|
||||||
info!("you MUST NOT forcefully shutdown now or you risk data corruption!");
|
warn!("you MUST NOT forcefully shutdown now or you risk data corruption!");
|
||||||
if let Err(err) = self.backend.flush_surb_storage(&mem_state).await {
|
if let Err(err) = self.backend.flush_surb_storage(&mem_state).await {
|
||||||
error!("failed to flush our reply-related data to the persistent storage: {err}")
|
error!("failed to flush our reply-related data to the persistent storage: {err}")
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -607,10 +607,6 @@ pub struct ReplySurbs {
|
|||||||
/// This is going to be superseded by key rotation once implemented.
|
/// This is going to be superseded by key rotation once implemented.
|
||||||
#[serde(with = "humantime_serde")]
|
#[serde(with = "humantime_serde")]
|
||||||
pub maximum_reply_key_age: Duration,
|
pub maximum_reply_key_age: Duration,
|
||||||
|
|
||||||
/// Specifies the number of mixnet hops the packet should go through. If not specified, then
|
|
||||||
/// the default value is used.
|
|
||||||
pub surb_mix_hops: Option<u8>,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for ReplySurbs {
|
impl Default for ReplySurbs {
|
||||||
@@ -626,7 +622,6 @@ impl Default for ReplySurbs {
|
|||||||
maximum_reply_surb_drop_waiting_period: DEFAULT_MAXIMUM_REPLY_SURB_DROP_WAITING_PERIOD,
|
maximum_reply_surb_drop_waiting_period: DEFAULT_MAXIMUM_REPLY_SURB_DROP_WAITING_PERIOD,
|
||||||
maximum_reply_surb_age: DEFAULT_MAXIMUM_REPLY_SURB_AGE,
|
maximum_reply_surb_age: DEFAULT_MAXIMUM_REPLY_SURB_AGE,
|
||||||
maximum_reply_key_age: DEFAULT_MAXIMUM_REPLY_KEY_AGE,
|
maximum_reply_key_age: DEFAULT_MAXIMUM_REPLY_KEY_AGE,
|
||||||
surb_mix_hops: None,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -155,7 +155,6 @@ impl From<ConfigV1_1_30> for Config {
|
|||||||
.maximum_reply_surb_drop_waiting_period,
|
.maximum_reply_surb_drop_waiting_period,
|
||||||
maximum_reply_surb_age: value.debug.reply_surbs.maximum_reply_surb_age,
|
maximum_reply_surb_age: value.debug.reply_surbs.maximum_reply_surb_age,
|
||||||
maximum_reply_key_age: value.debug.reply_surbs.maximum_reply_key_age,
|
maximum_reply_key_age: value.debug.reply_surbs.maximum_reply_key_age,
|
||||||
surb_mix_hops: None,
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,34 +15,34 @@ pub enum ClientCoreError {
|
|||||||
#[error("I/O error: {0}")]
|
#[error("I/O error: {0}")]
|
||||||
IoError(#[from] std::io::Error),
|
IoError(#[from] std::io::Error),
|
||||||
|
|
||||||
#[error("gateway client error ({gateway_id}): {source}")]
|
#[error("Gateway client error ({gateway_id}): {source}")]
|
||||||
GatewayClientError {
|
GatewayClientError {
|
||||||
gateway_id: String,
|
gateway_id: String,
|
||||||
source: GatewayClientError,
|
source: GatewayClientError,
|
||||||
},
|
},
|
||||||
|
|
||||||
#[error("custom gateway client error: {source}")]
|
#[error("Custom gateway client error: {source}")]
|
||||||
ErasedGatewayClientError {
|
ErasedGatewayClientError {
|
||||||
#[from]
|
#[from]
|
||||||
source: ErasedGatewayError,
|
source: ErasedGatewayError,
|
||||||
},
|
},
|
||||||
|
|
||||||
#[error("ed25519 error: {0}")]
|
#[error("Ed25519 error: {0}")]
|
||||||
Ed25519RecoveryError(#[from] Ed25519RecoveryError),
|
Ed25519RecoveryError(#[from] Ed25519RecoveryError),
|
||||||
|
|
||||||
#[error("validator client error: {0}")]
|
#[error("Validator client error: {0}")]
|
||||||
ValidatorClientError(#[from] ValidatorClientError),
|
ValidatorClientError(#[from] ValidatorClientError),
|
||||||
|
|
||||||
#[error("no gateway with id: {0}")]
|
#[error("No gateway with id: {0}")]
|
||||||
NoGatewayWithId(String),
|
NoGatewayWithId(String),
|
||||||
|
|
||||||
#[error("no gateways on network")]
|
#[error("No gateways on network")]
|
||||||
NoGatewaysOnNetwork,
|
NoGatewaysOnNetwork,
|
||||||
|
|
||||||
#[error("list of nym apis is empty")]
|
#[error("List of nym apis is empty")]
|
||||||
ListOfNymApisIsEmpty,
|
ListOfNymApisIsEmpty,
|
||||||
|
|
||||||
#[error("the current network topology seem to be insufficient to route any packets through")]
|
#[error("The current network topology seem to be insufficient to route any packets through")]
|
||||||
InsufficientNetworkTopology(#[from] NymTopologyError),
|
InsufficientNetworkTopology(#[from] NymTopologyError),
|
||||||
|
|
||||||
#[error("experienced a failure with our reply surb persistent storage: {source}")]
|
#[error("experienced a failure with our reply surb persistent storage: {source}")]
|
||||||
@@ -60,7 +60,7 @@ pub enum ClientCoreError {
|
|||||||
source: Box<dyn Error + Send + Sync>,
|
source: Box<dyn Error + Send + Sync>,
|
||||||
},
|
},
|
||||||
|
|
||||||
#[error("the gateway id is invalid - {0}")]
|
#[error("The gateway id is invalid - {0}")]
|
||||||
UnableToCreatePublicKeyFromGatewayId(Ed25519RecoveryError),
|
UnableToCreatePublicKeyFromGatewayId(Ed25519RecoveryError),
|
||||||
|
|
||||||
#[error("The gateway is malformed: {source}")]
|
#[error("The gateway is malformed: {source}")]
|
||||||
@@ -79,23 +79,23 @@ pub enum ClientCoreError {
|
|||||||
#[error("failed to establish gateway connection (wasm)")]
|
#[error("failed to establish gateway connection (wasm)")]
|
||||||
GatewayJsConnectionFailure,
|
GatewayJsConnectionFailure,
|
||||||
|
|
||||||
#[error("gateway connection was abruptly closed")]
|
#[error("Gateway connection was abruptly closed")]
|
||||||
GatewayConnectionAbruptlyClosed,
|
GatewayConnectionAbruptlyClosed,
|
||||||
|
|
||||||
#[error("timed out while trying to establish gateway connection")]
|
#[error("Timed out while trying to establish gateway connection")]
|
||||||
GatewayConnectionTimeout,
|
GatewayConnectionTimeout,
|
||||||
|
|
||||||
#[error("no ping measurements for the gateway ({identity}) performed")]
|
#[error("No ping measurements for the gateway ({identity}) performed")]
|
||||||
NoGatewayMeasurements { identity: String },
|
NoGatewayMeasurements { identity: String },
|
||||||
|
|
||||||
#[error("failed to register receiver for reconstructed mixnet messages")]
|
#[error("failed to register receiver for reconstructed mixnet messages")]
|
||||||
FailedToRegisterReceiver,
|
FailedToRegisterReceiver,
|
||||||
|
|
||||||
#[error("unexpected exit")]
|
#[error("Unexpected exit")]
|
||||||
UnexpectedExit,
|
UnexpectedExit,
|
||||||
|
|
||||||
#[error(
|
#[error(
|
||||||
"this operation would have resulted in clients keys being overwritten without permission"
|
"This operation would have resulted in clients keys being overwritten without permission"
|
||||||
)]
|
)]
|
||||||
ForbiddenKeyOverwrite,
|
ForbiddenKeyOverwrite,
|
||||||
|
|
||||||
|
|||||||
@@ -68,23 +68,13 @@ pub async fn current_gateways<R: Rng>(
|
|||||||
log::trace!("Fetching list of gateways from: {nym_api}");
|
log::trace!("Fetching list of gateways from: {nym_api}");
|
||||||
|
|
||||||
let gateways = client.get_cached_described_gateways().await?;
|
let gateways = client.get_cached_described_gateways().await?;
|
||||||
log::debug!("Found {} gateways", gateways.len());
|
|
||||||
log::trace!("Gateways: {:#?}", gateways);
|
|
||||||
|
|
||||||
let valid_gateways = gateways
|
let valid_gateways = gateways
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.filter_map(|gateway| gateway.try_into().ok())
|
.filter_map(|gateway| gateway.try_into().ok())
|
||||||
.collect::<Vec<gateway::Node>>();
|
.collect::<Vec<gateway::Node>>();
|
||||||
log::debug!("Ater checking validity: {}", valid_gateways.len());
|
|
||||||
log::trace!("Valid gateways: {:#?}", valid_gateways);
|
|
||||||
|
|
||||||
// we were always filtering by version so I'm not removing that 'feature'
|
// we were always filtering by version so I'm not removing that 'feature'
|
||||||
let filtered_gateways = valid_gateways.filter_by_version(env!("CARGO_PKG_VERSION"));
|
let filtered_gateways = valid_gateways.filter_by_version(env!("CARGO_PKG_VERSION"));
|
||||||
log::debug!("After filtering for version: {}", filtered_gateways.len());
|
|
||||||
log::trace!("Filtered gateways: {:#?}", filtered_gateways);
|
|
||||||
|
|
||||||
log::info!("nym-api reports {} valid gateways", filtered_gateways.len());
|
|
||||||
|
|
||||||
Ok(filtered_gateways)
|
Ok(filtered_gateways)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -259,7 +249,6 @@ pub(super) fn get_specified_gateway(
|
|||||||
gateways: &[gateway::Node],
|
gateways: &[gateway::Node],
|
||||||
must_use_tls: bool,
|
must_use_tls: bool,
|
||||||
) -> Result<gateway::Node, ClientCoreError> {
|
) -> Result<gateway::Node, ClientCoreError> {
|
||||||
log::debug!("Requesting specified gateway: {}", gateway_identity);
|
|
||||||
let user_gateway = identity::PublicKey::from_base58_string(gateway_identity)
|
let user_gateway = identity::PublicKey::from_base58_string(gateway_identity)
|
||||||
.map_err(ClientCoreError::UnableToCreatePublicKeyFromGatewayId)?;
|
.map_err(ClientCoreError::UnableToCreatePublicKeyFromGatewayId)?;
|
||||||
|
|
||||||
|
|||||||
@@ -94,8 +94,6 @@ where
|
|||||||
D::StorageError: Send + Sync + 'static,
|
D::StorageError: Send + Sync + 'static,
|
||||||
T: DeserializeOwned + Serialize + Send + Sync,
|
T: DeserializeOwned + Serialize + Send + Sync,
|
||||||
{
|
{
|
||||||
log::trace!("Setting up new gateway");
|
|
||||||
|
|
||||||
// if we're setting up new gateway, failing to load existing information is fine.
|
// if we're setting up new gateway, failing to load existing information is fine.
|
||||||
// as a matter of fact, it's only potentially a problem if we DO succeed
|
// as a matter of fact, it's only potentially a problem if we DO succeed
|
||||||
if _load_gateway_details(details_store).await.is_ok() && !overwrite_data {
|
if _load_gateway_details(details_store).await.is_ok() && !overwrite_data {
|
||||||
@@ -212,7 +210,6 @@ where
|
|||||||
D::StorageError: Send + Sync + 'static,
|
D::StorageError: Send + Sync + 'static,
|
||||||
T: DeserializeOwned + Serialize + Send + Sync,
|
T: DeserializeOwned + Serialize + Send + Sync,
|
||||||
{
|
{
|
||||||
log::debug!("Setting up gateway");
|
|
||||||
match setup {
|
match setup {
|
||||||
GatewaySetup::MustLoad => use_loaded_gateway_details(key_store, details_store).await,
|
GatewaySetup::MustLoad => use_loaded_gateway_details(key_store, details_store).await,
|
||||||
GatewaySetup::New {
|
GatewaySetup::New {
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ name = "nym-gateway-client"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Jędrzej Stuczyński <andrew@nymtech.net>"]
|
authors = ["Jędrzej Stuczyński <andrew@nymtech.net>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|||||||
@@ -792,7 +792,6 @@ pub struct InitOnly;
|
|||||||
impl GatewayClient<InitOnly, EphemeralCredentialStorage> {
|
impl GatewayClient<InitOnly, EphemeralCredentialStorage> {
|
||||||
// for initialisation we do not need credential storage. Though it's still a bit weird we have to set the generic...
|
// for initialisation we do not need credential storage. Though it's still a bit weird we have to set the generic...
|
||||||
pub fn new_init(config: GatewayConfig, local_identity: Arc<identity::KeyPair>) -> Self {
|
pub fn new_init(config: GatewayConfig, local_identity: Arc<identity::KeyPair>) -> Self {
|
||||||
log::trace!("Initialising gateway client");
|
|
||||||
use futures::channel::mpsc;
|
use futures::channel::mpsc;
|
||||||
|
|
||||||
// note: this packet_router is completely invalid in normal circumstances, but "works"
|
// note: this packet_router is completely invalid in normal circumstances, but "works"
|
||||||
|
|||||||
@@ -3,15 +3,14 @@ name = "nym-mixnet-client"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = { workspace = true }
|
futures = { workspace = true }
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
tokio = { workspace = true, features = ["time", "net", "rt"] }
|
tokio = { version = "1.24.1", features = ["time", "net", "rt"] }
|
||||||
tokio-util = { workspace = true, features = ["codec"] }
|
tokio-util = { version = "0.7.4", features = ["codec"] }
|
||||||
|
|
||||||
# internal
|
# internal
|
||||||
nym-sphinx = { path = "../../nymsphinx" }
|
nym-sphinx = { path = "../../nymsphinx" }
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ version = "0.1.0"
|
|||||||
authors = ["Jędrzej Stuczyński <andrew@nymtech.net>"]
|
authors = ["Jędrzej Stuczyński <andrew@nymtech.net>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.56"
|
rust-version = "1.56"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@@ -46,17 +45,13 @@ cosmrs = { workspace = true, features = ["bip32", "cosmwasm"] }
|
|||||||
# import it just for the `Client` trait
|
# import it just for the `Client` trait
|
||||||
tendermint-rpc = { workspace = true }
|
tendermint-rpc = { workspace = true }
|
||||||
|
|
||||||
# this is an extremely nasty import. we're explicitly bringing in bip32 so that via the magic (or curse, pick your poison)
|
|
||||||
# of cargo's feature unification we'd get `bip32/std` meaning we'd get `std::error::Error` for the re-exported (via cosmrs) bip32::Error type
|
|
||||||
bip32 = { workspace = true, default-features = false, features = ["std"] }
|
|
||||||
|
|
||||||
eyre = { version = "0.6" }
|
eyre = { version = "0.6" }
|
||||||
cw-utils = { workspace = true }
|
cw-utils = { workspace = true }
|
||||||
cw2 = { workspace = true }
|
cw2 = { workspace = true }
|
||||||
cw3 = { workspace = true }
|
cw3 = { workspace = true }
|
||||||
cw4 = { workspace = true }
|
cw4 = { workspace = true }
|
||||||
cw-controllers = { workspace = true }
|
cw-controllers = { workspace = true }
|
||||||
prost = { workspace = true, default-features = false }
|
prost = { version = "0.11", default-features = false }
|
||||||
flate2 = { version = "1.0.20" }
|
flate2 = { version = "1.0.20" }
|
||||||
sha2 = { version = "0.9.5" }
|
sha2 = { version = "0.9.5" }
|
||||||
itertools = { version = "0.10" }
|
itertools = { version = "0.10" }
|
||||||
|
|||||||
@@ -42,14 +42,6 @@ pub struct Config {
|
|||||||
nyxd_config: nyxd::Config,
|
nyxd_config: nyxd::Config,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TryFrom<NymNetworkDetails> for Config {
|
|
||||||
type Error = ValidatorClientError;
|
|
||||||
|
|
||||||
fn try_from(value: NymNetworkDetails) -> Result<Self, Self::Error> {
|
|
||||||
Config::try_from_nym_network_details(&value)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Config {
|
impl Config {
|
||||||
pub fn try_from_nym_network_details(
|
pub fn try_from_nym_network_details(
|
||||||
details: &NymNetworkDetails,
|
details: &NymNetworkDetails,
|
||||||
|
|||||||
@@ -5,24 +5,16 @@ use crate::nym_api::error::NymAPIError;
|
|||||||
use crate::nym_api::routes::{CORE_STATUS_COUNT, SINCE_ARG};
|
use crate::nym_api::routes::{CORE_STATUS_COUNT, SINCE_ARG};
|
||||||
use async_trait::async_trait;
|
use async_trait::async_trait;
|
||||||
use http_api_client::{ApiClient, NO_PARAMS};
|
use http_api_client::{ApiClient, NO_PARAMS};
|
||||||
pub use nym_api_requests::{
|
use nym_api_requests::coconut::{
|
||||||
coconut::{
|
BlindSignRequestBody, BlindedSignatureResponse, VerifyCredentialBody, VerifyCredentialResponse,
|
||||||
models::{
|
};
|
||||||
EpochCredentialsResponse, IssuedCredential, IssuedCredentialBody,
|
use nym_api_requests::models::{
|
||||||
IssuedCredentialResponse, IssuedCredentialsResponse,
|
ComputeRewardEstParam, DescribedGateway, GatewayBondAnnotated, GatewayCoreStatusResponse,
|
||||||
},
|
GatewayStatusReportResponse, GatewayUptimeHistoryResponse, InclusionProbabilityResponse,
|
||||||
BlindSignRequestBody, BlindedSignatureResponse, CredentialsRequestBody,
|
MixNodeBondAnnotated, MixnodeCoreStatusResponse, MixnodeStatusReportResponse,
|
||||||
VerifyCredentialBody, VerifyCredentialResponse,
|
MixnodeStatusResponse, MixnodeUptimeHistoryResponse, RewardEstimationResponse,
|
||||||
},
|
StakeSaturationResponse, UptimeResponse,
|
||||||
models::{
|
|
||||||
ComputeRewardEstParam, DescribedGateway, GatewayBondAnnotated, GatewayCoreStatusResponse,
|
|
||||||
GatewayStatusReportResponse, GatewayUptimeHistoryResponse, InclusionProbabilityResponse,
|
|
||||||
MixNodeBondAnnotated, MixnodeCoreStatusResponse, MixnodeStatusReportResponse,
|
|
||||||
MixnodeStatusResponse, MixnodeUptimeHistoryResponse, RewardEstimationResponse,
|
|
||||||
StakeSaturationResponse, UptimeResponse,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
pub use nym_coconut_dkg_common::types::EpochId;
|
|
||||||
use nym_mixnet_contract_common::mixnode::MixNodeDetails;
|
use nym_mixnet_contract_common::mixnode::MixNodeDetails;
|
||||||
use nym_mixnet_contract_common::{GatewayBond, IdentityKeyRef, MixId};
|
use nym_mixnet_contract_common::{GatewayBond, IdentityKeyRef, MixId};
|
||||||
use nym_name_service_common::response::NamesListResponse;
|
use nym_name_service_common::response::NamesListResponse;
|
||||||
@@ -407,60 +399,6 @@ pub trait NymApiClientExt: ApiClient {
|
|||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn epoch_credentials(
|
|
||||||
&self,
|
|
||||||
dkg_epoch: EpochId,
|
|
||||||
) -> Result<EpochCredentialsResponse, NymAPIError> {
|
|
||||||
self.get_json(
|
|
||||||
&[
|
|
||||||
routes::API_VERSION,
|
|
||||||
routes::COCONUT_ROUTES,
|
|
||||||
routes::BANDWIDTH,
|
|
||||||
routes::COCONUT_EPOCH_CREDENTIALS,
|
|
||||||
&dkg_epoch.to_string(),
|
|
||||||
],
|
|
||||||
NO_PARAMS,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn issued_credential(
|
|
||||||
&self,
|
|
||||||
credential_id: i64,
|
|
||||||
) -> Result<IssuedCredentialResponse, NymAPIError> {
|
|
||||||
self.get_json(
|
|
||||||
&[
|
|
||||||
routes::API_VERSION,
|
|
||||||
routes::COCONUT_ROUTES,
|
|
||||||
routes::BANDWIDTH,
|
|
||||||
routes::COCONUT_ISSUED_CREDENTIAL,
|
|
||||||
&credential_id.to_string(),
|
|
||||||
],
|
|
||||||
NO_PARAMS,
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn issued_credentials(
|
|
||||||
&self,
|
|
||||||
credential_ids: Vec<i64>,
|
|
||||||
) -> Result<IssuedCredentialsResponse, NymAPIError> {
|
|
||||||
self.post_json(
|
|
||||||
&[
|
|
||||||
routes::API_VERSION,
|
|
||||||
routes::COCONUT_ROUTES,
|
|
||||||
routes::BANDWIDTH,
|
|
||||||
routes::COCONUT_ISSUED_CREDENTIALS,
|
|
||||||
],
|
|
||||||
NO_PARAMS,
|
|
||||||
&CredentialsRequestBody {
|
|
||||||
credential_ids,
|
|
||||||
pagination: None,
|
|
||||||
},
|
|
||||||
)
|
|
||||||
.await
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn get_service_providers(&self) -> Result<ServicesListResponse, NymAPIError> {
|
async fn get_service_providers(&self) -> Result<ServicesListResponse, NymAPIError> {
|
||||||
log::trace!("Getting service providers");
|
log::trace!("Getting service providers");
|
||||||
self.get_json(&[routes::API_VERSION, routes::SERVICE_PROVIDERS], NO_PARAMS)
|
self.get_json(&[routes::API_VERSION, routes::SERVICE_PROVIDERS], NO_PARAMS)
|
||||||
|
|||||||
@@ -17,9 +17,6 @@ pub const BANDWIDTH: &str = "bandwidth";
|
|||||||
|
|
||||||
pub const COCONUT_BLIND_SIGN: &str = "blind-sign";
|
pub const COCONUT_BLIND_SIGN: &str = "blind-sign";
|
||||||
pub const COCONUT_VERIFY_BANDWIDTH_CREDENTIAL: &str = "verify-bandwidth-credential";
|
pub const COCONUT_VERIFY_BANDWIDTH_CREDENTIAL: &str = "verify-bandwidth-credential";
|
||||||
pub const COCONUT_EPOCH_CREDENTIALS: &str = "epoch-credentials";
|
|
||||||
pub const COCONUT_ISSUED_CREDENTIAL: &str = "issued-credential";
|
|
||||||
pub const COCONUT_ISSUED_CREDENTIALS: &str = "issued-credentials";
|
|
||||||
|
|
||||||
pub const STATUS_ROUTES: &str = "status";
|
pub const STATUS_ROUTES: &str = "status";
|
||||||
pub const MIXNODE: &str = "mixnode";
|
pub const MIXNODE: &str = "mixnode";
|
||||||
|
|||||||
@@ -8,8 +8,6 @@ use cosmwasm_std::{Fraction, Uint128};
|
|||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
use std::ops::Div;
|
use std::ops::Div;
|
||||||
use std::str::FromStr;
|
|
||||||
use thiserror::Error;
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Clone, Copy, Default, Debug, PartialEq, Eq)]
|
#[derive(Serialize, Deserialize, Clone, Copy, Default, Debug, PartialEq, Eq)]
|
||||||
pub struct MismatchedDenoms;
|
pub struct MismatchedDenoms;
|
||||||
@@ -128,37 +126,6 @@ impl From<CosmWasmCoin> for Coin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// unfortunately cosmwasm didn't re-export this correct so we just redefine its
|
|
||||||
#[derive(Error, Debug, PartialEq, Eq)]
|
|
||||||
pub enum CoinFromStrError {
|
|
||||||
#[error("Missing denominator")]
|
|
||||||
MissingDenom,
|
|
||||||
#[error("Missing amount or non-digit characters in amount")]
|
|
||||||
MissingAmount,
|
|
||||||
#[error("Invalid amount: {0}")]
|
|
||||||
InvalidAmount(#[from] std::num::ParseIntError),
|
|
||||||
}
|
|
||||||
|
|
||||||
impl FromStr for Coin {
|
|
||||||
type Err = CoinFromStrError;
|
|
||||||
|
|
||||||
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
||||||
let pos = s
|
|
||||||
.find(|c: char| !c.is_ascii_digit())
|
|
||||||
.ok_or(CoinFromStrError::MissingDenom)?;
|
|
||||||
let (amount, denom) = s.split_at(pos);
|
|
||||||
|
|
||||||
if amount.is_empty() {
|
|
||||||
return Err(CoinFromStrError::MissingAmount);
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(Coin {
|
|
||||||
amount: amount.parse::<u128>()?,
|
|
||||||
denom: denom.to_string(),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub trait CoinConverter {
|
pub trait CoinConverter {
|
||||||
type Target;
|
type Target;
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -32,7 +32,7 @@ pub trait CoconutBandwidthSigningClient {
|
|||||||
fee: Option<Fee>,
|
fee: Option<Fee>,
|
||||||
) -> Result<ExecuteResult, NyxdError> {
|
) -> Result<ExecuteResult, NyxdError> {
|
||||||
let req = CoconutBandwidthExecuteMsg::DepositFunds {
|
let req = CoconutBandwidthExecuteMsg::DepositFunds {
|
||||||
data: DepositData::new(info, verification_key, encryption_key),
|
data: DepositData::new(info.to_string(), verification_key, encryption_key),
|
||||||
};
|
};
|
||||||
self.execute_coconut_bandwidth_contract(
|
self.execute_coconut_bandwidth_contract(
|
||||||
fee,
|
fee,
|
||||||
|
|||||||
@@ -7,12 +7,12 @@ use crate::nyxd::error::NyxdError;
|
|||||||
use crate::nyxd::CosmWasmClient;
|
use crate::nyxd::CosmWasmClient;
|
||||||
use async_trait::async_trait;
|
use async_trait::async_trait;
|
||||||
use cosmrs::AccountId;
|
use cosmrs::AccountId;
|
||||||
use nym_coconut_dkg_common::{
|
use nym_coconut_dkg_common::dealer::{
|
||||||
dealer::{ContractDealing, DealerDetailsResponse, PagedDealerResponse, PagedDealingsResponse},
|
ContractDealing, DealerDetailsResponse, PagedDealerResponse, PagedDealingsResponse,
|
||||||
msg::QueryMsg as DkgQueryMsg,
|
|
||||||
types::{DealerDetails, Epoch, EpochId, InitialReplacementData},
|
|
||||||
verification_key::{ContractVKShare, PagedVKSharesResponse},
|
|
||||||
};
|
};
|
||||||
|
use nym_coconut_dkg_common::msg::QueryMsg as DkgQueryMsg;
|
||||||
|
use nym_coconut_dkg_common::types::{DealerDetails, Epoch, EpochId, InitialReplacementData};
|
||||||
|
use nym_coconut_dkg_common::verification_key::{ContractVKShare, PagedVKSharesResponse};
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
|
|
||||||
#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
|
#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
|
||||||
|
|||||||
+2
-22
@@ -6,8 +6,8 @@ use crate::nyxd::error::NyxdError;
|
|||||||
use crate::nyxd::CosmWasmClient;
|
use crate::nyxd::CosmWasmClient;
|
||||||
use async_trait::async_trait;
|
use async_trait::async_trait;
|
||||||
use cw3::{
|
use cw3::{
|
||||||
ProposalListResponse, ProposalResponse, VoteListResponse, VoteResponse, VoterDetail,
|
ProposalListResponse, ProposalResponse, VoteListResponse, VoteResponse, VoterListResponse,
|
||||||
VoterListResponse, VoterResponse,
|
VoterResponse,
|
||||||
};
|
};
|
||||||
use cw_utils::ThresholdResponse;
|
use cw_utils::ThresholdResponse;
|
||||||
use nym_multisig_contract_common::msg::QueryMsg as MultisigQueryMsg;
|
use nym_multisig_contract_common::msg::QueryMsg as MultisigQueryMsg;
|
||||||
@@ -114,26 +114,6 @@ pub trait PagedMultisigQueryClient: MultisigQueryClient {
|
|||||||
|
|
||||||
Ok(proposals)
|
Ok(proposals)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn get_all_voters(&self) -> Result<Vec<VoterDetail>, NyxdError> {
|
|
||||||
let mut voters = Vec::new();
|
|
||||||
let mut start_after = None;
|
|
||||||
|
|
||||||
loop {
|
|
||||||
let mut paged_response = self.list_voters(start_after.take(), None).await?;
|
|
||||||
|
|
||||||
let last_voter = paged_response.voters.last().map(|prop| prop.addr.clone());
|
|
||||||
voters.append(&mut paged_response.voters);
|
|
||||||
|
|
||||||
if let Some(start_after_res) = last_voter {
|
|
||||||
start_after = Some(start_after_res)
|
|
||||||
} else {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(voters)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[async_trait]
|
#[async_trait]
|
||||||
|
|||||||
+4
-4
@@ -52,6 +52,10 @@ use wasmtimer::tokio::sleep;
|
|||||||
pub const DEFAULT_BROADCAST_POLLING_RATE: Duration = Duration::from_secs(4);
|
pub const DEFAULT_BROADCAST_POLLING_RATE: Duration = Duration::from_secs(4);
|
||||||
pub const DEFAULT_BROADCAST_TIMEOUT: Duration = Duration::from_secs(60);
|
pub const DEFAULT_BROADCAST_TIMEOUT: Duration = Duration::from_secs(60);
|
||||||
|
|
||||||
|
#[cfg(feature = "http-client")]
|
||||||
|
#[async_trait]
|
||||||
|
impl CosmWasmClient for cosmrs::rpc::HttpClient {}
|
||||||
|
|
||||||
#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
|
#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
|
||||||
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
|
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
|
||||||
pub trait CosmWasmClient: TendermintRpcClient {
|
pub trait CosmWasmClient: TendermintRpcClient {
|
||||||
@@ -518,7 +522,3 @@ pub trait CosmWasmClient: TendermintRpcClient {
|
|||||||
res.try_into()
|
res.try_into()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
|
|
||||||
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
|
|
||||||
impl<T> CosmWasmClient for T where T: TendermintRpcClient {}
|
|
||||||
|
|||||||
+1
-1
@@ -425,7 +425,7 @@ where
|
|||||||
amount: amount.into_iter().map(Into::into).collect(),
|
amount: amount.into_iter().map(Into::into).collect(),
|
||||||
}
|
}
|
||||||
.to_any()
|
.to_any()
|
||||||
.map_err(|_| NyxdError::SerializationError("MsgSend".to_owned()))
|
.map_err(|_| NyxdError::SerializationError("MsgExecuteContract".to_owned()))
|
||||||
})
|
})
|
||||||
.collect::<Result<_, _>>()?;
|
.collect::<Result<_, _>>()?;
|
||||||
|
|
||||||
|
|||||||
@@ -20,12 +20,12 @@ impl CheckResponse for broadcast::tx_commit::Response {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if self.tx_result.code.is_err() {
|
if self.deliver_tx.code.is_err() {
|
||||||
return Err(NyxdError::BroadcastTxErrorDeliverTx {
|
return Err(NyxdError::BroadcastTxErrorDeliverTx {
|
||||||
hash: self.hash,
|
hash: self.hash,
|
||||||
height: Some(self.height),
|
height: Some(self.height),
|
||||||
code: self.tx_result.code.value(),
|
code: self.deliver_tx.code.value(),
|
||||||
raw_log: self.tx_result.log,
|
raw_log: self.deliver_tx.log,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
|
// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
use crate::nyxd::cosmwasm_client::client_traits::SigningCosmWasmClient;
|
use crate::nyxd::cosmwasm_client::client_traits::{CosmWasmClient, SigningCosmWasmClient};
|
||||||
use crate::nyxd::error::NyxdError;
|
use crate::nyxd::error::NyxdError;
|
||||||
use crate::nyxd::{Config, GasPrice, Hash, Height};
|
use crate::nyxd::{Config, GasPrice, Hash, Height};
|
||||||
use crate::rpc::TendermintRpcClient;
|
use crate::rpc::TendermintRpcClient;
|
||||||
@@ -26,7 +26,6 @@ use cosmrs::rpc::{HttpClient, HttpClientUrl};
|
|||||||
pub mod client_traits;
|
pub mod client_traits;
|
||||||
mod helpers;
|
mod helpers;
|
||||||
pub mod logs;
|
pub mod logs;
|
||||||
pub mod module_traits;
|
|
||||||
pub mod types;
|
pub mod types;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
@@ -330,6 +329,14 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[async_trait]
|
||||||
|
impl<C, S> CosmWasmClient for MaybeSigningClient<C, S>
|
||||||
|
where
|
||||||
|
C: TendermintRpcClient + Send + Sync,
|
||||||
|
S: Send + Sync,
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
#[async_trait]
|
#[async_trait]
|
||||||
impl<C, S> SigningCosmWasmClient for MaybeSigningClient<C, S>
|
impl<C, S> SigningCosmWasmClient for MaybeSigningClient<C, S>
|
||||||
where
|
where
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
// Copyright 2023 - Nym Technologies SA <contact@nymtech.net>
|
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
pub mod slashing;
|
|
||||||
pub mod staking;
|
|
||||||
|
|
||||||
pub use staking::query::StakingQueryClient;
|
|
||||||
// pub use slashing::query
|
|
||||||
-4
@@ -1,4 +0,0 @@
|
|||||||
// Copyright 2023 - Nym Technologies SA <contact@nymtech.net>
|
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
pub mod query;
|
|
||||||
-8
@@ -1,8 +0,0 @@
|
|||||||
// Copyright 2023 - Nym Technologies SA <contact@nymtech.net>
|
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
pub mod query;
|
|
||||||
|
|
||||||
pub use cosmrs::staking::{
|
|
||||||
QueryHistoricalInfoResponse, QueryValidatorResponse, QueryValidatorsResponse, Validator,
|
|
||||||
};
|
|
||||||
-78
@@ -1,78 +0,0 @@
|
|||||||
// Copyright 2023 - Nym Technologies SA <contact@nymtech.net>
|
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
use super::{QueryHistoricalInfoResponse, QueryValidatorResponse, QueryValidatorsResponse};
|
|
||||||
use crate::nyxd::error::NyxdError;
|
|
||||||
use crate::nyxd::{CosmWasmClient, PageRequest};
|
|
||||||
use async_trait::async_trait;
|
|
||||||
use cosmrs::proto::cosmos::staking::v1beta1::{
|
|
||||||
QueryHistoricalInfoRequest as ProtoQueryHistoricalInfoRequest,
|
|
||||||
QueryHistoricalInfoResponse as ProtoQueryHistoricalInfoResponse,
|
|
||||||
QueryValidatorRequest as ProtoQueryValidatorRequest,
|
|
||||||
QueryValidatorResponse as ProtoQueryValidatorResponse,
|
|
||||||
QueryValidatorsRequest as ProtoQueryValidatorsRequest,
|
|
||||||
QueryValidatorsResponse as ProtoQueryValidatorsResponse,
|
|
||||||
};
|
|
||||||
use cosmrs::staking::{QueryHistoricalInfoRequest, QueryValidatorRequest, QueryValidatorsRequest};
|
|
||||||
use cosmrs::AccountId;
|
|
||||||
|
|
||||||
// TODO: change trait restriction from `CosmWasmClient` to `TendermintRpcClient`
|
|
||||||
#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
|
|
||||||
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
|
|
||||||
pub trait StakingQueryClient: CosmWasmClient {
|
|
||||||
async fn historical_info(&self, height: i64) -> Result<QueryHistoricalInfoResponse, NyxdError> {
|
|
||||||
let path = Some("/cosmos.staking.v1beta1.Query/HistoricalInfo".to_owned());
|
|
||||||
|
|
||||||
let req = QueryHistoricalInfoRequest { height };
|
|
||||||
|
|
||||||
let res = self
|
|
||||||
.make_abci_query::<ProtoQueryHistoricalInfoRequest, ProtoQueryHistoricalInfoResponse>(
|
|
||||||
path,
|
|
||||||
req.into(),
|
|
||||||
)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
Ok(res.try_into()?)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn validator(
|
|
||||||
&self,
|
|
||||||
validator_addr: AccountId,
|
|
||||||
) -> Result<QueryValidatorResponse, NyxdError> {
|
|
||||||
let path = Some("/cosmos.staking.v1beta1.Query/Validator".to_owned());
|
|
||||||
|
|
||||||
let req = QueryValidatorRequest { validator_addr };
|
|
||||||
|
|
||||||
let res = self
|
|
||||||
.make_abci_query::<ProtoQueryValidatorRequest, ProtoQueryValidatorResponse>(
|
|
||||||
path,
|
|
||||||
req.into(),
|
|
||||||
)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
Ok(res.try_into()?)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn validators(
|
|
||||||
&self,
|
|
||||||
status: String,
|
|
||||||
pagination: Option<PageRequest>,
|
|
||||||
) -> Result<QueryValidatorsResponse, NyxdError> {
|
|
||||||
let path = Some("/cosmos.staking.v1beta1.Query/Validators".to_owned());
|
|
||||||
|
|
||||||
let req = QueryValidatorsRequest { status, pagination };
|
|
||||||
|
|
||||||
let res = self
|
|
||||||
.make_abci_query::<ProtoQueryValidatorsRequest, ProtoQueryValidatorsResponse>(
|
|
||||||
path,
|
|
||||||
req.into(),
|
|
||||||
)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
Ok(res.try_into()?)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
|
|
||||||
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
|
|
||||||
impl<T> StakingQueryClient for T where T: CosmWasmClient {}
|
|
||||||
@@ -11,7 +11,7 @@ pub mod gas_price;
|
|||||||
|
|
||||||
pub type GasAdjustment = f32;
|
pub type GasAdjustment = f32;
|
||||||
|
|
||||||
pub const DEFAULT_SIMULATED_GAS_MULTIPLIER: GasAdjustment = 1.5;
|
pub const DEFAULT_SIMULATED_GAS_MULTIPLIER: GasAdjustment = 1.3;
|
||||||
|
|
||||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||||
pub struct AutoFeeGrant {
|
pub struct AutoFeeGrant {
|
||||||
|
|||||||
@@ -1,13 +0,0 @@
|
|||||||
// Copyright 2023 - Nym Technologies SA <contact@nymtech.net>
|
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
use crate::nyxd::TxResponse;
|
|
||||||
|
|
||||||
pub fn find_tx_attribute(tx: &TxResponse, event_type: &str, attribute_key: &str) -> Option<String> {
|
|
||||||
let event = tx.tx_result.events.iter().find(|e| e.kind == event_type)?;
|
|
||||||
let attribute = event
|
|
||||||
.attributes
|
|
||||||
.iter()
|
|
||||||
.find(|attr| attr.key == attribute_key)?;
|
|
||||||
Some(attribute.value.clone())
|
|
||||||
}
|
|
||||||
@@ -29,41 +29,29 @@ use tendermint_rpc::endpoint::*;
|
|||||||
use tendermint_rpc::{Error as TendermintRpcError, Order};
|
use tendermint_rpc::{Error as TendermintRpcError, Order};
|
||||||
use url::Url;
|
use url::Url;
|
||||||
|
|
||||||
pub use crate::nyxd::{
|
pub use crate::nyxd::cosmwasm_client::client_traits::{CosmWasmClient, SigningCosmWasmClient};
|
||||||
cosmwasm_client::{
|
pub use crate::nyxd::fee::Fee;
|
||||||
client_traits::{CosmWasmClient, SigningCosmWasmClient},
|
|
||||||
module_traits::{self, StakingQueryClient},
|
|
||||||
},
|
|
||||||
fee::Fee,
|
|
||||||
};
|
|
||||||
pub use crate::rpc::TendermintRpcClient;
|
pub use crate::rpc::TendermintRpcClient;
|
||||||
pub use coin::Coin;
|
pub use coin::Coin;
|
||||||
pub use cosmrs::{
|
pub use cosmrs::bank::MsgSend;
|
||||||
bank::MsgSend,
|
pub use cosmrs::tendermint::abci::{response::DeliverTx, Event, EventAttribute};
|
||||||
bip32,
|
pub use cosmrs::tendermint::block::Height;
|
||||||
crypto::PublicKey,
|
pub use cosmrs::tendermint::hash::{self, Algorithm, Hash};
|
||||||
query::{PageRequest, PageResponse},
|
pub use cosmrs::tendermint::validator::Info as TendermintValidatorInfo;
|
||||||
tendermint::{
|
pub use cosmrs::tendermint::Time as TendermintTime;
|
||||||
abci::{response::DeliverTx, types::ExecTxResult, Event, EventAttribute},
|
pub use cosmrs::tx::Msg;
|
||||||
block::Height,
|
pub use cosmrs::tx::{self};
|
||||||
hash::{self, Algorithm, Hash},
|
pub use cosmrs::Coin as CosmosCoin;
|
||||||
validator::Info as TendermintValidatorInfo,
|
pub use cosmrs::Gas;
|
||||||
Time as TendermintTime,
|
pub use cosmrs::{bip32, AccountId, Denom};
|
||||||
},
|
|
||||||
tx::{self, Msg},
|
|
||||||
AccountId, Any, Coin as CosmosCoin, Denom, Gas,
|
|
||||||
};
|
|
||||||
pub use cosmwasm_std::Coin as CosmWasmCoin;
|
pub use cosmwasm_std::Coin as CosmWasmCoin;
|
||||||
pub use cw2;
|
|
||||||
pub use cw3;
|
|
||||||
pub use cw4;
|
|
||||||
pub use cw_controllers;
|
|
||||||
pub use fee::{gas_price::GasPrice, GasAdjustable, GasAdjustment};
|
pub use fee::{gas_price::GasPrice, GasAdjustable, GasAdjustment};
|
||||||
pub use tendermint_rpc::{
|
pub use tendermint_rpc::{
|
||||||
endpoint::{tx::Response as TxResponse, validators::Response as ValidatorResponse},
|
endpoint::{tx::Response as TxResponse, validators::Response as ValidatorResponse},
|
||||||
query::Query,
|
query::Query,
|
||||||
Paging, Request, Response, SimpleRequest,
|
Paging,
|
||||||
};
|
};
|
||||||
|
pub use tendermint_rpc::{Request, Response, SimpleRequest};
|
||||||
|
|
||||||
#[cfg(feature = "http-client")]
|
#[cfg(feature = "http-client")]
|
||||||
use crate::http_client;
|
use crate::http_client;
|
||||||
@@ -77,7 +65,6 @@ pub mod contract_traits;
|
|||||||
pub mod cosmwasm_client;
|
pub mod cosmwasm_client;
|
||||||
pub mod error;
|
pub mod error;
|
||||||
pub mod fee;
|
pub mod fee;
|
||||||
pub mod helpers;
|
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct Config {
|
pub struct Config {
|
||||||
@@ -103,14 +90,6 @@ impl Config {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TryFrom<NymNetworkDetails> for Config {
|
|
||||||
type Error = NyxdError;
|
|
||||||
|
|
||||||
fn try_from(value: NymNetworkDetails) -> Result<Self, Self::Error> {
|
|
||||||
Config::try_from_nym_network_details(&value)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct NyxdClient<C, S = NoSigner> {
|
pub struct NyxdClient<C, S = NoSigner> {
|
||||||
client: MaybeSigningClient<C, S>,
|
client: MaybeSigningClient<C, S>,
|
||||||
@@ -395,11 +374,7 @@ where
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn simulate<I, M>(
|
pub async fn simulate<I, M>(&self, messages: I) -> Result<SimulateResponse, NyxdError>
|
||||||
&self,
|
|
||||||
messages: I,
|
|
||||||
memo: impl Into<String> + Send + 'static,
|
|
||||||
) -> Result<SimulateResponse, NyxdError>
|
|
||||||
where
|
where
|
||||||
I: IntoIterator<Item = M> + Send,
|
I: IntoIterator<Item = M> + Send,
|
||||||
M: Msg,
|
M: Msg,
|
||||||
@@ -414,7 +389,7 @@ where
|
|||||||
.map_err(|_| {
|
.map_err(|_| {
|
||||||
NyxdError::SerializationError("custom simulate messages".to_owned())
|
NyxdError::SerializationError("custom simulate messages".to_owned())
|
||||||
})?,
|
})?,
|
||||||
memo,
|
"simulating execution of transactions",
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
@@ -742,7 +717,7 @@ where
|
|||||||
where
|
where
|
||||||
H: Into<Height> + Send,
|
H: Into<Height> + Send,
|
||||||
{
|
{
|
||||||
TendermintRpcClient::validators(&self.client, height, paging).await
|
self.client.validators(height, paging).await
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn latest_consensus_params(
|
async fn latest_consensus_params(
|
||||||
@@ -817,6 +792,14 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[async_trait]
|
||||||
|
impl<C, S> CosmWasmClient for NyxdClient<C, S>
|
||||||
|
where
|
||||||
|
C: TendermintRpcClient + Send + Sync,
|
||||||
|
S: Send + Sync,
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
impl<C, S> OfflineSigner for NyxdClient<C, S>
|
impl<C, S> OfflineSigner for NyxdClient<C, S>
|
||||||
where
|
where
|
||||||
S: OfflineSigner,
|
S: OfflineSigner,
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ where
|
|||||||
U: TryInto<HttpClientUrl, Error = Error>,
|
U: TryInto<HttpClientUrl, Error = Error>,
|
||||||
{
|
{
|
||||||
HttpRpcClient::builder(url.try_into()?)
|
HttpRpcClient::builder(url.try_into()?)
|
||||||
.compat_mode(CompatMode::V0_37)
|
.compat_mode(CompatMode::V0_34)
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -36,8 +36,7 @@ pub struct ReqwestRpcClient {
|
|||||||
impl ReqwestRpcClient {
|
impl ReqwestRpcClient {
|
||||||
pub fn new(url: Url) -> Self {
|
pub fn new(url: Url) -> Self {
|
||||||
ReqwestRpcClient {
|
ReqwestRpcClient {
|
||||||
// after updating to nyxd 0.42 and thus updating to cometbft, the compat mode changed
|
compat: CompatMode::V0_34,
|
||||||
compat: CompatMode::V0_37,
|
|
||||||
inner: reqwest::Client::new(),
|
inner: reqwest::Client::new(),
|
||||||
url,
|
url,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ name = "nym-coconut-interface"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Crutch library until there is proper SerDe support for coconut structs"
|
description = "Crutch library until there is proper SerDe support for coconut structs"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bs58 = "0.4.0"
|
bs58 = "0.4.0"
|
||||||
|
|||||||
@@ -21,14 +21,10 @@ pub use nym_coconut::{
|
|||||||
pub struct Credential {
|
pub struct Credential {
|
||||||
#[getset(get = "pub")]
|
#[getset(get = "pub")]
|
||||||
n_params: u32,
|
n_params: u32,
|
||||||
|
|
||||||
#[getset(get = "pub")]
|
#[getset(get = "pub")]
|
||||||
theta: Theta,
|
theta: Theta,
|
||||||
|
|
||||||
voucher_value: u64,
|
voucher_value: u64,
|
||||||
|
|
||||||
voucher_info: String,
|
voucher_info: String,
|
||||||
|
|
||||||
#[getset(get = "pub")]
|
#[getset(get = "pub")]
|
||||||
epoch_id: u64,
|
epoch_id: u64,
|
||||||
}
|
}
|
||||||
@@ -68,12 +64,14 @@ impl Credential {
|
|||||||
|
|
||||||
pub fn verify(&self, verification_key: &VerificationKey) -> bool {
|
pub fn verify(&self, verification_key: &VerificationKey) -> bool {
|
||||||
let params = Parameters::new(self.n_params).unwrap();
|
let params = Parameters::new(self.n_params).unwrap();
|
||||||
|
let public_attributes = [
|
||||||
let hashed_value = hash_to_scalar(self.voucher_value.to_string());
|
self.voucher_value.to_string().as_bytes(),
|
||||||
let hashed_info = hash_to_scalar(&self.voucher_info);
|
self.voucher_info.as_bytes(),
|
||||||
let public_attributes = &[&hashed_value, &hashed_info];
|
]
|
||||||
|
.iter()
|
||||||
nym_coconut::verify_credential(¶ms, verification_key, &self.theta, public_attributes)
|
.map(hash_to_scalar)
|
||||||
|
.collect::<Vec<Attribute>>();
|
||||||
|
nym_coconut::verify_credential(¶ms, verification_key, &self.theta, &public_attributes)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn as_bytes(&self) -> Vec<u8> {
|
pub fn as_bytes(&self) -> Vec<u8> {
|
||||||
@@ -182,8 +180,8 @@ mod tests {
|
|||||||
¶ms,
|
¶ms,
|
||||||
&verification_key,
|
&verification_key,
|
||||||
&signature,
|
&signature,
|
||||||
&serial_number,
|
serial_number,
|
||||||
&binding_number,
|
binding_number,
|
||||||
)
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
let credential = Credential::new(4, theta, voucher_value, voucher_info, 42);
|
let credential = Credential::new(4, theta, voucher_value, voucher_info, 42);
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ name = "nym-cli-commands"
|
|||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
@@ -22,7 +21,7 @@ rand = {version = "0.6", features = ["std"] }
|
|||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = { workspace = true }
|
serde_json = { workspace = true }
|
||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
time = { workspace = true, features = ["parsing", "formatting"] }
|
time = { version = "0.3.6", features = ["parsing", "formatting"] }
|
||||||
toml = "0.5.6"
|
toml = "0.5.6"
|
||||||
url = { workspace = true }
|
url = { workspace = true }
|
||||||
tap = "1"
|
tap = "1"
|
||||||
|
|||||||
@@ -26,10 +26,6 @@ pub struct Args {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub async fn execute(args: Args, client: SigningClient) -> anyhow::Result<()> {
|
pub async fn execute(args: Args, client: SigningClient) -> anyhow::Result<()> {
|
||||||
if args.amount == 0 {
|
|
||||||
bail!("did not specify credential amount")
|
|
||||||
}
|
|
||||||
|
|
||||||
let loaded = CommonConfigsWrapper::try_load(args.client_config)?;
|
let loaded = CommonConfigsWrapper::try_load(args.client_config)?;
|
||||||
|
|
||||||
if let Ok(id) = loaded.try_get_id() {
|
if let Ok(id) = loaded.try_get_id() {
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ name = "nym-config"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@@ -18,4 +17,4 @@ url = { workspace = true }
|
|||||||
nym-network-defaults = { path = "../network-defaults" }
|
nym-network-defaults = { path = "../network-defaults" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["dirs"]
|
default = ["dirs"]
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
use handlebars::{Handlebars, TemplateRenderError};
|
use handlebars::{Handlebars, TemplateRenderError};
|
||||||
use serde::de::DeserializeOwned;
|
use serde::de::DeserializeOwned;
|
||||||
use serde::Serialize;
|
use serde::Serialize;
|
||||||
use std::fs::{create_dir_all, File};
|
use std::fs::File;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use std::path::{Path, PathBuf};
|
use std::path::{Path, PathBuf};
|
||||||
use std::{fs, io};
|
use std::{fs, io};
|
||||||
@@ -72,22 +72,16 @@ where
|
|||||||
C: NymConfigTemplate,
|
C: NymConfigTemplate,
|
||||||
P: AsRef<Path>,
|
P: AsRef<Path>,
|
||||||
{
|
{
|
||||||
let path = path.as_ref();
|
log::debug!("trying to save config file to {}", path.as_ref().display());
|
||||||
log::info!("saving config file to {}", path.display());
|
let file = File::create(path.as_ref())?;
|
||||||
|
|
||||||
if let Some(parent) = path.parent() {
|
// TODO: check for whether any of our configs stores anything sensitive
|
||||||
create_dir_all(parent)?;
|
|
||||||
}
|
|
||||||
|
|
||||||
let file = File::create(path)?;
|
|
||||||
|
|
||||||
// TODO: check for whether any of our configs store anything sensitive
|
|
||||||
// and change that to 0o644 instead
|
// and change that to 0o644 instead
|
||||||
#[cfg(target_family = "unix")]
|
#[cfg(target_family = "unix")]
|
||||||
{
|
{
|
||||||
use std::os::unix::fs::PermissionsExt;
|
use std::os::unix::fs::PermissionsExt;
|
||||||
|
|
||||||
let mut perms = fs::metadata(path)?.permissions();
|
let mut perms = fs::metadata(path.as_ref())?.permissions();
|
||||||
perms.set_mode(0o600);
|
perms.set_mode(0o600);
|
||||||
fs::set_permissions(path, perms)?;
|
fs::set_permissions(path, perms)?;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
name = "nym-coconut-bandwidth-contract-common"
|
name = "nym-coconut-bandwidth-contract-common"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@@ -13,4 +12,4 @@ cw2 = { workspace = true, optional = true }
|
|||||||
nym-multisig-contract-common = { path = "../multisig-contract" }
|
nym-multisig-contract-common = { path = "../multisig-contract" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
schema = ["cw2"]
|
schema = ["cw2"]
|
||||||
@@ -4,9 +4,6 @@
|
|||||||
// event types
|
// event types
|
||||||
pub const DEPOSITED_FUNDS_EVENT_TYPE: &str = "deposited-funds";
|
pub const DEPOSITED_FUNDS_EVENT_TYPE: &str = "deposited-funds";
|
||||||
|
|
||||||
// a 'wasm-' prefix is added to all cosmwasm events
|
|
||||||
pub const COSMWASM_DEPOSITED_FUNDS_EVENT_TYPE: &str = "wasm-deposited-funds";
|
|
||||||
|
|
||||||
// attributes that are used in multiple places
|
// attributes that are used in multiple places
|
||||||
pub const DEPOSIT_VALUE: &str = "deposit-value";
|
pub const DEPOSIT_VALUE: &str = "deposit-value";
|
||||||
pub const DEPOSIT_INFO: &str = "deposit-info";
|
pub const DEPOSIT_INFO: &str = "deposit-info";
|
||||||
|
|||||||
@@ -142,7 +142,7 @@ pub fn funds_from_cosmos_msgs(msgs: Vec<CosmosMsg>) -> Option<Coin> {
|
|||||||
contract_addr: _,
|
contract_addr: _,
|
||||||
msg,
|
msg,
|
||||||
funds: _,
|
funds: _,
|
||||||
})) = msgs.first()
|
})) = msgs.get(0)
|
||||||
{
|
{
|
||||||
if let Ok(ExecuteMsg::ReleaseFunds { funds }) = from_binary::<ExecuteMsg>(msg) {
|
if let Ok(ExecuteMsg::ReleaseFunds { funds }) = from_binary::<ExecuteMsg>(msg) {
|
||||||
return Some(funds);
|
return Some(funds);
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
name = "nym-coconut-dkg-common"
|
name = "nym-coconut-dkg-common"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@@ -15,4 +14,4 @@ contracts-common = { path = "../contracts-common", package = "nym-contracts-comm
|
|||||||
nym-multisig-contract-common = { path = "../multisig-contract" }
|
nym-multisig-contract-common = { path = "../multisig-contract" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
schema = []
|
schema = []
|
||||||
@@ -174,19 +174,17 @@ impl Display for EpochState {
|
|||||||
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
||||||
match self {
|
match self {
|
||||||
EpochState::PublicKeySubmission { resharing } => {
|
EpochState::PublicKeySubmission { resharing } => {
|
||||||
write!(f, "PublicKeySubmission (resharing: {resharing})")
|
write!(f, "PublicKeySubmission with resharing {resharing}")
|
||||||
}
|
|
||||||
EpochState::DealingExchange { resharing } => {
|
|
||||||
write!(f, "DealingExchange (resharing: {resharing})")
|
|
||||||
}
|
}
|
||||||
|
EpochState::DealingExchange { resharing } => write!(f, "DealingExchange {resharing}"),
|
||||||
EpochState::VerificationKeySubmission { resharing } => {
|
EpochState::VerificationKeySubmission { resharing } => {
|
||||||
write!(f, "VerificationKeySubmission (resharing: {resharing})")
|
write!(f, "VerificationKeySubmission with resharing {resharing}")
|
||||||
}
|
}
|
||||||
EpochState::VerificationKeyValidation { resharing } => {
|
EpochState::VerificationKeyValidation { resharing } => {
|
||||||
write!(f, "VerificationKeyValidation (resharing: {resharing})")
|
write!(f, "VerificationKeyValidation with resharing {resharing}")
|
||||||
}
|
}
|
||||||
EpochState::VerificationKeyFinalization { resharing } => {
|
EpochState::VerificationKeyFinalization { resharing } => {
|
||||||
write!(f, "VerificationKeyFinalization (resharing: {resharing})")
|
write!(f, "VerificationKeyFinalization with resharing {resharing}")
|
||||||
}
|
}
|
||||||
EpochState::InProgress => write!(f, "InProgress"),
|
EpochState::InProgress => write!(f, "InProgress"),
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ pub fn owner_from_cosmos_msgs(msgs: &[CosmosMsg]) -> Option<Addr> {
|
|||||||
contract_addr: _,
|
contract_addr: _,
|
||||||
msg,
|
msg,
|
||||||
funds: _,
|
funds: _,
|
||||||
})) = msgs.first()
|
})) = msgs.get(0)
|
||||||
{
|
{
|
||||||
if let Ok(ExecuteMsg::VerifyVerificationKeyShare { owner, .. }) =
|
if let Ok(ExecuteMsg::VerifyVerificationKeyShare { owner, .. }) =
|
||||||
from_binary::<ExecuteMsg>(msg)
|
from_binary::<ExecuteMsg>(msg)
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
|
|
||||||
use cosmwasm_schema::cw_serde;
|
use cosmwasm_schema::cw_serde;
|
||||||
use cosmwasm_std::Decimal;
|
use cosmwasm_std::Decimal;
|
||||||
use cosmwasm_std::OverflowError;
|
|
||||||
use cosmwasm_std::Uint128;
|
use cosmwasm_std::Uint128;
|
||||||
use serde::de::Error;
|
use serde::de::Error;
|
||||||
use serde::{Deserialize, Deserializer};
|
use serde::{Deserialize, Deserializer};
|
||||||
@@ -72,10 +71,6 @@ impl Percent {
|
|||||||
// we know the cast from u128 to u8 is a safe one since the internal value must be within 0 - 1 range
|
// we know the cast from u128 to u8 is a safe one since the internal value must be within 0 - 1 range
|
||||||
truncate_decimal(hundred * self.0).u128() as u8
|
truncate_decimal(hundred * self.0).u128() as u8
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn checked_pow(&self, exp: u32) -> Result<Self, OverflowError> {
|
|
||||||
self.0.checked_pow(exp).map(Percent)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Display for Percent {
|
impl Display for Percent {
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
name = "nym-ephemera-common"
|
name = "nym-ephemera-common"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@@ -14,4 +13,4 @@ cw-utils = { workspace = true }
|
|||||||
contracts-common = { path = "../contracts-common", package = "nym-contracts-common" }
|
contracts-common = { path = "../contracts-common", package = "nym-contracts-common" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
schema = []
|
schema = []
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
name = "nym-group-contract-common"
|
name = "nym-group-contract-common"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|||||||
@@ -25,12 +25,12 @@ humantime-serde = "1.1.1"
|
|||||||
|
|
||||||
# TO CHECK WHETHER STILL NEEDED:
|
# TO CHECK WHETHER STILL NEEDED:
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
time = { workspace = true, features = ["parsing", "formatting"] }
|
time = { version = "0.3.6", features = ["parsing", "formatting"] }
|
||||||
ts-rs = { workspace = true, optional = true }
|
ts-rs = { workspace = true, optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rand_chacha = "0.3"
|
rand_chacha = "0.3"
|
||||||
time = { workspace = true, features = ["serde", "macros"] }
|
time = { version = "0.3.5", features = ["serde", "macros"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
name = "nym-multisig-contract-common"
|
name = "nym-multisig-contract-common"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
name = "nym-name-service-common"
|
name = "nym-name-service-common"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@@ -17,4 +16,4 @@ serde = { workspace = true, features = ["derive"] }
|
|||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
schema = ["cw2"]
|
schema = ["cw2"]
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
name = "nym-service-provider-directory-common"
|
name = "nym-service-provider-directory-common"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@@ -16,4 +15,4 @@ nym-contracts-common = { path = "../contracts-common", version = "0.5.0" }
|
|||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
schema = ["cw2"]
|
schema = ["cw2"]
|
||||||
@@ -49,7 +49,7 @@ impl Account {
|
|||||||
|
|
||||||
pub fn period_duration(&self) -> Result<u64, VestingContractError> {
|
pub fn period_duration(&self) -> Result<u64, VestingContractError> {
|
||||||
self.periods
|
self.periods
|
||||||
.first()
|
.get(0)
|
||||||
.ok_or(VestingContractError::UnpopulatedVestingPeriods {
|
.ok_or(VestingContractError::UnpopulatedVestingPeriods {
|
||||||
owner: self.owner_address.clone(),
|
owner: self.owner_address.clone(),
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
name = "nym-credential-storage"
|
name = "nym-credential-storage"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@@ -14,14 +13,14 @@ thiserror = { workspace = true }
|
|||||||
tokio = { version = "1.24.1", features = ["sync"]}
|
tokio = { version = "1.24.1", features = ["sync"]}
|
||||||
|
|
||||||
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.sqlx]
|
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.sqlx]
|
||||||
workspace = true
|
version = "0.5"
|
||||||
features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"]
|
features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"]
|
||||||
|
|
||||||
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.tokio]
|
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.tokio]
|
||||||
workspace = true
|
version = "1.24.1"
|
||||||
features = [ "rt-multi-thread", "net", "signal", "fs" ]
|
features = [ "rt-multi-thread", "net", "signal", "fs" ]
|
||||||
|
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"] }
|
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"] }
|
||||||
tokio = { version = "1.24.1", features = ["rt-multi-thread", "macros"] }
|
tokio = { version = "1.24.1", features = ["rt-multi-thread", "macros"] }
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
name = "nym-credential-utils"
|
name = "nym-credential-utils"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license.workspace = true
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user