본문으로 건너뛰기

컨트랙트

Contract의 인스턴스를 초기화할 때, 스마트 컨트랙트에 있는 함수의 이름을 지정해야 합니다. 그러면 Contract의 새 인스턴스에는 스마트 컨트랙트 함수와 동일한 이름을 가진 메서드가 존재할 것입니다. 예를 들어, my_smart_contract_function 함수가 포함된 컨트랙트를 배포한 경우, 이는 다음과 같이 작동합니다.

const contract = new Contract(account, "example-contract.testnet", {
changeMethods: ["my_smart_contract_function"], // your smart-contract has a function `my_smart_contract_function`
});
// `contract` object has `my_smart_contract_function` function on it:
contract.my_smart_contract_function();

컨트랙트 가져오기

const { Contract } = nearAPI;

const contract = new Contract(
account, // the account object that is connecting
"example-contract.testnet",
{
// name of contract you're connecting to
viewMethods: ["getMessages"], // view methods do not change state but usually return a value
changeMethods: ["addMessage"], // change methods modify state
}
);

Class Contract

컨트랙트 호출

const contract = new Contract(account, "example-contract.testnet", {
changeMethods: ["method_name"],
});
await contract.method_name(
{
arg_name: "value", // argument name and value - pass empty object if no args required
},
"300000000000000", // attached GAS (optional)
"1000000000000000000000000" // attached deposit in yoctoNEAR (optional)
);

Contract 클래스

Was this page helpful?