Skip to content
Draft

Tron #30

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b677348
Update combined.proto.txt
kochol Jul 15, 2021
2d5d7ba
Update combined.proto.txt
kochol Jul 15, 2021
73a679a
Add BaseCommands
kochol Jul 20, 2021
71e0521
Add tron commands
kochol Jul 20, 2021
5a11c72
Remove unused Responses-V6.ts
kochol Jul 20, 2021
a5786ee
Update index.ts
kochol Jul 20, 2021
b13fd41
Update index.ts
kochol Jul 20, 2021
590dd4d
Add Tron block chain
kochol Jul 22, 2021
13292d2
Update TronBlockchain.ts
kochol Jul 22, 2021
97ebdf1
Update ProkeyCoinsInfo.json
kochol Jul 22, 2021
41bf172
Add tron to coin info
kochol Jul 22, 2021
1db07e5
Update CoinInfo.ts
kochol Jul 22, 2021
86e86bd
Add TronSignedTx type
kochol Jul 22, 2021
93ddb9c
Add Tron wallet
kochol Jul 23, 2021
c9c9a55
update tron types
kochol Jul 24, 2021
ec3cb3c
Get tron address fixed
kochol Jul 30, 2021
f7d0c08
Fix some bugs
kochol Aug 4, 2021
82a2d9e
fix for tron
kochol Aug 6, 2021
0262b0e
First tron tx worked
kochol Aug 11, 2021
53b086a
get account resources
kochol Aug 13, 2021
6297766
Merge branch 'main' into tron
kochol Aug 13, 2021
8feb106
Update combined.proto.txt
kochol Aug 20, 2021
83a2daf
minor update to Tron account resources
kochol Aug 22, 2021
bf90d87
Add tron freeze
kochol Aug 25, 2021
df4596d
merge from main
kochol Sep 1, 2021
d2abab9
update from main and fix errors
kochol Sep 1, 2021
9345cac
fix coin info for tron
kochol Sep 1, 2021
dd0ea6e
Updated to the latest codes
kochol Nov 18, 2021
86906a2
Add tron unfreeze
kochol Nov 23, 2021
41308ae
Merge branch 'tron' of https://github.com/prokey-io/prokey-webcore in…
kochol Nov 23, 2021
16d539d
Merge branch 'main' into tron
kochol Dec 6, 2021
ad6448d
Update CoinInfoModel.ts
kochol Dec 6, 2021
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
52 changes: 51 additions & 1 deletion data/ProkeyCoinsInfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -35744,7 +35744,7 @@
"slip44": 144,
"decimals": 6,
"priority": 100,
"on_device": "Ripple Testnet",
"on_device": "Ripple",
"test": true,
"support": {
"optimum": "1.10.1"
Expand All @@ -35755,5 +35755,55 @@
],
"min_balance": 20000000
}
],
"tron": [
{
"name": "Tron",
"shortcut": "TRX",
"slip44": 195,
"decimals": 6,
"priority": 7,
"on_device": "Tron",
"test": false,
"support": {
"optimum": "1.10.0"
},
"tx_url": "https://tronscan.org/#/transaction/{hash}",
"wallets": [
"https://wallet.prokey.io"
]
},
{
"name": "Tron Shasta",
"shortcut": "Shasta",
"slip44": 195,
"decimals": 6,
"priority": 7,
"on_device": "Tron",
"test": true,
"support": {
"optimum": "1.10.0"
},
"tx_url": "https://shasta.tronscan.org/#/transaction/{hash}",
"wallets": [
"https://wallet.prokey.io"
]
},
{
"name": "Tron Nile",
"shortcut": "Nile",
"slip44": 195,
"decimals": 6,
"priority": 7,
"on_device": "Tron",
"test": true,
"support": {
"optimum": "1.10.0"
},
"tx_url": "https://nile.tronscan.org/#/transaction/{hash}",
"wallets": [
"https://wallet.prokey.io"
]
}
]
}
3 changes: 3 additions & 0 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Copyright (C) Prokey.io
*
* Hadi Robati, [email protected]
* Ali Akbar Mohammadi
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -21,6 +22,8 @@
export { Device } from './src/device/Device';
export { BitcoinCommands } from './src/device/BitcoinCommands';
export { EthereumCommands } from './src/device/EthereumCommands';
export { TronCommands } from './src/device/TronCommands';
export { RippleCommands } from './src/device/RippleCommands';
export { BitcoinWallet } from './src/wallet/BitcoinWallet';
export { EthereumWallet } from './src/wallet/EthereumWallet';
export { OmniWallet } from './src/wallet/OmniWallet';
Expand Down
Loading