github.com/koko1123/flow-go-1@v0.29.6/fvm/blueprints/scripts/setExecutionWeightsScript.cdc (about)

     1  transaction(newWeights: {UInt64: UInt64}, path: StoragePath) {
     2      prepare(signer: AuthAccount) {
     3          signer.load<{UInt64: UInt64}>(from: path)
     4          signer.save(newWeights, to: path)
     5      }
     6  }