github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/fvm/blueprints/scripts/deployNodeVersionBeaconTransactionTemplate.cdc (about)

     1  transaction(code: String, versionThreshold: UInt64) {
     2    prepare(serviceAccount: auth(AddContract) &Account) {
     3  	serviceAccount.contracts.add(name: "NodeVersionBeacon", code: code.decodeHex(), versionUpdateBuffer: versionThreshold)
     4    }
     5  }