1[package]2name = "pallet-evm-contract-helpers"3version = "0.1.0"4license = "GPLv3"5edition = "2021"67[dependencies]8scale-info = { version = "2.0.1", default-features = false, features = [9 "derive",10] }11frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }12frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }13sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }14sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }15sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }16evm-coder = { default-features = false, path = '../../crates/evm-coder' }17pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }18pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier.git", branch = "unique-polkadot-v0.9.18" }19up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/UniqueNetwork/pallet-sponsoring", branch = 'polkadot-v0.9.18' }20log = "0.4.14"2122[dependencies.codec]23default-features = false24features = ['derive']25package = 'parity-scale-codec'26version = '3.1.2'2728[features]29default = ["std"]30std = [31 "frame-support/std",32 "frame-system/std",33 "sp-runtime/std",34 "sp-std/std",35 "sp-core/std",36 "evm-coder/std",37 "pallet-evm-coder-substrate/std",38 "pallet-evm/std",39 "up-sponsorship/std",40]