diff --git a/pkg/smartcontract/contract_details.go b/pkg/smartcontract/contract_details.go
deleted file mode 100644
index 05132f0c8..000000000
--- a/pkg/smartcontract/contract_details.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package smartcontract
-
-// ContractDetails contains contract metadata.
-type ContractDetails struct {
-	Author               string
-	Email                string
-	Version              string
-	ProjectName          string `yaml:"name"`
-	Description          string
-	HasStorage           bool
-	HasDynamicInvocation bool
-	IsPayable            bool
-	ReturnType           ParamType
-	Parameters           []ParamType
-}