nitka 0.5.0

NITKA - Near Integration Test Kit and Automation
Documentation
1
2
3
4
5
6
7
use near_workspaces::Contract;

use crate::ContractCall;

pub fn make_call<T>(contract: &Contract, method: &str) -> ContractCall<T> {
    ContractCall::new(method, contract.clone())
}