From 90f3a2631019d56c2e53e31aafc89efa0190234e Mon Sep 17 00:00:00 2001 From: Leo Kazmierczak Date: Fri, 30 Jun 2023 13:59:37 +0200 Subject: [PATCH 1/2] update icversion --- docs/developer-docs/integrations/icrc-1/deploy-new-token.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer-docs/integrations/icrc-1/deploy-new-token.md b/docs/developer-docs/integrations/icrc-1/deploy-new-token.md index 9c5aedb29d..50db51a2de 100644 --- a/docs/developer-docs/integrations/icrc-1/deploy-new-token.md +++ b/docs/developer-docs/integrations/icrc-1/deploy-new-token.md @@ -19,7 +19,7 @@ cd icrc1 ### Step 3: Then, you need to download the icrc-1 ledger image (.wasm file) and the icrc-1 ledger interface (.did file). ``` sh -export IC_VERSION=1612a202d030faa496e1694eed98be4179fca856 +export IC_VERSION=b9d14e71b857ceca7087b31f5a32618d25555f29 curl -o icrc1-ledger.wasm.gz "https://download.dfinity.systems/ic/$IC_VERSION/canisters/ic-icrc1-ledger.wasm.gz" curl -o icrc1-ledger.did "https://raw.githubusercontent.com/dfinity/ic/$IC_VERSION/rs/rosetta-api/icrc1/ledger/icrc1.did" gunzip icrc1-ledger.wasm.gz From 1cddf7515cba57cbc5604e3836f94bea9fbb2c68 Mon Sep 17 00:00:00 2001 From: Leo Kazmierczak Date: Fri, 30 Jun 2023 14:07:36 +0200 Subject: [PATCH 2/2] rename --- docs/developer-docs/integrations/icrc-1/deploy-new-token.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer-docs/integrations/icrc-1/deploy-new-token.md b/docs/developer-docs/integrations/icrc-1/deploy-new-token.md index 50db51a2de..8d49e44b45 100644 --- a/docs/developer-docs/integrations/icrc-1/deploy-new-token.md +++ b/docs/developer-docs/integrations/icrc-1/deploy-new-token.md @@ -21,7 +21,7 @@ cd icrc1 ``` sh export IC_VERSION=b9d14e71b857ceca7087b31f5a32618d25555f29 curl -o icrc1-ledger.wasm.gz "https://download.dfinity.systems/ic/$IC_VERSION/canisters/ic-icrc1-ledger.wasm.gz" -curl -o icrc1-ledger.did "https://raw.githubusercontent.com/dfinity/ic/$IC_VERSION/rs/rosetta-api/icrc1/ledger/icrc1.did" +curl -o icrc1-ledger.did "https://raw.githubusercontent.com/dfinity/ic/$IC_VERSION/rs/rosetta-api/icrc1/ledger/ledger.did" gunzip icrc1-ledger.wasm.gz ```