1;; This module stores a KV pair into the storage2(module3 (import "seal0" "seal_set_storage" (func $seal_set_storage (param i32 i32 i32)))4 (import "env" "memory" (memory 16 16))56 (func (export "call")7 )8 (func (export "deploy")9 (call $seal_set_storage10 (i32.const 0) ;; Pointer to storage key11 (i32.const 0) ;; Pointer to value12 (i32.load (i32.const 0)) ;; Size of value13 )14 )15)difftreelog
source
pallets/contracts/fixtures/set_empty_storage.wat397 Bsourcehistory