Bitshare Js Transfer failed with error (Not defined in console)
- Dominant language
- JavaScript
- Stars
- 8
- Forks
- 14
- Avg merge
- 7h 6m
- Merged PRs (30d)
- 2
Description
**I would like to point out that with both Bitshare-Js in raw HTML or using Vue boilerplate I get this error whenever I sign and broadcast the transaction**
### Steps to reproduce it...
```
beet.get("BitShares Transfer Example", "BTS_TEST", true).then(app => {
app.BTS_TEST.transfer(
{
to: "jeevan-jot",
amount:
{
satoshis: 300000,
asset_id: "1.3.0"
}
}
).then(result => {
console.log("Success", result);
}).catch(err => {
console.error(err);
});
}).catch(err => {
console.error(err);
});
```
>Use this html and then make the transaction (Both gives this error BTS_TEST and BTS (Main net))



### and the Vue code is...
```
let app = await this.$beet.connect()
console.log(app.getAccount().name)
console.log(app.getAccount())
app.transfer({
to: this.btsname.toString().trim(),
amount: {
satoshis: parseInt(this.tbts),
asset_id: '1.3.0'
}
})
```
(Sorry for those spaces)


Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.