Skip to content

Commit 56899ff

Browse files
Change Aleo SDK to Provable SDK in license headers
1 parent 0dec700 commit 56899ff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+166
-166
lines changed

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ labels: bug
88
## 🐛 Bug Report
99

1010
<!--
11-
What's the bug in the Aleo SDK that you found?
11+
What's the bug in the Provable SDK that you found?
1212
How serious is this bug and what is affected?
1313
14-
To report a security issue in the Aleo SDK, please email [email protected].
14+
To report a security issue in the Provable SDK, please email [email protected].
1515
-->
1616

1717
(Write your description here)
1818

1919
## Steps to Reproduce
2020

21-
<!-- How do I reproduce this issue in the Aleo SDK? -->
21+
<!-- How do I reproduce this issue in the Provable SDK? -->
2222

2323
#### Code snippet to reproduce
2424

@@ -35,14 +35,14 @@ labels: bug
3535
## Expected Behavior
3636

3737
<!--
38-
What was supposed to happen in the Aleo SDK?
38+
What was supposed to happen in the Provable SDK?
3939
What happened instead?
4040
-->
4141

4242
(Write what you expected to happen here)
4343

4444
## Your Environment
4545

46-
- <!-- Aleo SDK Version -->
46+
- <!-- Provable SDK Version -->
4747
- <!-- Rust Version -->
4848
- <!-- Computer OS -->

.github/ISSUE_TEMPLATE/documentation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ labels: 'documentation'
88
## 📚 Documentation
99

1010
<!--
11-
Did you find a mistake in the Aleo SDK documentation?
12-
Is there documentation about the Aleo SDK that's missing?
11+
Did you find a mistake in the Provable SDK documentation?
12+
Is there documentation about the Provable SDK that's missing?
1313
-->
1414

1515
(Write your answer here.)

.github/ISSUE_TEMPLATE/feature.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ labels: feature
88
## 🚀 Feature
99

1010
<!--
11-
What is the feature you would like to see in the Aleo SDK?
11+
What is the feature you would like to see in the Provable SDK?
1212
-->
1313

1414
(Write your description here)
1515

1616
## Motivation
1717

1818
<!--
19-
Why should this feature be implemented in the Aleo SDK?
20-
How would this feature be used in the Aleo SDK?
19+
Why should this feature be implemented in the Provable SDK?
20+
How would this feature be used in the Provable SDK?
2121
2222
Is this feature request related to a problem? If so, please describe.
2323
Please link to any relevant issues or other PRs!
@@ -28,8 +28,8 @@ labels: feature
2828
## Implementation
2929

3030
<!--
31-
What needs to be built for the feature to be supported in the Aleo SDK?
32-
What components of the Aleo SDK will be affected by this design (if any)?
31+
What needs to be built for the feature to be supported in the Provable SDK?
32+
What components of the Provable SDK will be affected by this design (if any)?
3333
How should this feature be implemented?
3434
-->
3535

.github/ISSUE_TEMPLATE/proposal.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22
name: 💥 Proposal
3-
about: Propose a non-trivial change to the Aleo SDK
3+
about: Propose a non-trivial change to the Provable SDK
44
title: "[Proposal]"
55
labels: 'proposal'
66
---
77

88
## 💥 Proposal
99

1010
<!--
11-
What is your proposal for the Aleo SDK?
12-
What are the implications of this proposal to the Aleo SDK?
13-
Does your proposal affect other aspects of the Aleo SDK as well?
11+
What is your proposal for the Provable SDK?
12+
What are the implications of this proposal to the Provable SDK?
13+
Does your proposal affect other aspects of the Provable SDK as well?
1414
-->
1515

1616
(Write your proposal here)

create-leo-app/template-extension/src/service_worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async function createOffscreen(path) {
1313
await chrome.offscreen.createDocument({
1414
url: offscreenUrl,
1515
reasons: ["WORKERS"],
16-
justification: "Top-level await and Workers cannot be used in service workers, but they are necessary to use the Aleo SDK.",
16+
justification: "Top-level await and Workers cannot be used in service workers, but they are necessary to use the Provable SDK.",
1717
});
1818
}
1919

sdk/docs/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

wasm/src/account/compute_key.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
// Copyright (C) 2019-2025 Provable Inc.
2-
// This file is part of the Aleo SDK library.
2+
// This file is part of the Provable SDK library.
33

4-
// The Aleo SDK library is free software: you can redistribute it and/or modify
4+
// The Provable SDK library is free software: you can redistribute it and/or modify
55
// it under the terms of the GNU General Public License as published by
66
// the Free Software Foundation, either version 3 of the License, or
77
// (at your option) any later version.
88

9-
// The Aleo SDK library is distributed in the hope that it will be useful,
9+
// The Provable SDK library is distributed in the hope that it will be useful,
1010
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1111
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1212
// GNU General Public License for more details.
1313

1414
// You should have received a copy of the GNU General Public License
15-
// along with the Aleo SDK library. If not, see <https://www.gnu.org/licenses/>.
15+
// along with the Provable SDK library. If not, see <https://www.gnu.org/licenses/>.
1616

1717
use super::PrivateKey;
1818
use crate::{

wasm/src/account/encryptor.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
// the Free Software Foundation, either version 3 of the License, or
77
// (at your option) any later version.
88

9-
// The Aleo SDK library is distributed in the hope that it will be useful,
9+
// The Provable SDK library is distributed in the hope that it will be useful,
1010
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1111
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1212
// GNU General Public License for more details.
1313

1414
// You should have received a copy of the GNU General Public License
15-
// along with the Aleo SDK library. If not, see <https://www.gnu.org/licenses/>.
15+
// along with the Provable SDK library. If not, see <https://www.gnu.org/licenses/>.
1616

1717
use crate::types::native::{
1818
CiphertextNative,

wasm/src/account/graph_key.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
// Copyright (C) 2019-2025 Provable Inc.
2-
// This file is part of the Aleo SDK library.
2+
// This file is part of the Provable SDK library.
33

4-
// The Aleo SDK library is free software: you can redistribute it and/or modify
4+
// The Provable SDK library is free software: you can redistribute it and/or modify
55
// it under the terms of the GNU General Public License as published by
66
// the Free Software Foundation, either version 3 of the License, or
77
// (at your option) any later version.
88

9-
// The Aleo SDK library is distributed in the hope that it will be useful,
9+
// The Provable SDK library is distributed in the hope that it will be useful,
1010
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1111
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1212
// GNU General Public License for more details.
1313

1414
// You should have received a copy of the GNU General Public License
15-
// along with the Aleo SDK library. If not, see <https://www.gnu.org/licenses/>.
15+
// along with the Provable SDK library. If not, see <https://www.gnu.org/licenses/>.
1616

1717
use super::ViewKey;
1818
use crate::types::{Field, native::GraphKeyNative};

wasm/src/ledger/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
// Copyright (C) 2019-2025 Provable Inc.
2-
// This file is part of the Aleo SDK library.
2+
// This file is part of the Provable SDK library.
33

4-
// The Aleo SDK library is free software: you can redistribute it and/or modify
4+
// The Provable SDK library is free software: you can redistribute it and/or modify
55
// it under the terms of the GNU General Public License as published by
66
// the Free Software Foundation, either version 3 of the License, or
77
// (at your option) any later version.
88

9-
// The Aleo SDK library is distributed in the hope that it will be useful,
9+
// The Provable SDK library is distributed in the hope that it will be useful,
1010
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1111
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1212
// GNU General Public License for more details.
1313

1414
// You should have received a copy of the GNU General Public License
15-
// along with the Aleo SDK library. If not, see <https://www.gnu.org/licenses/>.
15+
// along with the Provable SDK library. If not, see <https://www.gnu.org/licenses/>.
1616

1717
pub mod transaction;
1818
pub use transaction::Transaction;

0 commit comments

Comments
 (0)