From 2b11921eefa03c87ce97883ac7a7f8c6007810b1 Mon Sep 17 00:00:00 2001 From: Oleksandr Tkachenko Date: Thu, 25 Jul 2024 09:55:40 +0200 Subject: [PATCH] fix links to the now-merged Schnorr part of the spec --- motoko/threshold-schnorr/README.md | 2 +- rust/basic_bitcoin/README.md | 12 ++++++++---- rust/threshold-schnorr/README.md | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/motoko/threshold-schnorr/README.md b/motoko/threshold-schnorr/README.md index 8d90ca162..0a94899e3 100644 --- a/motoko/threshold-schnorr/README.md +++ b/motoko/threshold-schnorr/README.md @@ -10,7 +10,7 @@ keywords: [advanced, motoko, threshold schnorr, schnorr, signature] We present a minimal example canister smart contract for showcasing the [threshold -Schnorr](https://org5p-7iaaa-aaaak-qckna-cai.icp0.io/docs#ic-sign_with_schnorr) +Schnorr](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-sign_with_schnorr) API. The example canister is a signing oracle that creates Schnorr signatures with diff --git a/rust/basic_bitcoin/README.md b/rust/basic_bitcoin/README.md index 4863442c2..b296d51a3 100644 --- a/rust/basic_bitcoin/README.md +++ b/rust/basic_bitcoin/README.md @@ -13,7 +13,9 @@ This tutorial will walk you through how to deploy a sample [canister smart contr This example internally leverages the [ECDSA API](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-ecdsa_public_key), -[Schnorr API](https://org5p-7iaaa-aaaak-qckna-cai.icp0.io/docs#ic-sign_with_schnorr), and [Bitcoin +[Schnorr +API](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-sign_with_schnorr), +and [Bitcoin API](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-bitcoin-api) of the Internet Computer. @@ -200,9 +202,11 @@ The `send_from_${type}` endpoint can send bitcoin by: The fee percentiles obtained from step 1 is used to set an appropriate fee. 4. Signing the inputs of the transaction using the [sign_with_ecdsa - API](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-method-sign_with_ecdsa)/\ - [sign_with_schnorr](https://org5p-7iaaa-aaaak-qckna-cai.icp0.io/docs#ic-sign_with_schnorr). -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). + API](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-sign_with_ecdsa)/\ + [sign_with_schnorr](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-sign_with_schnorr). +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-bitcoin_send_transaction). This canister's `send_from_${type}` endpoint returns the ID of the transaction it sent to the network. You can track the status of this transaction using a diff --git a/rust/threshold-schnorr/README.md b/rust/threshold-schnorr/README.md index 6e39c33fe..5982fcc98 100644 --- a/rust/threshold-schnorr/README.md +++ b/rust/threshold-schnorr/README.md @@ -10,7 +10,7 @@ keywords: [advanced, rust, threshold schnorr, schnorr, signature] We present a minimal example canister smart contract for showcasing the [threshold -Schnorr](https://org5p-7iaaa-aaaak-qckna-cai.icp0.io/docs#ic-sign_with_schnorr) +Schnorr](https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-sign_with_schnorr) API. The example canister is a signing oracle that creates Schnorr signatures with