mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 03:57:44 +00:00 
			
		
		
		
	[R4R] Update Swagger for testnet-6000 (#496)
* wip: update swagger for testnet-6000 * add remaining modules to swagger * add committee api
This commit is contained in:
		
							parent
							
								
									6c68e41758
								
							
						
					
					
						commit
						7f236d322d
					
				| 
		 Before Width: | Height: | Size: 665 B After Width: | Height: | Size: 665 B  | 
| 
		 Before Width: | Height: | Size: 628 B After Width: | Height: | Size: 628 B  | 
@ -39,7 +39,7 @@
 | 
			
		||||
    window.onload = function() {
 | 
			
		||||
      // Begin Swagger UI call region
 | 
			
		||||
      const ui = SwaggerUIBundle({
 | 
			
		||||
        url: "./swagger-testnet-4000.yaml",
 | 
			
		||||
        url: "./swagger-testnet-6000.yaml",
 | 
			
		||||
        dom_id: '#swagger-ui',
 | 
			
		||||
        deepLinking: true,
 | 
			
		||||
        presets: [
 | 
			
		||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@ -13,8 +13,13 @@ import (
 | 
			
		||||
	"github.com/kava-labs/kava/x/incentive/types"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
	restOwner = "owner"
 | 
			
		||||
	restDenom = "denom"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func registerQueryRoutes(cliCtx context.CLIContext, r *mux.Router) {
 | 
			
		||||
	r.HandleFunc(fmt.Sprintf("/%s/claims", types.ModuleName), queryClaimsHandlerFn(cliCtx)).Methods("GET")
 | 
			
		||||
	r.HandleFunc(fmt.Sprintf("/%s/claims/{%s}/{%s}", types.ModuleName, restOwner, restDenom), queryClaimsHandlerFn(cliCtx)).Methods("GET")
 | 
			
		||||
	r.HandleFunc(fmt.Sprintf("/%s/parameters", types.ModuleName), queryParamsHandlerFn(cliCtx)).Methods("GET")
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user