mirror of https://github.com/certusone/wasmd.git
100 lines
2.1 KiB
Go
100 lines
2.1 KiB
Go
package testdata
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
typwasmvmtypes "github.com/CosmWasm/wasmvm/v3/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
const (
|
|
ChecksumHackatom = "3f4cd47c39c57fe1733fb41ed176eebd9d5c67baf5df8a1eeda1455e758f8514"
|
|
)
|
|
|
|
var (
|
|
//go:embed reflect_2_0.wasm
|
|
reflectContract []byte
|
|
//go:embed reflect_1_1.wasm
|
|
migrateReflectContract []byte
|
|
//go:embed cyberpunk.wasm
|
|
cyberpunkContract []byte
|
|
//go:embed ibc_reflect.wasm
|
|
ibcReflectContract []byte
|
|
//go:embed burner.wasm
|
|
burnerContract []byte
|
|
//go:embed hackatom.wasm
|
|
hackatomContract []byte
|
|
)
|
|
|
|
func ReflectContractWasm() []byte {
|
|
return reflectContract
|
|
}
|
|
|
|
func MigrateReflectContractWasm() []byte {
|
|
return migrateReflectContract
|
|
}
|
|
|
|
func CyberpunkContractWasm() []byte {
|
|
return cyberpunkContract
|
|
}
|
|
|
|
func IBCReflectContractWasm() []byte {
|
|
return ibcReflectContract
|
|
}
|
|
|
|
func BurnerContractWasm() []byte {
|
|
return burnerContract
|
|
}
|
|
|
|
func HackatomContractWasm() []byte {
|
|
return hackatomContract
|
|
}
|
|
|
|
// ReflectHandleMsg is used to encode handle messages
|
|
type ReflectHandleMsg struct {
|
|
Reflect *ReflectPayload `json:"reflect_msg,omitempty"`
|
|
ReflectSubMsg *ReflectSubPayload `json:"reflect_sub_msg,omitempty"`
|
|
ChangeOwner *OwnerPayload `json:"change_owner,omitempty"`
|
|
}
|
|
|
|
type OwnerPayload struct {
|
|
Owner types.Address `json:"owner"`
|
|
}
|
|
|
|
type ReflectPayload struct {
|
|
Msgs []typwasmvmtypes.CosmosMsg `json:"msgs"`
|
|
}
|
|
|
|
type ReflectSubPayload struct {
|
|
Msgs []typwasmvmtypes.SubMsg `json:"msgs"`
|
|
}
|
|
|
|
// ReflectQueryMsg is used to encode query messages
|
|
type ReflectQueryMsg struct {
|
|
Owner *struct{} `json:"owner,omitempty"`
|
|
Capitalized *Text `json:"capitalized,omitempty"`
|
|
Chain *ChainQuery `json:"chain,omitempty"`
|
|
SubMsgResult *SubCall `json:"sub_msg_result,omitempty"`
|
|
}
|
|
|
|
type ChainQuery struct {
|
|
Request *typwasmvmtypes.QueryRequest `json:"request,omitempty"`
|
|
}
|
|
|
|
type Text struct {
|
|
Text string `json:"text"`
|
|
}
|
|
|
|
type SubCall struct {
|
|
ID uint64 `json:"id"`
|
|
}
|
|
|
|
type OwnerResponse struct {
|
|
Owner string `json:"owner,omitempty"`
|
|
}
|
|
|
|
type ChainResponse struct {
|
|
Data []byte `json:"data,omitempty"`
|
|
}
|