forked from MyZubster-Ecosystem/myzubster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhistory.js
More file actions
70 lines (66 loc) 路 2.03 KB
/
Copy pathhistory.js
File metadata and controls
70 lines (66 loc) 路 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
* Storico pagamenti MyZubster
* Dati aggregati da tutte le issue bounty
*/
const paymentHistory = {
// Pagamenti completati
completed: [
{
issue: '#65',
repo: 'myzubster',
bounty: 0.15,
contributor: '@SourceProofLabs',
txid: 'f491340d66d7789665da7846b17787e337ca464bad3489f30afe348986a1661e',
date: '2026-07-31',
address: '4B3v5k44b8pQTzqfAdxDCgZD8MZBVsX3qGDHGE5T94ZccEgv49nauhg7BzJj8dNBwAikguvTYqW5QRGDb7xSuEDVH4EfXAc'
},
{
issue: '#23',
repo: 'tokenization-singapore',
bounty: 0.001,
contributor: '@SourceProofLabs',
txid: '7058ecdc253b63cdc9afe434ed1452566cecdfc18e0bd81b20b7472265aa20ec',
date: '2026-07-31',
address: '4B3v5k44b8pQTzqfAdxDCgZD8MZBVsX3qGDHGE5T94ZccEgv49nauhg7BzJj8dNBwAikguvTYqW5QRGDb7xSuEDVH4EfXAc'
}
],
// In attesa di pagamento
pending: [
{
issue: '#23/#5',
repo: 'my-monero-bounty',
bounty: 0.06,
contributor: '@jdjioe5-cpu',
address: '46o6gz4Pzn8edEsjgL15jkRzPEakEYefGPoM6nbDqmegDL2GrHxtUonLbKKB7vQEhoWdaAqbNG26She7kaPmkBrxU5ofG8x',
status: 'PR mergiata, in attesa pagamento'
},
{
issue: '#60',
repo: 'MyZubsterGateway',
bounty: 0.10,
contributor: '@leanworld7-netizen',
address: '47T3uyXCwZi3warzatwN8d4d886whkvJTPS1yDbwj7NBZNVxfEBM27D4uTmMCJyWNbHmJ4qfg1XgpUDPxnb1Fi1YFj9tXPJ',
status: 'PR mergiata, in attesa pagamento'
},
{
issue: '#62',
repo: 'MyZubsterGateway',
bounty: 0.15,
contributor: '@leanworld7-netizen',
address: '47T3uyXCwZi3warzatwN8d4d886whkvJTPS1yDbwj7NBZNVxfEBM27D4uTmMCJyWNbHmJ4qfg1XgpUDPxnb1Fi1YFj9tXPJ',
status: 'PR mergiata, in attesa pagamento'
}
],
// In review
review: [
{
issue: '#63',
repo: 'myzubster',
bounty: 0.08,
contributor: '@Aming9303',
address: '45ynVR1NgjmJjPeGEvzPEg8s5rYJZkwQn8C5hzX2Tt8EC9s11VHemuZ3NQA59unUWTiTudyoNxvvQVLodMVthSZiNk5Xsk8',
status: 'PR #106 in review'
}
]
};
module.exports = paymentHistory;