Skip to content

Commit

Permalink
Merge pull request #854 from telosnetwork/wax-precision
Browse files Browse the repository at this point in the history
Updates WAX precision
  • Loading branch information
pmjanus authored Jul 11, 2024
2 parents 1507a93 + 80e7123 commit 12ce05f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/SendDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ export default defineComponent({
const resetForm = () => {
sendToken.value = {
symbol: chain.getSystemToken().symbol,
precision: 4,
amount: 0,
contract: 'eosio.token',
precision: chain.getSystemToken().precision,
amount: chain.getSystemToken().amount,
contract: chain.getSystemToken().contract,
};
};
Expand Down
2 changes: 1 addition & 1 deletion src/config/chains/wax/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const NAME = 'wax';
const DISPLAY = 'WAX';
const TOKEN = {
symbol: 'WAX',
precision: 4,
precision: 8,
amount: 0,
contract: 'eosio.token',
} as Token;
Expand Down

0 comments on commit 12ce05f

Please sign in to comment.