无法在智能合约中调用该函数

问题描述 投票:1回答:1

我试图通过有角度的应用程序调用Solidity智能合约中的方法。但我无法调用该方法。有人可以帮帮我吗。这是我在控制台中得到的错误

TypeError: this.contract.methods.hello is not a function
at CertificateContractService.<anonymous> (certificate-contract.service.ts:32)
at Generator.next (<anonymous>)
at fulfilled (tslib.es6.js:70)
at ZoneDelegate.invoke (zone-evergreen.js:359)
at Object.onInvoke (core.js:39699)
at ZoneDelegate.invoke (zone-evergreen.js:358)
at Zone.run (zone-evergreen.js:124)
at zone-evergreen.js:855
at ZoneDelegate.invokeTask (zone-evergreen.js:391)
at Object.onInvokeTask (core.js:39680)

智能合约


contract CertificateList {

    function hello() external pure returns (string memory )  {
        return "Hello";
    }

}

Angular服务

import Web3 from 'web3';
import {WEB3} from './WEB3';

declare let require: any;
declare let window: any;


@Injectable({
  providedIn: 'root'
})
export class CertificateContractService {
  private abi: any;
  private address = '0xb0fFD3498B219ad2A62Eb98fEDE591265b3C3B67';
  private contract;
  private accounts: string[];

  constructor(@Inject(WEB3) private web3: Web3) {
    this.init().then(res => {
    }).catch(err => {
      console.error(err);
    });
  }

  private async init() {
    this.abi = require('../assets/abi/CertificateList.json');
    // await this.web3.currentProvider.enable();
    this.accounts = await this.web3.eth.getAccounts();

    this.contract = new this.web3.eth.Contract(this.abi, this.address, {gas: 1000000, gasPrice: '10000000000000'});

    this.contract.methods.hello().send()
      .then(receipt => {
        console.log(receipt);
      }).catch(err => {
      console.error(err);
    });
  }
}

提供者

import { InjectionToken } from '@angular/core';
import Web3 from 'web3';

export const WEB3 = new InjectionToken<Web3>('web3', {
  providedIn: 'root',
  factory: () => {
    try {
      window['ethereum'].autoRefreshOnNetworkChange = false;
      const provider = ('ethereum' in window) ? window['ethereum'] : Web3['givenProvider'];
      return new Web3(provider);
    } catch (err) {
      throw new Error('Non-Ethereum browser detected. You should consider trying Mist or MetaMask!');
    }
  }
});
blockchain solidity truffle
1个回答
0
投票

请确保../assets/abi/CertificateList.json仅包含有效的abi。如果您是通过直接执行truffle compilesolc CertificateList.sol来获取此文件的,则必须从json文件中提取abi。

var contractJson = require('../assets/abi/CertificateList.json');
this.abi = contractJson['abi'];

而且,不能在纯函数上使用methods.hello.send。只能在修改合同状态的函数(即payableunspecified函数)上调用send方法。要调用pureview函数,应使用call方法。有关更多信息,请参见web3.eth.Contract

this.contract.methods.hello().call()
  .then(receipt => {
    console.log(receipt);
  }).catch(err => {
  console.error(err);
});
© www.soinside.com 2019 - 2024. All rights reserved.