diff --git a/API.md b/API.md index f7cc10cf..c44a3594 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. diff --git a/integration-tests/chain-signatures/src/main.rs b/integration-tests/chain-signatures/src/main.rs index 9f0b5c6b..37f01f91 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, } @@ -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()?;