Skip to content
Open
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
4 changes: 3 additions & 1 deletion electron/services/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ const plugins = {
trx:new (require('@walletpack/tron').default)(),
btc:new (require('@walletpack/bitcoin').default)(),
eth:new (require('@walletpack/ethereum').default)(),
fio:new (require('@walletpack/fio').default)()
fio:new (require('@walletpack/fio').default)(),
cyber:new (require('@walletpack/cyberway').default)()
}

plugins.trx.init();
Expand Down Expand Up @@ -308,6 +309,7 @@ const availableBlockchains = () => ({
ETH:'eth',
TRX:'trx',
BTC:'btc',
CYBER:'cyber',
});

const EXPORTS = {
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@walletpack/ethereum": "^0.0.56",
"@walletpack/fio": "^0.0.23",
"@walletpack/tron": "^0.0.59",
"@walletpack/cyberway": "^0.0.4-alpha.14",
"aes-oop": "^1.0.4",
"asn1-ber": "^1.0.9",
"bip32-path": "^0.4.2",
Expand Down
1 change: 1 addition & 0 deletions scripts/walletpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const packages = [
'tron',
'bitcoin',
'ethereum',
'cyberway'
];

const args = process.argv.slice(2);
Expand Down