diff --git a/plugins/spa/explorer_routes.go b/plugins/spa/explorer_routes.go
index 76ae367f451fa7398735cbb9318b65fa3b457f1b..7d324e149a7f274b5669c7496fa1dc97f6920178 100644
--- a/plugins/spa/explorer_routes.go
+++ b/plugins/spa/explorer_routes.go
@@ -23,8 +23,6 @@ type ExplorerTx struct {
 	Timestamp                uint   `json:"timestamp"`
 	Trunk                    Hash   `json:"trunk"`
 	Branch                   Hash   `json:"branch"`
-	Tag                      Trytes `json:"tag"`
-	Nonce                    Trytes `json:"nonce"`
 	Solid                    bool   `json:"solid"`
 	MWM                      int    `json:"mwm"`
 }
diff --git a/plugins/spa/frontend/src/app/stores/ExplorerStore.tsx b/plugins/spa/frontend/src/app/stores/ExplorerStore.tsx
index 0eb99585fc877fde540551bbfd826417e982d003..4cc4149a1ac07ae2b7bd55388ae6fd05ddf42320 100644
--- a/plugins/spa/frontend/src/app/stores/ExplorerStore.tsx
+++ b/plugins/spa/frontend/src/app/stores/ExplorerStore.tsx
@@ -12,9 +12,7 @@ export class Transaction {
     timestamp: number;
     trunk: string;
     branch: string;
-    tag: string;
     solid: boolean;
-    mwm: number;
 }
 
 class AddressResult {