cheatcodes_external.go 18.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533
package script

import (
	"bytes"
	"encoding/json"
	"errors"
	"fmt"
	"math/big"
	"strconv"
	"strings"
	"time"

	"github.com/BurntSushi/toml"
	"golang.org/x/exp/maps"

	"github.com/ethereum/go-ethereum/common"
	"github.com/ethereum/go-ethereum/common/hexutil"
	"github.com/ethereum/go-ethereum/core/vm"

	"github.com/ethereum-optimism/optimism/op-chain-ops/foundry"
)

// Ffi implements https://book.getfoundry.sh/cheatcodes/ffi
func (c *CheatCodesPrecompile) Ffi(args []string) ([]byte, error) {
	return nil, vm.ErrExecutionReverted
}

// Prompt implements https://book.getfoundry.sh/cheatcodes/prompt
func (c *CheatCodesPrecompile) Prompt() error {
	return vm.ErrExecutionReverted
}

// ProjectRoot implements https://book.getfoundry.sh/cheatcodes/project-root
func (c *CheatCodesPrecompile) ProjectRoot() string {
	return ""
}

func (c *CheatCodesPrecompile) getArtifact(input string) (*foundry.Artifact, error) {
	// fetching by relative file path, or using a contract version, is not supported
	parts := strings.SplitN(input, ":", 2)
	name := parts[0] + ".sol"
	contract := parts[0]
	if len(parts) == 2 {
		name = parts[0]
		contract = parts[1]
	}
	return c.h.af.ReadArtifact(name, contract)
}

// GetCode implements https://book.getfoundry.sh/cheatcodes/get-code
func (c *CheatCodesPrecompile) GetCode(input string) ([]byte, error) {
	artifact, err := c.getArtifact(input)
	if err != nil {
		return nil, err
	}
	return bytes.Clone(artifact.Bytecode.Object), nil
}

// GetDeployedCode implements https://book.getfoundry.sh/cheatcodes/get-deployed-code
func (c *CheatCodesPrecompile) GetDeployedCode(input string) ([]byte, error) {
	artifact, err := c.getArtifact(input)
	if err != nil {
		return nil, err
	}
	return bytes.Clone(artifact.DeployedBytecode.Object), nil
}

// Sleep implements https://book.getfoundry.sh/cheatcodes/sleep
func (c *CheatCodesPrecompile) Sleep(ms *big.Int) error {
	if !ms.IsUint64() {
		return vm.ErrExecutionReverted
	}
	time.Sleep(time.Duration(ms.Uint64()) * time.Millisecond)
	return nil
}

// UnixTime implements https://book.getfoundry.sh/cheatcodes/unix-time
func (c *CheatCodesPrecompile) UnixTime() (ms *big.Int) {
	return big.NewInt(time.Now().UnixMilli())
}

// SetEnv implements https://book.getfoundry.sh/cheatcodes/set-env
func (c *CheatCodesPrecompile) SetEnv(key string, value string) error {
	if key == "" {
		return errors.New("env key must not be empty")
	}
	if strings.ContainsRune(key, '=') {
		return errors.New("env key must not contain = sign")
	}
	if strings.ContainsRune(key, 0) {
		return errors.New("env key must not contain NUL")
	}
	if strings.ContainsRune(value, 0) {
		return errors.New("env value must not contain NUL")
	}
	c.h.SetEnvVar(key, value)
	return nil
}

// helper function for EnvOr, implements https://book.getfoundry.sh/cheatcodes/env-or
func envOrSingular[E any](key string,
	getFn func(key string) (string, bool),
	fn func(v string) (E, error),
	defaultValue E,
) (out E, err error) {
	envValue, ok := getFn(key)
	if !ok {
		return defaultValue, nil
	}
	v, err := fn(envValue)
	if err != nil {
		return out, fmt.Errorf("failed to parse env var %q: %w", key, err)
	}
	return v, nil
}

// helper function for EnvOr, implements https://book.getfoundry.sh/cheatcodes/env-or
func envOrList[E any](key string,
	getFn func(key string) (string, bool),
	delimiter string, fn func(v string) (E, error),
	defaultValues []E,
) ([]E, error) {
	envValue, ok := getFn(key)
	if !ok {
		return defaultValues, nil
	}
	parts := strings.Split(envValue, delimiter)
	out := make([]E, len(parts))
	for i, p := range parts {
		v, err := fn(p)
		if err != nil {
			return nil, fmt.Errorf("failed to parse entry %d of envVar %q: %w", i, key, err)
		}
		out[i] = v
	}
	return out, nil
}

func (c *CheatCodesPrecompile) EnvOr_4777f3cf(key string, defaultValue bool) (bool, error) {
	return envOrSingular[bool](key, c.h.GetEnvVar, c.ParseBool, defaultValue)
}
func (c *CheatCodesPrecompile) EnvOr_5e97348f(key string, defaultValue *big.Int) (*big.Int, error) {
	return envOrSingular[*big.Int](key, c.h.GetEnvVar, c.ParseUint, defaultValue)
}
func (c *CheatCodesPrecompile) EnvOr_bbcb713e(key string, defaultValue *ABIInt256) (*ABIInt256, error) {
	return envOrSingular[*ABIInt256](key, c.h.GetEnvVar, c.ParseInt, defaultValue)
}
func (c *CheatCodesPrecompile) EnvOr_561fe540(key string, defaultValue common.Address) (common.Address, error) {
	return envOrSingular[common.Address](key, c.h.GetEnvVar, c.ParseAddress, defaultValue)
}
func (c *CheatCodesPrecompile) EnvOr_b4a85892(key string, defaultValue [32]byte) ([32]byte, error) {
	return envOrSingular[[32]byte](key, c.h.GetEnvVar, c.ParseBytes32, defaultValue)
}
func (c *CheatCodesPrecompile) EnvOr_d145736c(key string, defaultValue string) (string, error) {
	return envOrSingular[string](key, c.h.GetEnvVar, func(v string) (string, error) {
		return v, nil
	}, defaultValue)
}
func (c *CheatCodesPrecompile) EnvOr_b3e47705(key string, defaultValue []byte) ([]byte, error) {
	return envOrSingular[[]byte](key, c.h.GetEnvVar, c.ParseBytes, defaultValue)
}

func (c *CheatCodesPrecompile) EnvOr_eb85e83b(key string, delimiter string, defaultValue []bool) ([]bool, error) {
	return envOrList[bool](key, c.h.GetEnvVar, delimiter, c.ParseBool, defaultValue)
}
func (c *CheatCodesPrecompile) EnvOr_74318528(key string, delimiter string, defaultValue []*big.Int) ([]*big.Int, error) {
	return envOrList[*big.Int](key, c.h.GetEnvVar, delimiter, c.ParseUint, defaultValue)
}
func (c *CheatCodesPrecompile) EnvOr_4700d74b(key string, delimiter string, defaultValue []*ABIInt256) ([]*ABIInt256, error) {
	return envOrList[*ABIInt256](key, c.h.GetEnvVar, delimiter, c.ParseInt, defaultValue)
}
func (c *CheatCodesPrecompile) EnvOr_c74e9deb(key string, delimiter string, defaultValue []common.Address) ([]common.Address, error) {
	return envOrList[common.Address](key, c.h.GetEnvVar, delimiter, c.ParseAddress, defaultValue)
}
func (c *CheatCodesPrecompile) EnvOr_2281f367(key string, delimiter string, defaultValue [][32]byte) ([][32]byte, error) {
	return envOrList[[32]byte](key, c.h.GetEnvVar, delimiter, c.ParseBytes32, defaultValue)
}
func (c *CheatCodesPrecompile) EnvOr_859216bc(key string, delimiter string, defaultValue []string) ([]string, error) {
	return envOrList[string](key, c.h.GetEnvVar, delimiter, func(v string) (string, error) {
		return v, nil
	}, defaultValue)
}
func (c *CheatCodesPrecompile) EnvOr_64bc3e64(key string, delimiter string, defaultValue [][]byte) ([][]byte, error) {
	return envOrList[[]byte](key, c.h.GetEnvVar, delimiter, c.ParseBytes, defaultValue)
}

func envSingular[E any](key string,
	getFn func(key string) (string, bool),
	fn func(v string) (E, error),
) (out E, err error) {
	envValue, ok := getFn(key)
	if !ok {
		return out, fmt.Errorf("environment variable %q not found", key)
	}
	v, err := fn(envValue)
	if err != nil {
		return out, fmt.Errorf("failed to parse env var %q: %w", key, err)
	}
	return v, nil
}

func envList[E any](key string,
	getFn func(key string) (string, bool),
	delimiter string, fn func(v string) (E, error),
) ([]E, error) {
	envValue, ok := getFn(key)
	if !ok {
		return nil, fmt.Errorf("environment variable %q not found", key)
	}
	parts := strings.Split(envValue, delimiter)
	out := make([]E, len(parts))
	for i, p := range parts {
		v, err := fn(p)
		if err != nil {
			return nil, fmt.Errorf("failed to parse entry %d of envVar %q: %w", i, key, err)
		}
		out[i] = v
	}
	return out, nil
}

// EnvBool implements https://book.getfoundry.sh/cheatcodes/env-bool
func (c *CheatCodesPrecompile) EnvBool_7ed1ec7d(key string) (bool, error) {
	return envSingular[bool](key, c.h.GetEnvVar, c.ParseBool)
}

func (c *CheatCodesPrecompile) EnvBool_aaaddeaf(key string, delimiter string) ([]bool, error) {
	return envList[bool](key, c.h.GetEnvVar, delimiter, c.ParseBool)
}

// EnvUint implements https://book.getfoundry.sh/cheatcodes/env-uint
func (c *CheatCodesPrecompile) EnvUint_c1978d1f(key string) (*big.Int, error) {
	return envSingular[*big.Int](key, c.h.GetEnvVar, c.ParseUint)
}

func (c *CheatCodesPrecompile) EnvUint_f3dec099(key string, delimiter string) ([]*big.Int, error) {
	return envList[*big.Int](key, c.h.GetEnvVar, delimiter, c.ParseUint)
}

// EnvInt implements https://book.getfoundry.sh/cheatcodes/env-int
func (c *CheatCodesPrecompile) EnvInt_892a0c61(key string) (*ABIInt256, error) {
	return envSingular[*ABIInt256](key, c.h.GetEnvVar, c.ParseInt)
}

func (c *CheatCodesPrecompile) EnvInt_42181150(key string, delimiter string) ([]*ABIInt256, error) {
	return envList[*ABIInt256](key, c.h.GetEnvVar, delimiter, c.ParseInt)
}

// EnvAddress implements https://book.getfoundry.sh/cheatcodes/env-address
func (c *CheatCodesPrecompile) EnvAddress_350d56bf(key string) (common.Address, error) {
	return envSingular[common.Address](key, c.h.GetEnvVar, c.ParseAddress)
}

func (c *CheatCodesPrecompile) EnvAddress_ad31b9fa(key string, delimiter string) ([]common.Address, error) {
	return envList[common.Address](key, c.h.GetEnvVar, delimiter, c.ParseAddress)
}

// EnvBytes32 implements https://book.getfoundry.sh/cheatcodes/env-bytes32
func (c *CheatCodesPrecompile) EnvBytes32_97949042(key string) ([32]byte, error) {
	return envSingular[[32]byte](key, c.h.GetEnvVar, c.ParseBytes32)
}

func (c *CheatCodesPrecompile) EnvBytes32_5af231c1(key string, delimiter string) ([][32]byte, error) {
	return envList[[32]byte](key, c.h.GetEnvVar, delimiter, c.ParseBytes32)
}

// EnvString implements https://book.getfoundry.sh/cheatcodes/env-string
func (c *CheatCodesPrecompile) EnvString_f877cb19(key string) (string, error) {
	return envSingular[string](key, c.h.GetEnvVar, func(v string) (string, error) {
		return v, nil
	})
}

func (c *CheatCodesPrecompile) EnvString_14b02bc9(key string, delimiter string) ([]string, error) {
	return envList[string](key, c.h.GetEnvVar, delimiter, func(v string) (string, error) {
		return v, nil
	})
}

// EnvBytes implements https://book.getfoundry.sh/cheatcodes/env-bytes
func (c *CheatCodesPrecompile) EnvBytes_4d7baf06(key string) ([]byte, error) {
	return envSingular[[]byte](key, c.h.GetEnvVar, c.ParseBytes)
}

func (c *CheatCodesPrecompile) EnvBytes_ddc2651b(key string, delimiter string) ([][]byte, error) {
	return envList[[]byte](key, c.h.GetEnvVar, delimiter, c.ParseBytes)
}

// KeyExists implements https://book.getfoundry.sh/cheatcodes/key-exists
func (c *CheatCodesPrecompile) KeyExists(jsonData string, key string) (bool, error) {
	return c.KeyExistsJson(jsonData, key)

}

// KeyExistsJson implements https://book.getfoundry.sh/cheatcodes/key-exists-json
func (c *CheatCodesPrecompile) KeyExistsJson(data string, key string) (bool, error) {
	var x map[string]json.RawMessage
	if err := json.Unmarshal([]byte(data), &x); err != nil {
		return false, err
	}
	_, ok := x[key]
	return ok, nil
}

// KeyExistsToml implements https://book.getfoundry.sh/cheatcodes/key-exists-toml
func (c *CheatCodesPrecompile) KeyExistsToml(data string, key string) (bool, error) {
	var x map[string]any
	if err := toml.Unmarshal([]byte(data), &x); err != nil {
		return false, err
	}
	_, ok := x[key]
	return ok, nil
}

// ParseJSON implements https://book.getfoundry.sh/cheatcodes/parse-json
func (c *CheatCodesPrecompile) ParseJson_85940ef1(data string, key string) {
	panic("parseJson(string,string) is not supported") // inferring an ABI type dynamically from sorted JSON content, this is mad.
}

func (c *CheatCodesPrecompile) ParseJson_6a82600a(data string) {
	panic("parseJson(string) is not supported")
}

// ParseToml implements https://book.getfoundry.sh/cheatcodes/parse-toml
func (c *CheatCodesPrecompile) ParseToml_37736e08(data string, key string) {
	panic("parseToml(string,string) is not supported")
}

func (c *CheatCodesPrecompile) ParseToml_592151f0(data string) {
	panic("parseToml(string) is not supported")
}

// See https://github.com/foundry-rs/foundry/issues/8672
// Forge uses dots and `[%d]` mixed together for JSON paths.
// It's like jq, but does not match foundry docs, and hard to parse.
func takePath(query string) (trailing string, stringKey string, index uint64, err error) {
	if query == "" {
		return "", "", 0, errors.New("empty keys are not supported")
	}
	dotIndex := strings.Index(query, ".")
	openBracketIndex := strings.Index(query, "[")
	if dotIndex < 0 || (openBracketIndex >= 0 && openBracketIndex < dotIndex) {
		if openBracketIndex < 0 {
			return "", query, 0, nil
		} else if openBracketIndex == 0 {
			closingBracketIndex := strings.Index(query, "]")
			if closingBracketIndex <= openBracketIndex {
				return "", "", 0, fmt.Errorf("invalid query: %q", query)
			}
			index, err := strconv.ParseUint(query[1:closingBracketIndex], 10, 64)
			if err != nil {
				return "", "", 0, fmt.Errorf("invalid index in query: %w", err)
			}
			return query[closingBracketIndex+1:], "", index, nil
		} else {
			return query[openBracketIndex:], query[:openBracketIndex], 0, nil
		}
	} else {
		return query[dotIndex+1:], query[:dotIndex], 0, nil
	}
}

func lookupKeys(v any, query string) ([]string, error) {
	if query == "$" || query == "" {
		switch x := v.(type) {
		case map[string]any:
			return maps.Keys(x), nil
		default:
			return nil, fmt.Errorf("JSON value (Type %T) is not an object", x)
		}
	}
	trailing, stringKey, index, err := takePath(query)
	if err != nil {
		return nil, err
	}
	switch x := v.(type) {
	case []any:
		if stringKey != "" {
			return nil, fmt.Errorf("expected array index, but got string key in path: %q", stringKey)
		}
		if index >= uint64(len(x)) {
			return nil, fmt.Errorf("index %d larger than length %d", index, len(x))
		}
		return lookupKeys(x[index], trailing)
	case map[string]any:
		if stringKey == "" {
			return nil, fmt.Errorf("expected string key, but got index in path: %q", index)
		}
		if stringKey == "$" {
			if trailing != "" {
				return nil, errors.New("cannot continue query after $ sign")
			}
			return maps.Keys(x), nil
		}
		data, ok := x[stringKey]
		if !ok {
			return nil, fmt.Errorf("unknown key %q", stringKey)
		}
		return lookupKeys(data, trailing)
	default:
		return nil, fmt.Errorf("cannot read keys of value of type %T", x)
	}
}

// ParseJsonKeys implements https://book.getfoundry.sh/cheatcodes/parse-json-keys
func (c *CheatCodesPrecompile) ParseJsonKeys(data string, key string) ([]string, error) {
	var x map[string]any
	if err := json.Unmarshal([]byte(data), &x); err != nil {
		return nil, err
	}
	if key != "$" {
		if !strings.HasPrefix(key, ".") {
			return nil, fmt.Errorf("key %q is invalid. A key must be \"$\" or start with \".\"", key)
		}
		key = strings.TrimPrefix(key, ".")
	}
	return lookupKeys(x, key)
}

// ParseTomlKeys implements https://book.getfoundry.sh/cheatcodes/parse-toml-keys
func (c *CheatCodesPrecompile) ParseTomlKeys(data string, key string) ([]string, error) {
	var x map[string]any
	if err := toml.Unmarshal([]byte(data), &x); err != nil {
		return nil, err
	}
	return lookupKeys(x, key)
}

// SerializeJson implements https://book.getfoundry.sh/cheatcodes/serialize-json
func (c *CheatCodesPrecompile) SerializeJson(objectKey string, value string) (string, error) {
	var x json.RawMessage
	if err := json.Unmarshal([]byte(value), &x); err != nil {
		return "", fmt.Errorf("invalid JSON value: %w", err)
	}
	c.h.serializerStates[objectKey] = x
	return string(x), nil
}

func (c *CheatCodesPrecompile) serializeJsonValue(objectKey string, valueKey string, value any) (string, error) {
	st, ok := c.h.serializerStates[objectKey]
	if !ok {
		st = json.RawMessage("{}")
	}
	var x map[string]json.RawMessage
	if err := json.Unmarshal(st, &x); err != nil {
		return "", fmt.Errorf("failed to decode existing JSON serializer state of %q: %w", objectKey, err)
	}
	v, err := json.Marshal(value)
	if err != nil {
		return "", fmt.Errorf("failed to encode value: %w", err)
	}
	x[valueKey] = v
	out, err := json.Marshal(x)
	if err != nil {
		return "", fmt.Errorf("failed to encode updated JSON serializer state of %q: %w", objectKey, err)
	}
	c.h.serializerStates[objectKey] = out
	return string(out), nil
}

func (c *CheatCodesPrecompile) SerializeBool_ac22e971(objectKey string, valueKey string, value bool) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, value)
}

func (c *CheatCodesPrecompile) SerializeUint_129e9002(objectKey string, valueKey string, value *big.Int) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, value)
}

func (c *CheatCodesPrecompile) SerializeInt_3f33db60(objectKey string, valueKey string, value *ABIInt256) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, value)
}

func (c *CheatCodesPrecompile) SerializeAddress_972c6062(objectKey string, valueKey string, value common.Address) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, value)
}

func (c *CheatCodesPrecompile) SerializeBytes32_2d812b44(objectKey string, valueKey string, value common.Hash) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, value)
}

func (c *CheatCodesPrecompile) SerializeString_88da6d35(objectKey string, valueKey string, value string) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, value)
}

func (c *CheatCodesPrecompile) SerializeBytes_f21d52c7(objectKey string, valueKey string, value hexutil.Bytes) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, value)
}

func (c *CheatCodesPrecompile) SerializeBool_92925aa1(objectKey string, valueKey string, values []bool) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, values)
}

func (c *CheatCodesPrecompile) SerializeUint_fee9a469(objectKey string, valueKey string, values []*big.Int) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, values)
}

func (c *CheatCodesPrecompile) SerializeInt_7676e127(objectKey string, valueKey string, values []*ABIInt256) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, values)
}

func (c *CheatCodesPrecompile) SerializeAddress_1e356e1a(objectKey string, valueKey string, values []common.Address) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, values)
}

func (c *CheatCodesPrecompile) SerializeBytes32_201e43e2(objectKey string, valueKey string, values []common.Hash) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, values)
}

func (c *CheatCodesPrecompile) SerializeString_561cd6f3(objectKey string, valueKey string, values []string) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, values)
}

func (c *CheatCodesPrecompile) SerializeBytes_9884b232(objectKey string, valueKey string, values []hexutil.Bytes) (string, error) {
	return c.serializeJsonValue(objectKey, valueKey, values)
}

// WriteJson implements https://book.getfoundry.sh/cheatcodes/write-json
func (c *CheatCodesPrecompile) WriteJson_e23cd19f(data string, path string) error {
	return vm.ErrExecutionReverted
}

func (c *CheatCodesPrecompile) WriteJson_35d6ad46(data string, path string, valueKey string) error {
	return vm.ErrExecutionReverted
}

// WriteToml implements https://book.getfoundry.sh/cheatcodes/write-toml
func (c *CheatCodesPrecompile) WriteToml_c0865ba7(data string, path string) error {
	return vm.ErrExecutionReverted
}

func (c *CheatCodesPrecompile) WriteToml_51ac6a33(data string, path string, valueKey string) error {
	return vm.ErrExecutionReverted
}