Skip to content

Commit 1d4b8a7

Browse files
authored
Merge pull request #945 from dfinity/alex/fix-schnorr-spec-links
chore: CRP-2532 fix links to the now-merged Schnorr part of the spec
2 parents 97a035f + 2b11921 commit 1d4b8a7

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

motoko/threshold-schnorr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords: [advanced, motoko, threshold schnorr, schnorr, signature]
1010

1111
We present a minimal example canister smart contract for showcasing the
1212
[threshold
13-
Schnorr](https://org5p-7iaaa-aaaak-qckna-cai.icp0.io/docs#ic-sign_with_schnorr)
13+
Schnorr](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-sign_with_schnorr)
1414
API.
1515

1616
The example canister is a signing oracle that creates Schnorr signatures with

rust/basic_bitcoin/README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ This tutorial will walk you through how to deploy a sample [canister smart contr
1313

1414
This example internally leverages the [ECDSA
1515
API](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-ecdsa_public_key),
16-
[Schnorr API](https://org5p-7iaaa-aaaak-qckna-cai.icp0.io/docs#ic-sign_with_schnorr), and [Bitcoin
16+
[Schnorr
17+
API](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-sign_with_schnorr),
18+
and [Bitcoin
1719
API](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-bitcoin-api)
1820
of the Internet Computer.
1921

@@ -200,9 +202,11 @@ The `send_from_${type}` endpoint can send bitcoin by:
200202
The fee percentiles obtained from step 1 is used to set an appropriate fee.
201203
4. Signing the inputs of the transaction using the
202204
[sign_with_ecdsa
203-
API](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-method-sign_with_ecdsa)/\
204-
[sign_with_schnorr](https://org5p-7iaaa-aaaak-qckna-cai.icp0.io/docs#ic-sign_with_schnorr).
205-
5. Sending the signed transaction to the Bitcoin network using the [bitcoin_send_transaction API](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-method-bitcoin_send_transaction).
205+
API](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-sign_with_ecdsa)/\
206+
[sign_with_schnorr](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-sign_with_schnorr).
207+
5. Sending the signed transaction to the Bitcoin network using the
208+
[bitcoin_send_transaction
209+
API](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-bitcoin_send_transaction).
206210

207211
This canister's `send_from_${type}` endpoint returns the ID of the transaction
208212
it sent to the network. You can track the status of this transaction using a

rust/threshold-schnorr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords: [advanced, rust, threshold schnorr, schnorr, signature]
1010

1111
We present a minimal example canister smart contract for showcasing the
1212
[threshold
13-
Schnorr](https://org5p-7iaaa-aaaak-qckna-cai.icp0.io/docs#ic-sign_with_schnorr)
13+
Schnorr](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-sign_with_schnorr)
1414
API.
1515

1616
The example canister is a signing oracle that creates Schnorr signatures with

0 commit comments

Comments
 (0)