mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
23 lines
639 B
Go
23 lines
639 B
Go
package rest
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
//"github.com/tendermint/go-crypto/keys"
|
|
//"github.com/cosmos/cosmos-sdk/client/context"
|
|
//"github.com/cosmos/cosmos-sdk/wire"
|
|
)
|
|
|
|
// RegisterRoutes registers paychan-related REST handlers to a router
|
|
func RegisterRoutes(ctx context.CoreContext, r *mux.Router, cdc *wire.Codec, kb keys.Keybase) {
|
|
//r.HandleFunc("/accounts/{address}/send", SendRequestHandlerFn(cdc, kb, ctx)).Methods("POST")
|
|
}
|
|
|
|
// handler functions ...
|
|
// create paychan
|
|
// close paychan
|
|
// get paychan(s)
|
|
// send paychan payment
|
|
// get balance from receiver
|
|
// get balance from local storage
|
|
// handle incoming payment
|