github.com/deso-protocol/core@v1.2.9/lib/nodes.go (about)

     1  package lib
     2  
     3  type DeSoNode struct {
     4  	// Name of the node, displayed to users
     5  	Name  string
     6  	
     7  	// HTTPs URL to the node or app
     8  	URL   string
     9  	
    10  	// DeSo username of the node owner
    11  	Owner string
    12  }
    13  
    14  //
    15  // This list of nodes is maintained by the core DeSo developer team.
    16  //
    17  // If you run a DeSo node that has been online for at least one month you may submit a pull request to add your
    18  // node to the list of nodes.
    19  //
    20  // When submitting a post, add the following to PostExtraData:
    21  //   "Node": "ID"
    22  //
    23  // If your node is in the list then other nodes will be able to know where users are posting and can include
    24  // a link to your node and give you free advertising.
    25  //
    26  
    27  var NODES = map[uint64]DeSoNode{
    28  	1: {
    29  		Name:  "DeSo",
    30  		URL:   "https://node.deso.org",
    31  		Owner: "diamondhands",
    32  	},
    33  	2: {
    34  		Name:  "BitClout",
    35  		URL:   "https://bitclout.com",
    36  		Owner: "diamondhands",
    37  	},
    38  	3: {
    39  		Name:  "Diamond",
    40  		URL:   "https://diamondapp.com",
    41  		Owner: "Zordon",
    42  	},
    43  	4: {
    44  		Name:  "CloutFeed",
    45  		URL:   "https://apps.apple.com/app/id1561532815",
    46  		Owner: "Ribal",
    47  	},
    48  	5: {
    49  		Name:  "Flick",
    50  		URL:   "https://flickapp.com",
    51  		Owner: "nigeleccles",
    52  	},
    53  	6: {
    54  		Name:  "tijn's club",
    55  		URL:   "https://tijn.club",
    56  		Owner: "tijn",
    57  	},
    58  	7: {
    59  		Name:  "Nacho Average",
    60  		URL:   "https://nachoaverage.com/",
    61  		Owner: "ClayPerryMusic",
    62  	},
    63  	8: {
    64  		Name:  "love4src",
    65  		URL:   "https://love4src.com",
    66  		Owner: "kanshi",
    67  	},
    68  	9: {
    69  		Name:  "Supernovas",
    70  		URL:   "https://supernovas.app",
    71  		Owner: "fransarthur",
    72  	},
    73  	10: {
    74  		Name:  "GiftClout",
    75  		URL:   "https://members.giftclout.com",
    76  		Owner: "RajLahoti",
    77  	},
    78  	11: {
    79  		Name:  "DeSocialWorld",
    80  		URL:   "https://desocialworld.com",
    81  		Owner: "edokoevoet",
    82  	},
    83  	12: {
    84  		Name:  "NFTz",
    85  		URL:   "https://nftz.zone",
    86  		Owner: "mvanhalen",
    87  	},
    88  	13: {
    89  		Name:  "Cloutible",
    90  		URL:   "https://cloutible.club",
    91  		Owner: "DawaynePerza",
    92  	},
    93  	14: {
    94  		Name:  "Agbegbe",
    95  		URL:   "https://agbegbe.org",
    96  		Owner: "TheParkerazzi",
    97  	},
    98  	15: {
    99  		Name:  "CloutingAround",
   100  		URL:   "https://cloutingaround.dev",
   101  		Owner: "TheParkerazzi",
   102  	},
   103  	16: {
   104  		Name:  "MediaTech",
   105  		URL:   "https://deso.mediatech.ventures",
   106  		Owner: "paulobrien",
   107  	},
   108  	17: {
   109  		Name:  "Mousai",
   110  		URL:   "https://deso.mousai.stream",
   111  		Owner: "marlonjm2k",
   112  	},
   113  	18: {
   114  		Name:  "KoalaTBooks",
   115  		URL:   "https://koalatbooks.com",
   116  		Owner: "chriscelaya",
   117  	},
   118  	19: {
   119  		Name: "Beyond",
   120  		URL: "https://beyond.restartu.org",
   121  		Owner: "RestartU",
   122  	},
   123  	20: {
   124  		Name:  "DeverSo",
   125  		URL:   "https://deverso.io/",
   126  		Owner: "Nordian",
   127  	},
   128  	21: {
   129  		Name:  "NinjaNode",
   130  		URL:   "https://node.bitcloutapps.ninja",
   131  		Owner: "mattpitts",
   132  	},
   133  }