第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

你如何從js客戶端調(diào)用一個(gè)payable方法?

你如何從js客戶端調(diào)用一個(gè)payable方法?

慕神8447489 2023-04-01 15:52:03
想象一下,您有一個(gè)smart contract方法,該方法需要將存款附加到方法調(diào)用上,類似于此rust方法:#[payable]pub fn spend(&mu self, age: u8){    assert!(env::attached_deposit() > 0,            "Insufficient deposit.");...}現(xiàn)在你使用設(shè)置你的合同near-api-js并繼續(xù)調(diào)用它。如何調(diào)用此方法并Near在客戶端 js 中附加一些方法?
查看完整描述

1 回答

?
哆啦的時(shí)光機(jī)

TA貢獻(xiàn)1779條經(jīng)驗(yàn) 獲得超6個(gè)贊

您像往常一樣設(shè)置合同:


const contract = await new nearlib.Contract(

? ? walletConnection.account(),

? ? nearConfig.contractName,

? ? {

? ? ? // View methods are read only. They don't modify the state, but usually return some value.

? ? ? viewMethods: ["getCorgi", "getCorgisList", "displayGolbalCorgis"],

? ? ? // Change methods can modify the state. But you don't receive the returned value when called.

? ? ? changeMethods: ["transferCorgi", "createCorgi", "deleteCorgi"],

? ? ? // Sender is the account ID to initialize transactions.

? ? ? sender: walletConnection.getAccountId(),

? ? }

? );

通常,您將 change 方法稱為:

await?contract.transferCorgi({"receiver":?"frol.near",?"id":?"corgi_xxx",?"message":?"hello"})

然而,當(dāng)你想附加一些 NEAR 代幣或增加 gas 津貼時(shí),你需要在參數(shù)后指定可選的位置參數(shù):

await?contract.changeMethodName(args:?object,?gas:?BN,?amount:?BN)

筆記:

  1. BN是大數(shù)表示

  2. 默認(rèn)的 gas 限額是 300 Tgas [300 * 10^12 gas]

  3. 數(shù)量在 yoctoNEAR 中指定(1 NEAR 是 10^24 yoctoNEAR)

例如:

const ONE_NEAR = new BN("1000000000000000000000000")

await contract.createCorgi({"id": "corgi_xxx"}, new BN("3000000000000"), ONE_NEAR)



查看完整回答
反對 回復(fù) 2023-04-01
  • 1 回答
  • 0 關(guān)注
  • 129 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號