Skip to content
Snippets Groups Projects
Select Git revision
  • 1f96d8bfc39d506f4143f44fc745131f92017d18
  • main default protected
  • development
  • integration
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.0
11 results

Bindings

Blame
  • url.go 737 B
    ///////////////////////////////////////////////////////////////////////////////
    // Copyright © 2020 xx network SEZC                                          //
    //                                                                           //
    // Use of this source code is governed by a license that can be found in the //
    // LICENSE file                                                              //
    ///////////////////////////////////////////////////////////////////////////////
    
    package bindings
    
    import (
    	"fmt"
    	"gitlab.com/xx_network/primitives/id"
    )
    
    const dashboardBaseURL = "https://dashboard.xx.network"
    
    func getRoundURL(round id.Round) string {
    	return fmt.Sprintf("%s/rounds/%d?xxmessenger=true", dashboardBaseURL, round)
    }