Skip to content

Commit

Permalink
Merge pull request #338 from telosnetwork/develop
Browse files Browse the repository at this point in the history
Permissions fix & Dev tools redesign
  • Loading branch information
donnyquixotic authored Mar 12, 2024
2 parents 61f460d + 8a3cb18 commit b39209a
Show file tree
Hide file tree
Showing 7 changed files with 501 additions and 177 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"javascriptreact",
"typescript",
"vue"
]
}
],
}
4 changes: 3 additions & 1 deletion src/boot/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@ import { boot } from 'quasar/wrappers';
import { Api, JsonRpc } from 'eosjs';
import { Notify } from 'quasar';



const signTransaction = async function (actions) {
actions.forEach((action) => {
if (!action.authorization || !action.authorization.length) {
action.authorization = [
{
actor: this.state.accounts.account,
permission: 'active',
permission: this.state.accounts.user.requestPermission || this.state.accounts.user.permission,
},
];
}
Expand Down
11 changes: 9 additions & 2 deletions src/i18n/en-us/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,15 @@ export default {
testnetRotation: {
title: 'Add your testnet BP to the schedule',
},
testnetDevelopers: {
title: 'Get a testnet account or testnet TLOS',
testnet_developers: {
page_title: 'Testnet Developers Tools',
page_subtitle: 'Use the following tools to create a new account, send TLOS tokens to a Telos native account, or send TLOS tokens to an EVM compatible address.',
create_new_account_title: 'Create a New Testnet Account',
create_new_account_subtitle: 'Here you can create a new account by providing a unique name and public keys for owner and active permissions.',
send_tlos_telos_title: 'Send TLOS to Telos Account',
send_tlos_telos_subtitle: 'Use this tab to send TLOS tokens to a Telos native account.',
send_tlos_evm_title: 'Send TLOS to EVM Address',
send_tlos_evm_subtitle: 'Send TLOS tokens to an EVM compatible address with this option.',
},
testnetEvmFaucet: {
title: 'Get testnet EVM TLOS',
Expand Down
Loading

0 comments on commit b39209a

Please sign in to comment.