Skip to content

Commit 2c10478

Browse files
committed
Merge remote-tracking branch 'upstream/dev'
2 parents fa51c79 + 6ba2a3a commit 2c10478

6 files changed

Lines changed: 72 additions & 5 deletions

File tree

assets/config/0.5.4-coins.json

Lines changed: 57 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@
10961096
},
10971097
{
10981098
"url": "electrum1.cipig.net:10000",
1099-
"ws_url": "electrum3.cipig.net:30000"
1099+
"ws_url": "electrum1.cipig.net:30000"
11001100
}
11011101
],
11021102
"explorer_url": [
@@ -2774,6 +2774,7 @@
27742774
"name": "GRMS",
27752775
"coingecko_id": "test-coin",
27762776
"coinpaprika_id": "grms-grms",
2777+
"nomics_id": "GRMS",
27772778
"electrum": [
27782779
{
27792780
"url": "89.108.102.188:17485"
@@ -4693,11 +4694,11 @@
46934694
},
46944695
{
46954696
"url": "electrum2.cipig.net:10001",
4696-
"ws_url": "electrum3.cipig.net:30001"
4697+
"ws_url": "electrum2.cipig.net:30001"
46974698
},
46984699
{
46994700
"url": "electrum1.cipig.net:10001",
4700-
"ws_url": "electrum3.cipig.net:30001"
4701+
"ws_url": "electrum1.cipig.net:30001"
47014702
}
47024703
],
47034704
"explorer_url": [
@@ -8583,6 +8584,58 @@
85838584
"active": false,
85848585
"currently_enabled": false
85858586
},
8587+
"PRCY-BEP20": {
8588+
"coin": "PRCY-BEP20",
8589+
"name": "PRivaCY Coin",
8590+
"coinpaprika_id": "prcy-privacy-coin",
8591+
"coingecko_id": "privacy-coin",
8592+
"nomics_id": "PRCY",
8593+
"nodes": [
8594+
"http://bsc1.cipig.net:8655",
8595+
"http://bsc2.cipig.net:8655",
8596+
"http://bsc3.cipig.net:8655"
8597+
],
8598+
"explorer_url": [
8599+
"https://bscscan.com/"
8600+
],
8601+
"type": "BEP-20",
8602+
"active": false,
8603+
"currently_enabled": false
8604+
},
8605+
"PRCY-ERC20": {
8606+
"coin": "PRCY-ERC20",
8607+
"name": "PRivaCY Coin",
8608+
"coinpaprika_id": "prcy-privacy-coin",
8609+
"coingecko_id": "privacy-coin",
8610+
"nomics_id": "PRCY",
8611+
"nodes": [
8612+
"http://eth1.cipig.net:8555",
8613+
"http://eth2.cipig.net:8555",
8614+
"http://eth3.cipig.net:8555"
8615+
],
8616+
"explorer_url": [
8617+
"https://etherscan.io/"
8618+
],
8619+
"type": "ERC-20",
8620+
"active": false,
8621+
"currently_enabled": false
8622+
},
8623+
"PRCY-PLG20": {
8624+
"coin": "PRCY-PLG20",
8625+
"name": "PRivaCY Coin",
8626+
"coinpaprika_id": "prcy-privacy-coin",
8627+
"coingecko_id": "privacy-coin",
8628+
"nomics_id": "PRCY",
8629+
"nodes": [
8630+
"https://polygon-rpc.com"
8631+
],
8632+
"explorer_url": [
8633+
"https://polygonscan.com/"
8634+
],
8635+
"type": "Matic",
8636+
"active": false,
8637+
"currently_enabled": false
8638+
},
85868639
"REP": {
85878640
"coin": "REP",
85888641
"name": "Reputation",
@@ -8843,6 +8896,7 @@
88438896
"name": "Ubiq",
88448897
"coinpaprika_id": "ubq-ubiq",
88458898
"coingecko_id": "ubiq",
8899+
"nomics_id": "UBQ",
88468900
"nodes": [
88478901
"https://rpc.octano.dev/"
88488902
],

atomic_defi_design/Dex/Constants/Style.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,7 @@ QtObject {
453453
"POWR": "#05BCAA",
454454
"PPC": "#46BC60",
455455
"PRUX": "#FF8000",
456+
"PRCY": "#012828",
456457
"QI": "#FFFFFF",
457458
"QIAIR": "#FEFEFE",
458459
"QKC": "#2175B4",

atomic_defi_design/Dex/Wallet/TransactionDetailsModal.qml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ import QtQuick 2.15
22
import QtQuick.Layouts 1.15
33
import QtQuick.Controls 2.15
44

5+
import Qaterial 1.0 as Qaterial
6+
57
import "../Components"
68
import "../Constants"
79
import App 1.0
10+
import Dex.Themes 1.0 as Dex
811

912
// Open Transaction Details Modal
1013
BasicModal {
@@ -52,11 +55,17 @@ BasicModal {
5255
}
5356

5457
// Transaction Hash
55-
TextEditWithTitle {
58+
TextEditWithTitle
59+
{
60+
id: txHash
5661
title: qsTr("Transaction Hash")
5762
text: !details ? "" :
5863
details.tx_hash
5964
privacy: true
65+
copy: true
66+
67+
onCopyNotificationTitle: qsTr("Transactions")
68+
onCopyNotificationMsg: qsTr("txid copied to clipboard")
6069
}
6170

6271
// Confirmations
@@ -96,6 +105,7 @@ BasicModal {
96105
}
97106
}
98107
}
108+
99109
// Notes
100110
TextAreaWithTitle {
101111
id: notes
25.2 KB
Loading

atomic_defi_design/qml.qrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@
188188
<file>assets/images/coins/pnk.png</file>
189189
<file>assets/images/coins/powr.png</file>
190190
<file>assets/images/coins/ppc.png</file>
191+
<file>assets/images/coins/prcy.png</file>
191192
<file>assets/images/coins/prux.png</file>
192193
<file>assets/images/coins/put.png</file>
193194
<file>assets/images/coins/qbt.png</file>

ci_tools_atomic_dex/ci_scripts/linux_script.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ sudo apt-get install build-essential \
3131
# get llvm
3232
wget https://apt.llvm.org/llvm.sh
3333
chmod +x llvm.sh
34-
sudo ./llvm.sh 12
34+
sudo ./llvm.sh 12 all
3535
# set clang version
3636
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-12 777
3737
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-12 777
@@ -68,4 +68,5 @@ cd tar-1.32
6868
export FORCE_UNSAFE_CONFIGURE=1
6969
./configure
7070
sudo make -j install
71+
sudo ln -s /bin/tar /usr/local/bin/tar
7172
sudo update-alternatives --install /usr/bin/tar tar /usr/local/bin/tar 777

0 commit comments

Comments
 (0)