I connected through the plugin.
eos = this.scatterService.scatter.eos(network, Eos, {}, 'https')
But I can not get a contract.
let contract = await this.eos.contract(this.contractName)
this.model.interface = JSON.stringify(contract.fc.abi)
console.log('aaa')
console.log(contract) // returned Proxy object (in chrome: 'value below was evaluated just now')
console.log(this.model.interface) //returned undefined
And in chrome console exists Object, but 'contract.fc.abi' undefined

I connected through the plugin.
eos = this.scatterService.scatter.eos(network, Eos, {}, 'https')But I can not get a contract.
let contract = await this.eos.contract(this.contractName)this.model.interface = JSON.stringify(contract.fc.abi)console.log('aaa')console.log(contract) // returned Proxy object (in chrome: 'value below was evaluated just now')console.log(this.model.interface) //returned undefinedAnd in chrome console exists Object, but 'contract.fc.abi' undefined
