Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk-abi/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions sdk-abi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Copyright (C) 2024 Provable Inc.
# Copyright (C) 2019-2026 Provable Inc.
# SPDX-License-Identifier: GPL-3.0-or-later

[workspace] # Prevent parent workspace capture

[package]
name = "aleo-abi"
version = "0.2.0"
version = "0.2.1"
edition = "2024"
license = "GPL-3.0-or-later"
description = "Python bindings for ABI generation from Aleo bytecode (via Leo's leo-abi crate)"
Expand Down
2 changes: 1 addition & 1 deletion sdk-abi/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "aleo-contract-abi-generator"
version = "0.2.0"
version = "0.2.1"
description = "Python bindings for ABI generation from Aleo bytecode"
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
Expand Down
2 changes: 1 addition & 1 deletion sdk-abi/python/aleo_abi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2024 Provable Inc.
# Copyright (C) 2019-2026 Provable Inc.
# SPDX-License-Identifier: GPL-3.0-or-later
"""ABI generation and compatibility checking for Aleo programs."""

Expand Down
2 changes: 1 addition & 1 deletion sdk-abi/python/tests/test_abi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2024 Provable Inc.
# Copyright (C) 2019-2026 Provable Inc.
# SPDX-License-Identifier: GPL-3.0-or-later
"""Tests for the aleo-contract-abi-generator package."""

Expand Down
2 changes: 1 addition & 1 deletion sdk-abi/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2024 Provable Inc.
// Copyright (C) 2019-2026 Provable Inc.
// SPDX-License-Identifier: GPL-3.0-or-later
//! Python bindings for leo-abi: ABI generation and compatibility checking for Aleo/Leo programs.

Expand Down
2 changes: 1 addition & 1 deletion sdk/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aleo"
authors = ["Konstantin Pandl", "Mike Turner", "Roman Proskuryakov"]
version = "0.2.0"
version = "0.2.1"
description = "A Python sdk for zero-knowledge cryptography based on Aleo"
edition = "2021"
license = "GPL-3.0-or-later"
Expand Down
4 changes: 2 additions & 2 deletions sdk/docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
# -- Project information

project = 'aleo'
copyright = '2023, AleoHQ'
copyright = '2019-2026, Provable Inc.'
author = 'kpp'

version = '0.2.0'
version = '0.2.1'

# -- General configuration

Expand Down
2 changes: 1 addition & 1 deletion sdk/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "aleo-sdk"
description = "Python SDK for building zero-knowledge apps and DeFi on the Aleo network"
version = "0.2.0"
version = "0.2.1"
readme = "Readme.md"
license = {file = "LICENSE.md"}
authors = [
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/aleo/abi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2024 Provable Inc.
# Copyright (C) 2019-2026 Provable Inc.
# SPDX-License-Identifier: GPL-3.0-or-later
# pyright: reportUnknownMemberType=false, reportUnknownVariableType=false, reportUnknownArgumentType=false
"""Integration hook: ABI generation via the aleo-contract-abi-generator package."""
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/tests/test_algorithms.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2019-2023 Aleo Systems Inc.
# Copyright (C) 2019-2026 Provable Inc.
# This file is part of the Aleo SDK library.

# The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/tests/test_records_extra.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2019-2023 Aleo Systems Inc.
# Copyright (C) 2019-2026 Provable Inc.
# This file is part of the Aleo SDK library.
# Tests for W4a: record-scanning parity (GraphKey, commitments, tags, RVK, arithmetic).
# Source notes: github.com/ProvableHQ/sdk@543b41e wasm/src/...
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/account/address.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/account/compute_key.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/account/graph_key.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/account/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/account/private_key.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/account/private_key_ciphertext.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/account/record.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/account/signature.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/account/text.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/account/view_key.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algebra/boolean.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algebra/field.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algebra/group.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algebra/integer.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algebra/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algebra/scalar.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algorithms/bhp/bhp1024.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algorithms/bhp/bhp256.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algorithms/bhp/bhp512.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algorithms/bhp/bhp768.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algorithms/bhp/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algorithms/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algorithms/pedersen/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algorithms/pedersen/pedersen128.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algorithms/pedersen/pedersen64.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algorithms/poseidon/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algorithms/poseidon/poseidon2.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algorithms/poseidon/poseidon4.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/algorithms/poseidon/poseidon8.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/credits/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// pyo3 0.20 macro expansion triggers this lint on newer rustc; remove after pyo3 >= 0.21 upgrade
#![allow(non_local_definitions)]

// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/network/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/authorization.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/deployment.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/dynamic_record.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.
//
// Licensed under GPL-3.0-or-later.
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/execution.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/execution_request.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/fee.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/identifier.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/literal.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/locator.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/metadata.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.
//
// Licensed under GPL-3.0-or-later.
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/offline_query.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.
//
// Licensed under GPL-3.0-or-later.
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/process.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/program.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/program_id.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/programs/proof.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Aleo SDK library.
//
// Licensed under GPL-3.0-or-later.
Expand Down
Loading
Loading