From aed8e3b2a88480f1d0802356488a06c16f36cf54 Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Mon, 18 Nov 2024 12:52:28 +0100 Subject: [PATCH] fix: ic.did source (#749) # Motivation The `ic.did` file we use to generate the bindings for `@dfinity/ic-management` has been moved to the [portal](https://github.com/dfinity/portal/blob/master/docs/references/_attachments/ic.did) and will now be handled there (confirmed by the team) instead of the deprecated [interface-spec](https://github.com/dfinity/interface-spec/) repo. # Changes - Update source for `ic.did` in `import-candid` script. # Todos - [ ] Add entry to changelog (if necessary). Signed-off-by: David Dal Busco --- scripts/import-candid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/import-candid b/scripts/import-candid index b75a39f22..2d7ad3ee2 100755 --- a/scripts/import-candid +++ b/scripts/import-candid @@ -117,5 +117,5 @@ import_did "rs/ethereum/cketh/minter/cketh_minter.did" "minter.did" "cketh" import_did "rs/ethereum/ledger-suite-orchestrator/ledger_suite_orchestrator.did" "orchestrator.did" "cketh" mkdir -p packages/ic-management/candid -download_did https://raw.githubusercontent.com/dfinity/interface-spec/master/spec/_attachments/ic.did "ic-management.did" "ic-management" +download_did https://raw.githubusercontent.com/dfinity/portal/master/docs/references/_attachments/ic.did "ic-management.did" "ic-management" : Fin