Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replacing UAL with Wharf #646

Draft
wants to merge 24 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .editorconfig

This file was deleted.

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@
"test:coverage": "quasar serve test/jest/coverage/lcov-report/ --port 8788"
},
"dependencies": {
"@greymass/eosio": "^0.6.8",
"@quasar/extras": "^1.13.4",
"@telosnetwork/ual-cleos": "^1.13.1",
"@wharfkit/session": "^0.5.0",
"@wharfkit/transact-plugin-resource-provider": "^0.3.0",
"@wharfkit/wallet-plugin-anchor": "^0.5.1",
"@wharfkit/wallet-plugin-cleos": "^0.4.1",
"@wharfkit/wallet-plugin-privatekey": "^0.5.0",
"@wharfkit/web-renderer": "^0.5.3",
"axios": "^0.21.1",
"core-js": "^3.6.5",
"csvtojson": "^2.0.10",
Expand All @@ -25,8 +29,6 @@
"moment": "^2.29.4",
"ol": "^6.14.1",
"quasar": "^2.6.2",
"ual-anchor": "1.3.0",
"universal-authenticator-library": "^0.3.0",
"vue": "^3.0.0",
"vue-class-component": "^7.2.6",
"vue-json-viewer": "3",
Expand Down
2 changes: 1 addition & 1 deletion quasar.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module.exports = configure(function (ctx) {
// app boot file (/src/boot)
// --> boot files are part of "main.js"
// https://quasar.dev/quasar-cli/boot-files
boot: ['config', 'axios', 'api', 'ual', 'fuel'],
boot: ['config', 'axios', 'api', 'wharf'],

// https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-css
css: ['app.sass'],
Expand Down
2 changes: 1 addition & 1 deletion src/api/eosio_core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
Serializer,
PublicKey,
Name,
} from '@greymass/eosio';
} from '@wharfkit/session';
import { GetTableRowsParams } from 'src/types';
import { Chain } from 'src/types/Chain';
import { getChain } from 'src/config/ConfigManager';
Expand Down
Loading