Skip to content

Commit 6f3128e

Browse files
authored
v6.11.0 - add grants 2020-04 (#1109)
1 parent 21a1980 commit 6f3128e

File tree

2 files changed

+93
-1
lines changed

2 files changed

+93
-1
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.8.0
1+
6.11.0

state/grants.go

+92
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ func GetHardCodedGrants() []HardGrant {
6767

6868
case "MAIN":
6969
// Note to future grant implementers. On mainnet, grants should be on blocks divisible by 25 + 1. See function CheckGrants().
70+
// Activation heights
71+
grant2020_04 := uint32(272801)
7072
hardcodegrants = []HardGrant{
7173
// Initial grants approved June 9, 2018 https://drive.google.com/drive/folders/1e_xmKgJb375EcAwwkz2d3mdYs0PVVih3
7274
// https://factomize.com/forums/threads/implementing-the-initial-grants.428/
@@ -1297,6 +1299,96 @@ func GetHardCodedGrants() []HardGrant {
12971299
HardGrant{259651, 6066e8, validateAddress("FA3TV1SjP8nVjVsWsYZhxvGX89orBFbXBeAp7ZDYRyE8aA4knqrF")},
12981300
// --------------------------------------------------------
12991301

1302+
// ********************************
1303+
// **** Grant Round 2020-04 ****
1304+
// ********************************
1305+
1306+
// --------------------------------------------------------
1307+
// Anton Ilzheev-The Factoid Authority-De Facto -- 3600 FCT
1308+
// Factom Open Node 2020-10-19 - 2020-11-10
1309+
1310+
// The Factoid Authority total: 750 FCT
1311+
HardGrant{grant2020_04, 750e8, validateAddress("FA2LV4s7LKA9BTgWaJNvcr9Yq8rpiH2XD3vEPY3nwSiNSrnRgkpK")},
1312+
1313+
// De Facto total: 2850 FCT
1314+
HardGrant{grant2020_04, 2850e8, validateAddress("FA2YeMbN8Z1SsT7Yqw6Np85kWwtFVg2CyJKMDFnuXTawWuWPtzvX")},
1315+
// --------------------------------------------------------
1316+
1317+
// --------------------------------------------------------
1318+
// Paul B.-Luciap -- 5820 FCT
1319+
// Backpay core dev grant 2020-10-19 - 2020-11-10
1320+
1321+
// Luciap total: 5820 FCT
1322+
HardGrant{grant2020_04, 5820e8, validateAddress("FA3FMfH7wHkdxjaHi2CPVmDeoRkkKjWVhwcMGoz6hMqK451kaJEj")},
1323+
// --------------------------------------------------------
1324+
1325+
// --------------------------------------------------------
1326+
// Anton Ilzheev-Factom Inc-De Facto -- 900 FCT
1327+
// Factom Oracle Master 2020-10-19 - 2020-11-10
1328+
1329+
// Factom Inc total: 450 FCT
1330+
HardGrant{grant2020_04, 450e8, validateAddress("FA3fpiZ91MCRRFjVGfNXK4pg7vx3BT3aSRyoVqgptZCX7N5BNR8P")},
1331+
1332+
// De Facto total: 450 FCT
1333+
HardGrant{grant2020_04, 450e8, validateAddress("FA2YeMbN8Z1SsT7Yqw6Np85kWwtFVg2CyJKMDFnuXTawWuWPtzvX")},
1334+
// --------------------------------------------------------
1335+
1336+
// --------------------------------------------------------
1337+
// WB -- 1800 FCT
1338+
// Continued Governance Work 2020-10-19 - 2020-11-10
1339+
1340+
// WB total: 1800 FCT
1341+
HardGrant{grant2020_04, 1800e8, validateAddress("FA3Cac5xkEgvZc5uc3gWLhMK4CAvbw9Gi47FsFXydXEcBv3gcyDG")},
1342+
// --------------------------------------------------------
1343+
1344+
// --------------------------------------------------------
1345+
// Anton Ilzheev-Website Committee -- 2010 FCT
1346+
// Website Committee grant 2020-10-19 - 2020-11-10
1347+
1348+
// Website Committee total: 2010 FCT
1349+
HardGrant{grant2020_04, 2010e8, validateAddress("FA3TG1mi25XfJSVeNT5vS9uLi8VQxjK8ju9pGCp8Po6rrk5RXPLH")},
1350+
// --------------------------------------------------------
1351+
1352+
// --------------------------------------------------------
1353+
// Jason Gregoire-Kompendium -- 18000 FCT
1354+
// Factom-Ethereum Bridge System - Continuation (Part 2 of 2) 2020-10-19 - 2020-11-10
1355+
1356+
// Kompendium total: 18000 FCT
1357+
HardGrant{grant2020_04, 18000e8, validateAddress("FA2H1Vwsq6VLcKJEtnpBRTHTXFzSQYJNFkd82ZB4N77bfe7JmWPD")},
1358+
// --------------------------------------------------------
1359+
1360+
// --------------------------------------------------------
1361+
// Anton Ilzheev-De Facto -- 9600 FCT
1362+
// W3C Factom DID Golang Library backpay 2020-10-19 - 2020-11-10
1363+
1364+
// De Facto total: 9600 FCT
1365+
HardGrant{grant2020_04, 9600e8, validateAddress("FA2rrwFVvkFYwyGFHVBMwRqTpycuZiagrQdcbPWzuoEwJQxjDwi3")},
1366+
// --------------------------------------------------------
1367+
1368+
// --------------------------------------------------------
1369+
// David Chapman -- 20000 FCT
1370+
// Usage Via Zoints 2020-10-19 - 2020-11-10
1371+
1372+
// David Chapman total: 20000 FCT
1373+
HardGrant{grant2020_04, 20000e8, validateAddress("FA2z4Z8KycQhxtYPG4YxVk3zkPFN9ar65odcRZQY4YoKLtvyqE23")},
1374+
// --------------------------------------------------------
1375+
1376+
// --------------------------------------------------------
1377+
// Anton Ilzheev-De Facto -- 3600 FCT
1378+
// FCT Anchoring specification + binary 2020-10-19 - 2020-11-10
1379+
1380+
// De Facto total: 3600 FCT
1381+
HardGrant{grant2020_04, 3600e8, validateAddress("FA2rrwFVvkFYwyGFHVBMwRqTpycuZiagrQdcbPWzuoEwJQxjDwi3")},
1382+
// --------------------------------------------------------
1383+
1384+
// --------------------------------------------------------
1385+
// Anton Ilzheev-De Facto -- 20000 FCT
1386+
// Liquidity funds for WFCT/FCT exchange pair — no liquidation grant 2020-10-19 - 2020-11-10
1387+
1388+
// De Facto total: 20000 FCT
1389+
HardGrant{grant2020_04, 20000e8, validateAddress("FA2rrwFVvkFYwyGFHVBMwRqTpycuZiagrQdcbPWzuoEwJQxjDwi3")},
1390+
// --------------------------------------------------------
1391+
13001392
}
13011393

13021394
default:

0 commit comments

Comments
 (0)