From 29e50bbb0299861c87519cf9ff69b99284803c8a Mon Sep 17 00:00:00 2001 From: AlexKushnir1 <127443695+AlexKushnir1@users.noreply.github.com> Date: Wed, 6 Nov 2024 23:09:49 +0200 Subject: [PATCH 1/3] Shorter about near-cli Co-authored-by: Serhii Volovyk --- API.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API.md b/API.md index c75f8e02..c950cd9e 100644 --- a/API.md +++ b/API.md @@ -61,4 +61,4 @@ For more details check `User contract API` impl block in the [chain-signatures/c There is an `Example Commands` in the [chain-signatures/contract/example.md](./chain-signature/contract/EXAMPLE.md) file. -These commands work for the latest versions of `Near-cli`(4.0.0+). For installing near-cli [[click here]](https://github.com/near/near-cli/tree/v4.0.13?tab=readme-ov-file#setup) +These commands were tested on [near-cli](https://github.com/near/near-cli) 4.0.0. From ad86225dbefa89e0e55052308326c01d405e3510 Mon Sep 17 00:00:00 2001 From: AlexKushnir1 <127443695+AlexKushnir1@users.noreply.github.com> Date: Wed, 6 Nov 2024 23:10:27 +0200 Subject: [PATCH 2/3] Naming Co-authored-by: Serhii Volovyk --- integration-tests/chain-signatures/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/chain-signatures/src/main.rs b/integration-tests/chain-signatures/src/main.rs index 9f0b5c6b..eb1e8131 100644 --- a/integration-tests/chain-signatures/src/main.rs +++ b/integration-tests/chain-signatures/src/main.rs @@ -25,7 +25,7 @@ enum Cli { }, /// Spin up dependent services but not mpc nodes DepServices, - /// Example of commands to interact with the contract + /// Generate example commands to interact with the contract ContractCommands, } From 67487d5128ad0d3bd849b79cc25c464290da2f0d Mon Sep 17 00:00:00 2001 From: AlexKushnir1 <127443695+AlexKushnir1@users.noreply.github.com> Date: Wed, 6 Nov 2024 23:11:35 +0200 Subject: [PATCH 3/3] Change caller id Co-authored-by: Serhii Volovyk --- integration-tests/chain-signatures/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/chain-signatures/src/main.rs b/integration-tests/chain-signatures/src/main.rs index eb1e8131..37f01f91 100644 --- a/integration-tests/chain-signatures/src/main.rs +++ b/integration-tests/chain-signatures/src/main.rs @@ -97,7 +97,7 @@ async fn main() -> anyhow::Result<()> { let mut file = File::create(path)?; let mut doc: Vec = vec![]; let contract_account_id = AccountId::from_str("v1.signer-dev.testnet")?; - let caller_account_id = AccountId::from_str("v1.signer-dev.testnet")?; + let caller_account_id = AccountId::from_str("caller.testnet")?; let public_key: PublicKey = "ed25519:J75xXmF7WUPS3xCm3hy2tgwLCKdYM1iJd4BWF8sWVnae".parse()?;