mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 08:37:29 +00:00 
			
		
		
		
	* most audit revisions * remove expected income * update begin block spec * filter queryAtomicSwaps, add queryAssetSupplies * update old address * update test * Remove legacy method * remove legacy comment * address PR comments * IsValid for SwapDirection, SwapStatus * fix rng logging * query asset supplies * return [64]byte from rng * remove cross chain field from MsgCreateAtomicSwap * move swap filtering to querier * rename Limit field to SupplyLimit
		
			
				
	
	
		
			56 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package rest
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/gorilla/mux"
 | 
						|
 | 
						|
	tmbytes "github.com/tendermint/tendermint/libs/bytes"
 | 
						|
 | 
						|
	"github.com/cosmos/cosmos-sdk/client/context"
 | 
						|
	sdk "github.com/cosmos/cosmos-sdk/types"
 | 
						|
	"github.com/cosmos/cosmos-sdk/types/rest"
 | 
						|
)
 | 
						|
 | 
						|
// REST Variable names
 | 
						|
// nolint
 | 
						|
const (
 | 
						|
	RestExpiration = "expiration"
 | 
						|
	RestInvolve    = "involve"
 | 
						|
	RestStatus     = "status"
 | 
						|
	RestDirection  = "direction"
 | 
						|
)
 | 
						|
 | 
						|
// RegisterRoutes registers bep3-related REST handlers to a router
 | 
						|
func RegisterRoutes(cliCtx context.CLIContext, r *mux.Router) {
 | 
						|
	registerQueryRoutes(cliCtx, r)
 | 
						|
	registerTxRoutes(cliCtx, r)
 | 
						|
}
 | 
						|
 | 
						|
// PostCreateSwapReq defines the properties of a swap create request's body
 | 
						|
type PostCreateSwapReq struct {
 | 
						|
	BaseReq             rest.BaseReq     `json:"base_req" yaml:"base_req"`
 | 
						|
	From                sdk.AccAddress   `json:"from" yaml:"from"`
 | 
						|
	To                  sdk.AccAddress   `json:"to" yaml:"to"`
 | 
						|
	RecipientOtherChain string           `json:"recipient_other_chain" yaml:"recipient_other_chain"`
 | 
						|
	SenderOtherChain    string           `json:"sender_other_chain" yaml:"sender_other_chain"`
 | 
						|
	RandomNumberHash    tmbytes.HexBytes `json:"random_number_hash" yaml:"random_number_hash"`
 | 
						|
	Timestamp           int64            `json:"timestamp" yaml:"timestamp"`
 | 
						|
	Amount              sdk.Coins        `json:"amount" yaml:"amount"`
 | 
						|
	HeightSpan          uint64           `json:"height_span" yaml:"height_span"`
 | 
						|
	CrossChain          bool             `json:"cross_chain" yaml:"cross_chain"`
 | 
						|
}
 | 
						|
 | 
						|
// PostClaimSwapReq defines the properties of a swap claim request's body
 | 
						|
type PostClaimSwapReq struct {
 | 
						|
	BaseReq      rest.BaseReq     `json:"base_req" yaml:"base_req"`
 | 
						|
	From         sdk.AccAddress   `json:"from" yaml:"from"`
 | 
						|
	SwapID       tmbytes.HexBytes `json:"swap_id" yaml:"swap_id"`
 | 
						|
	RandomNumber tmbytes.HexBytes `json:"random_number" yaml:"random_number"`
 | 
						|
}
 | 
						|
 | 
						|
// PostRefundSwapReq defines the properties of swap refund request's body
 | 
						|
type PostRefundSwapReq struct {
 | 
						|
	BaseReq rest.BaseReq     `json:"base_req" yaml:"base_req"`
 | 
						|
	From    sdk.AccAddress   `json:"from" yaml:"from"`
 | 
						|
	SwapID  tmbytes.HexBytes `json:"swap_id" yaml:"swap_id"`
 | 
						|
}
 |