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

     1  transaction(addresses: [Address], path: StoragePath) {
     2  	prepare(signer: auth(Storage) &Account) {
     3  		signer.storage.load<[Address]>(from: path)
     4  		signer.storage.save(addresses, to: path)
     5  	}
     6  }