Skip to content

Commit

Permalink
Merge branch 'command-builder' of github.com:AlexKushnir1/mpc into co…
Browse files Browse the repository at this point in the history
…mmand-builder
  • Loading branch information
AlexKushnir1 authored and AlexKushnir1 committed Nov 6, 2024
2 parents d55e1de + 67487d5 commit 91b62be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion API.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions integration-tests/chain-signatures/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

Expand Down Expand Up @@ -97,7 +97,7 @@ async fn main() -> anyhow::Result<()> {
let mut file = File::create(path)?;
let mut doc: Vec<String> = 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()?;

Expand Down

0 comments on commit 91b62be

Please sign in to comment.