mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 02:48:03 +00:00
64effd0e6f
Small PR that introduce a new crate that will host RISC-V & wasm fixtures for testing pallet-contracts
7 lines
144 B
WebAssembly Text Format
7 lines
144 B
WebAssembly Text Format
;; A valid contract which does nothing at all
|
|
(module
|
|
(import "env" "memory" (memory 1 1))
|
|
(func (export "deploy"))
|
|
(func (export "call"))
|
|
)
|