Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

219
Views
TypeError: token.name is not a function

I have this simple solidity contract using truffle. Everything works well when I use the command prompt but fails a test to return the name in my Token.test.js. with a TypeError: token.name is not a function. What could be wrong?

 //contract code
     enter code here
    // SPDX-License-Identifier: UNLICENSED
        pragma solidity ^0.8.13;
        
        contract Token {
            
            string public name = "My Token";
        }
        

    // Test code
    enter code here
        const Token = artifacts.require('Token');
        require('chai')
        .use(require('chai-as-promised'))
        .should();
        
        contract('Token', (accounts)=>{
        
            describe('deployment', ()=>{
        
                it("should return token name", async()=>{
                    const token = Token.new();
                    const name = await token.name();
        
                    name.should.equal('My Token')
                } );
            })
        
        })
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!