NEAR 协议编译错误

NEAR Protocol CompilationError

大家好,我在 Near (@Macbook M1 Chip Terminal) 遇到了一个编译错误,我调用了 helloWorld 函数,但我遇到了那个错误。有谁知道为什么?在此先感谢您的帮助:)

near call dev-1649760447277-15731695561522 helloWorld --accountId kadirg.testnet
Scheduling a call: dev-1649760447277-15731695561522.helloWorld()
Doing account.functionCall()

Failure [dev-1649760447277-15731695561522]: Error: Cannot find contract code for account dev-1649760447277-15731695561522

type: 'CodeDoesNotExist'

你能检查函数名称 helloWorld 在 index.ts 文件中是否正确吗?

签到:

Stats Gallery - Contract

和:

NEAR Testnet

此账户没有部署合约。 所以这不是“编译错误”,也许你没有编译并且肯定没有部署它。

你需要编译它:

$ yarn build:release
$ asb

然后部署:

$ near dev-deploy ../build/release/simple.wasm

您可以按照本指南进行操作: First contract AS