diff --git a/lib/go/templates/cmd/manifest/manifest.go b/lib/go/templates/cmd/manifest/manifest.go index 1bd5896e3..0d087a1c2 100644 --- a/lib/go/templates/cmd/manifest/manifest.go +++ b/lib/go/templates/cmd/manifest/manifest.go @@ -323,6 +323,12 @@ func generateManifest(env templates.Environment) *manifest { Label: "Node ID", SampleValues: []cadenceValue{sampleNodeID}, }, + { + Type: "String", + Name: "stakingKeyPoP", + Label: "Staking Key PoP", + SampleValues: []cadenceValue{sampleStakingKeyPoP}, + }, { Type: "UFix64", Name: "amount", diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index 4e552fa76..dadab5a0e 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -282,6 +282,17 @@ } ] }, + { + "type": "String", + "name": "stakingKeyPoP", + "label": "Staking Key PoP", + "sampleValues": [ + { + "type": "String", + "value": "828a68a2be392804044d85888100462702a422901da3269fb6512defabad07250aad24f232671e4ac8ae531f54e062fc" + } + ] + }, { "type": "UFix64", "name": "amount", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 9d8558bcf..3ac361bb2 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -282,6 +282,17 @@ } ] }, + { + "type": "String", + "name": "stakingKeyPoP", + "label": "Staking Key PoP", + "sampleValues": [ + { + "type": "String", + "value": "828a68a2be392804044d85888100462702a422901da3269fb6512defabad07250aad24f232671e4ac8ae531f54e062fc" + } + ] + }, { "type": "UFix64", "name": "amount",